/* Equanimity — STYLE_GUIDE.md is canonical */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@400;500;600&display=swap');

:root {
  /* CI — letterhead + logo */
  --navy: #233981;
  --gold: #C69F73;
  --black: #111111;
  --white: #FFFFFF;
  --off-white: #F7F7F5;
  --parchment: #F4EFE6;
  /* Soft text darkened vs letterhead #878787 for WCAG-friendly body/nav */
  --muted: #45476A;
  --muted-light: #5A5A5A;
  --rule: rgba(198, 159, 115, 0.45);

  --bg: var(--white);
  --ink: var(--black);
  --ink-soft: var(--muted);
  --ink-muted: var(--muted-light);

  --sans: "Montserrat", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --max: 72rem;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
a, p, li, td, th { overflow-wrap: anywhere; word-wrap: break-word; }
html { scroll-behavior: smooth; font-size: 17.5px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Optional heritage wash — very subtle, does not override white CI */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.94) 100%),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Albrecht_Altdorfer_016.jpg/1280px-Albrecht_Altdorfer_016.jpg") center 20% / cover no-repeat;
  opacity: 0.35;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold); }

.small-caps {
  font-variant: small-caps;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* Header — letterhead; gold rule + waves-only mark when scrolled (clip ~34px @ 30px height) */
.top {
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 40;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.top.is-scrolled {
  border-bottom-color: var(--gold);
  box-shadow: 0 1px 0 rgba(198, 159, 115, 0.25);
}
.top-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 0; gap: 1rem; flex-wrap: wrap;
  transition: padding 0.35s ease;
}
.top.is-scrolled .top-inner { padding: 0.55rem 0; }

.logo-mark {
  display: flex; align-items: center; text-decoration: none; line-height: 0;
  max-width: 148px; overflow: hidden;
  transition: max-width 0.4s ease;
}
.top.is-scrolled .logo-mark { max-width: 34px; }

.logo-svg {
  display: block; height: 42px; width: auto; overflow: visible; flex-shrink: 0;
  transition: height 0.35s ease;
}
.top.is-scrolled .logo-svg { height: 30px; }

.logo-wordmark {
  transition: opacity 0.3s ease;
}
.top.is-scrolled .logo-wordmark { opacity: 0; visibility: hidden; }

nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
nav a:hover, nav a.nav-active { color: var(--navy); }
nav a.nav-active { box-shadow: inset 0 -2px 0 var(--gold); }

/* Hero */
.hero {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  display: grid; gap: 2.5rem;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 900px) { .hero { grid-template-columns: 1.15fr 0.85fr; align-items: end; } }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0.5rem 0 1.25rem;
  color: var(--navy);
}
.hero h1 i { font-style: italic; color: var(--gold); }

.hero-lead { font-size: 1.05rem; color: var(--ink-soft); max-width: 34rem; margin: 0 0 1.5rem; }

.hero-aside {
  border: 1px solid var(--gold);
  background: var(--white);
  padding: 1.5rem 1.75rem;
}
.hero-aside p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }
.hero-aside .realm-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--rule);
}
.hero-aside .realm h3 {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; margin: 0 0 0.35rem; color: var(--gold);
}
.hero-aside .realm p { font-size: 0.85rem; margin: 0; color: var(--navy); }

.manifesto {
  margin: 2rem 0 0; padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-style: italic; font-size: 1.15rem; color: var(--ink-soft);
}

section { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
section h2 {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 500; margin: 0.35rem 0 1.5rem; color: var(--navy);
}

.lanes { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .lanes { grid-template-columns: repeat(3, 1fr); } }
.lane { padding-top: 0.75rem; border-top: 2px solid var(--gold); }
.lane-num { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.lane h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; margin: 0.5rem 0 0.65rem; color: var(--navy); }
.lane p, .lane li { font-size: 0.92rem; color: var(--ink-soft); }
.lane ul { margin: 0.5rem 0 0; padding-left: 1.1rem; }

.ledger {
  display: grid; gap: 2rem;
  border: 1px solid var(--gold);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--off-white);
}
@media (min-width: 768px) { .ledger { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.ledger h3 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; margin: 0 0 1rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rule);
}
.ledger-yes h3 { color: var(--navy); }
.ledger-no h3 { color: var(--ink-muted); }
.ledger li { margin-bottom: 0.55rem; color: var(--ink-soft); font-size: 0.92rem; }
.ledger ul { margin: 0; padding-left: 1.15rem; }

.team-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border: 1px solid var(--gold);
  background: var(--off-white);
}
.team-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin: 1rem 0 0.25rem; color: var(--navy); }
.team-card .role { font-style: italic; color: var(--gold); margin: 0 0 0.35rem; font-size: 0.9rem; }
.team-card .realm { font-size: 0.8rem; color: var(--ink-muted); }
.team-intro { max-width: 38rem; font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 2rem; font-family: var(--serif); }

.duo { display: grid; border: 1px solid var(--gold); }
@media (min-width: 640px) { .duo { grid-template-columns: 1fr 1fr; } }
.duo-cell { padding: 1.75rem 2rem; background: var(--white); }
.duo-cell + .duo-cell { border-top: 1px solid var(--rule); }
@media (min-width: 640px) { .duo-cell + .duo-cell { border-top: none; border-left: 1px solid var(--rule); } }
.duo-cell h3 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin: 0 0 0.75rem; }
.duo-cell p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.65; }

.blog-item {
  display: grid; grid-template-columns: 7rem 1fr 3rem; gap: 1rem;
  align-items: baseline; padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule); text-decoration: none; color: inherit;
}
.blog-item:hover .blog-title { color: var(--navy); }
.blog-tag { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.blog-title { font-size: 1rem; color: var(--ink); }
.blog-year { font-size: 0.8rem; color: var(--ink-muted); text-align: right; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.filter-bar button {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 0.85rem; border: 1px solid var(--rule);
  background: var(--white); color: var(--ink-soft); cursor: pointer;
}
.filter-bar button.active { border-color: var(--navy); color: var(--navy); }

.btn {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 1.5rem; border: 1px solid var(--navy);
  background: var(--navy); color: var(--white); text-decoration: none;
}
.btn:hover { background: #2d4a9e; border-color: #2d4a9e; color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); margin-left: 0.75rem; }
.btn-outline:hover { background: var(--off-white); color: var(--navy); }
.cta-row { margin-top: 1.75rem; }

/* Contact sidebar style — letterhead gold block */
.contact-gold {
  text-align: right; color: var(--gold); font-size: 0.85rem; line-height: 1.7;
}

footer {
  padding: 2.5rem 0 3rem; font-size: 0.85rem; color: var(--ink-muted); line-height: 1.75;
}
footer a { color: var(--ink-soft); }


.redesign-preview-banner {
  position: sticky; top: 0; z-index: 200;
  width: 100%; box-sizing: border-box;
  padding: 0.65rem 1rem; text-align: center;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: #c45c26; color: #fff;
  border-bottom: 3px solid #1a2744;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.prototype-badge {
  position: fixed; bottom: 1rem; right: 1rem; z-index: 100;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 0.65rem; background: var(--navy); color: var(--white);
}

/* Articles */
.article { padding: 2.5rem 0 4rem; max-width: 42rem; }
.article-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 500; line-height: 1.15; margin: 0.5rem 0 0.75rem; color: var(--navy); }
.article-meta { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gold); }
.article-body { color: var(--ink); font-size: 1.02rem; line-height: 1.75; }
.article-body h2, .article-body h3, .article-body h4 { font-family: var(--serif); color: var(--navy); font-weight: 600; margin: 2rem 0 0.75rem; }
.article-body p { margin: 0 0 1.15rem; }
.article-figure { margin: 1.5rem 0; }
.article-figure img { max-width: 100%; border: 1px solid var(--gold); }

.article-body a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; overflow-wrap: anywhere; word-break: break-word; }
.article-body a:hover { color: var(--gold); }
.article-body ul, .article-body ol { margin: 0 0 1.15rem 1.25rem; }
.article-body li { margin-bottom: 0.45rem; }
.lane-detail { margin-top: 0.75rem; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.5; }
.mandate-grid { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
@media (min-width: 720px) { .mandate-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mandate-grid { grid-template-columns: 1fr 1fr 1fr; } }
.mandate-card { border-top: 2px solid var(--gold); padding-top: 1rem; }
.mandate-card h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); margin: 0 0 0.5rem; font-weight: 600; }
.mandate-card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }

.article-cta { margin-top: 2rem; padding: 1.25rem 0 0; border-top: 1px solid var(--rule); color: var(--ink-soft); font-size: 0.92rem; }
.article-cta a { color: var(--navy); }
.article-back { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); }

.writing-teasers { list-style: none; padding: 0; margin: 1rem 0 1.25rem; }
.writing-teasers li { margin-bottom: 0.65rem; padding-left: 1rem; border-left: 2px solid var(--gold); }
.writing-teasers a { color: var(--navy); text-decoration: none; font-family: var(--serif); font-size: 1.05rem; }
.writing-teasers a:hover { color: var(--gold); text-decoration: underline; }

.mandate-card p { line-height: 1.55; margin-bottom: 0.65rem; }
.mandate-link { margin-top: 0.75rem !important; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.mandate-link a { color: var(--gold); text-decoration: none; }
.mandate-link a:hover { text-decoration: underline; }

.article-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.88rem; }
.article-table th, .article-table td { border: 1px solid var(--rule); padding: 0.5rem 0.65rem; text-align: left; vertical-align: top; }
.article-table th { background: var(--parchment); color: var(--navy); font-weight: 600; }

.article-pull { margin: 2rem 0; padding: 1rem 0 1rem 1.25rem; border-left: 3px solid var(--gold); font-family: var(--serif); font-size: 1.15rem; color: var(--navy); line-height: 1.45; }



/* Lifecycle + issuance stack (markets-first reframe) */
.lifecycle { padding-top: clamp(2rem, 4vw, 2.75rem); }
.lifecycle-intro {
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: -0.5rem 0 1.75rem;
}
.lifecycle-steps {
  display: grid;
  gap: 0;
  border: 1px solid var(--gold);
  background: var(--white);
  margin-bottom: 2rem;
}
@media (min-width: 800px) {
  .lifecycle-steps { grid-template-columns: repeat(5, 1fr); }
}
.lifecycle-step {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
@media (min-width: 800px) {
  .lifecycle-step {
    border-bottom: none;
    border-right: 1px solid var(--rule);
  }
  .lifecycle-step:last-child { border-right: none; }
}
.lifecycle-step:last-child { border-bottom: none; }
.lifecycle-step .step-num {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.lifecycle-step h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.4rem;
}
.lifecycle-step p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.stack {
  display: grid;
  gap: 0;
  border: 1px solid var(--gold);
  background: var(--off-white);
}
.stack-layer {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}
.stack-layer:last-child { border-bottom: none; }
.stack-layer .stack-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.35rem;
}
.stack-layer h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.4rem;
}
.stack-layer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.stack-layer.stack-rails {
  background: var(--off-white);
}

.lang-switch {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.4rem;
  margin-left: auto;
  align-items: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  gap: 0.15rem;
}
.top .lang-switch a,
.lang-switch a {
  color: var(--ink-muted);
  text-decoration: none !important;
  box-shadow: none !important;
  padding: 0.55rem 0.65rem;
  border: 1px solid transparent;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  font-weight: 500;
}
.lang-switch a:hover { color: var(--navy); }
.lang-switch a.active {
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 600;
}
.top-inner { flex-wrap: wrap; }
.top-inner nav { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem; }
.i18n-notice { background: var(--parchment); border-left: 3px solid var(--gold); padding: 0.75rem 1rem; margin-bottom: 1.25rem; color: var(--ink-soft); }

/* lang-switch hardened */
.top-inner nav + .lang-switch { margin-left: auto; flex-shrink: 0; }
.top-inner nav { flex: 1 1 auto; justify-content: flex-end; }

/* —— Mobile polish (readable type, wrap header, no crush) —— */
@media (max-width: 767px) {
  html { font-size: 18px; }
  body { line-height: 1.75; }

  :root {
    --muted: #3A3C55;
    --muted-light: #4A4A4A;
    --ink-soft: var(--muted);
    --ink-muted: var(--muted-light);
  }

  .wrap { padding: 0 1.15rem; }

  /* Header: logo + lang on first row; nav wraps cleanly below */
  .top-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.65rem 0.75rem;
    padding: 0.85rem 0;
  }
  .top.is-scrolled .top-inner { padding: 0.5rem 0; }
  .top-inner .logo-mark { grid-column: 1; grid-row: 1; }
  .top-inner .lang-switch {
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
    justify-self: end;
  }
  .top-inner nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex: none;
    width: 100%;
    justify-content: flex-start;
    gap: 0.15rem 0.15rem;
    row-gap: 0.15rem;
  }
  .top-inner nav + .lang-switch { margin-left: 0; }

  nav a {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--ink-soft);
    padding: 0.55rem 0.5rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  nav a.nav-active { box-shadow: inset 0 -2px 0 var(--gold); }

  .lang-switch {
    font-size: 0.78rem;
    gap: 0.1rem;
  }
  .lang-switch a {
    color: var(--ink-soft);
    min-height: 44px;
    min-width: 44px;
    padding: 0.5rem 0.55rem;
  }
  .lang-switch a.active {
    color: var(--navy);
    border-color: var(--gold);
    background: rgba(198, 159, 115, 0.12);
  }

  .hero { padding: 2.25rem 0 2rem; gap: 1.75rem; }
  .hero h1 { font-size: clamp(1.85rem, 8.5vw, 2.4rem); line-height: 1.15; }
  .hero-lead { font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); }
  .manifesto { font-size: 1.1rem; line-height: 1.55; }
  .hero-aside { padding: 1.25rem 1.15rem; }
  .hero-aside .realm-row { grid-template-columns: 1fr; gap: 1.1rem; }
  .hero-aside .realm h3 { font-size: 0.72rem; }
  .hero-aside .realm p { font-size: 0.92rem; }

  .cta-row { display: flex; flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .btn, .btn-outline {
    margin-left: 0 !important;
    text-align: center;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    width: 100%;
    box-sizing: border-box;
  }

  section h2 { font-size: clamp(1.55rem, 6vw, 1.9rem); }

  .lifecycle-intro { font-size: 1rem; line-height: 1.7; }
  .lifecycle-step { padding: 1.1rem 1.1rem; }
  .lifecycle-step .step-num,
  .stack-layer .stack-label { font-size: 0.7rem; }
  .lifecycle-step h3 { font-size: 1.15rem; }
  .lifecycle-step p { font-size: 0.95rem; line-height: 1.6; color: var(--ink-soft); }
  .stack-layer { padding: 1.15rem 1.15rem; }
  .stack-layer h3 { font-size: 1.15rem; }
  .stack-layer p { font-size: 0.98rem; }

  .lane-num, .duo-cell h3, .ledger h3 { font-size: 0.75rem; }
  .lane p, .lane li, .ledger li, .duo-cell p { font-size: 0.98rem; line-height: 1.7; }
  .lane-detail { font-size: 0.95rem; line-height: 1.6; }

  .team-grid { grid-template-columns: 1fr; max-width: 22rem; margin: 0 auto; }
  .team-card .realm { font-size: 0.88rem; color: var(--ink-soft); }
  .team-intro { font-size: 1.08rem; }

  .blog-item {
    grid-template-columns: 1fr auto;
    gap: 0.35rem 0.75rem;
    padding: 1rem 0;
    align-items: start;
  }
  .blog-tag { grid-column: 1; font-size: 0.72rem; }
  .blog-year { grid-column: 2; grid-row: 1; font-size: 0.88rem; color: var(--ink-soft); }
  .blog-title {
    grid-column: 1 / -1;
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--ink);
  }

  .filter-bar button {
    font-size: 0.72rem;
    min-height: 44px;
    padding: 0.55rem 0.95rem;
    color: var(--ink-soft);
  }
  .filter-bar button.active { color: var(--navy); font-weight: 600; }

  .article { padding: 2rem 0 3.5rem; }
  .article-title { font-size: clamp(1.75rem, 7vw, 2.2rem); }
  .article-meta { font-size: 0.75rem; letter-spacing: 0.1em; }
  .article-body { font-size: 1.05rem; line-height: 1.8; color: var(--ink); }
  .article-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: 0.9rem; }
  .article-pull { font-size: 1.15rem; }

  .mandate-card p { font-size: 0.98rem; }
  .contact-gold { text-align: left; font-size: 0.95rem; }
  footer { font-size: 0.9rem; }

  /* Kill accidental horizontal overflow */
  img, video { max-width: 100%; height: auto; }
  .article-body img, .article-figure img { max-width: 100%; height: auto; }
  .logo-svg { height: 38px; width: auto; max-width: none; }
  .top.is-scrolled .logo-svg { height: 28px; }
}


