  :root {
    --ink: #181818;
    --paper: #f4f1ec;
    --crimson: #8b2a2a;
    --gray-50: #e9e6e0;
    --gray-100: #d8d3ca;
    --gray-200: #bdb6aa;
    --gray-300: #9b9387;
    --gray-400: #6e685e;
    --canvas: #ece8e1;
    --line: #1818181f;
  }

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

  /* Honor the intrinsic aspect-ratio from the width/height HTML attrs
     instead of letting the height attribute lock to literal pixels. */
  img { height: auto; max-width: 100%; }

  /* Primary CTA button — explicit base + visited so the link stays
     visible both before and after click. */
  a.btn-primary,
  a.btn-primary:visited,
  a.btn-primary:hover {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
    color: var(--paper); background: var(--crimson);
    text-decoration: none; padding: 14px 32px;
    display: inline-block; transition: background .2s;
  }
  a.btn-primary:hover { background: #6e2020; }

  html, body {
    margin: 0; padding: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  }

  /* Cap the layout on ultra-wide screens so content never sprawls. */
  body { max-width: 1800px; margin-inline: auto; }

  /* Typography polish: balanced headlines (no orphan words),
     prettier paragraph wrapping. */
  h1, h2, h3, .rand-bigtype, .page-h1 { text-wrap: balance; }
  p, .body, .page-body { text-wrap: pretty; }

  /* Brand-tinted text selection. */
  ::selection { background: var(--crimson); color: var(--paper); }

  /* View Transitions — cross-page morph for the wordmark and crest.
     Browser ignores the rules without support; no fallback needed. */
  @view-transition { navigation: auto; }
  .wm           { view-transition-name: lol-wordmark; }
  .crest-mark   { view-transition-name: lol-crest; }
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: .35s;
    animation-timing-function: cubic-bezier(.2, .8, .2, 1);
  }

  /* Page entry — staggered fade on first paint for hero typography. */
  @keyframes lol-enter {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .prov-hero-content .page-eyebrow {
    animation: lol-enter .65s cubic-bezier(.2, .8, .2, 1) both;
  }
  .prov-hero-content .page-h1 {
    animation: lol-enter .8s cubic-bezier(.2, .8, .2, 1) .15s both;
  }
  .page-hero .page-eyebrow {
    animation: lol-enter .65s cubic-bezier(.2, .8, .2, 1) both;
  }
  .page-hero .page-h1 {
    animation: lol-enter .8s cubic-bezier(.2, .8, .2, 1) .15s both;
  }

  /* Drop cap — single large crimson initial on long-form opening graf. */
  .drop-cap::first-letter {
    float: left;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 5.2em;
    font-weight: 700;
    line-height: 0.86;
    margin: 0.06em 0.10em 0 -0.04em;
    color: var(--crimson);
    letter-spacing: -0.04em;
  }
  @media (max-width: 600px) {
    .drop-cap::first-letter { font-size: 4em; margin: 0.08em 0.08em 0 0; }
  }

  /* Scroll-driven reveal — modern CSS, no JS.
     Eyebrows, headlines, and section heads fade up as they scroll into view. */
  @supports (animation-timeline: view()) {
    @keyframes lol-fade-up {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .page-eyebrow,
    .page-h1,
    .page-label,
    .section-head,
    .rand-bigtype,
    .pull-quote,
    .fact-card,
    .drive-card,
    #dalriada-tartan {
      animation: lol-fade-up linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 100%;
    }
  }

  /* Respect motion preference. */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }

  /* ── Nav ── */
  .site-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: clamp(16px, 2.4vw, 28px) clamp(20px, 5vw, 80px);
    border-bottom: 1px solid var(--line);
  }
  .site-header .wm { height: 22px; width: auto; display: block;  }
  .site-nav { display: flex; gap: 36px; }
  .site-nav a {
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
    font-weight: 500; color: var(--ink); text-decoration: none;
    border-bottom: 1px solid transparent; padding-bottom: 2px;
    transition: border-color .15s, color .15s;
  }
  .site-nav a:hover { border-color: var(--crimson); color: var(--crimson); }
  .mobile-burger { display: none; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; cursor: pointer; }

  /* ── Shared type ── */
  .eyebrow { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; color: var(--gray-400); margin: 0 0 32px; }
  .smallcaps { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; }
  .smallcaps.muted { color: var(--gray-400); }
  .body { font-weight: 300; font-size: 17px; line-height: 1.65; margin: 0; }
  .body.sm { font-size: 15px; }
  .ink-link { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 2px; font-weight: 500; transition: color .15s, border-color .15s; }
  .ink-link:hover { color: var(--crimson); border-color: var(--crimson); }
  .ink-link.crimson { color: var(--crimson); border-color: var(--crimson); }

  .rule { height: 1px; background: var(--crimson); width: 100%; }

  /* ── Section ── */
  .section { padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 80px); position: relative; }
  .section.tight { padding: 64px 80px; }
  .section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; gap: 24px; }

  /* ── Paul Rand type system ── */
  .rand-bigtype {
    font-weight: 700; letter-spacing: -.035em; line-height: .96; margin: 0;
    font-size: clamp(44px, 8.5vw, 104px); text-transform: none;
  }
  .rand-bigtype.md  { font-size: clamp(40px, 7.5vw, 96px); }
  .rand-bigtype.sm  { font-size: clamp(32px, 5vw, 60px); }
  .rand-bigtype.xs  { font-size: clamp(26px, 3.4vw, 42px); }
  .rand-bigtype .crim { color: var(--crimson); }
  .crimson-period { color: var(--crimson); }

  /* ── Hero ── */
  .rand-hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex; align-items: flex-end;
    padding: 0;
  }
  .hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 40%;
    display: block;
    filter: brightness(0.75) contrast(1.05);
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(15,10,6,0.08) 0%,
      rgba(15,10,6,0.18) 35%,
      rgba(15,10,6,0.68) 68%,
      rgba(15,10,6,0.88) 100%
    );
  }
  .hero-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 9fr 3fr;
    gap: 56px; align-items: end;
    width: 100%; padding: 80px 80px 80px;
  }

  /* ── Trinity ── */
  .trinity { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: center; }
  .trinity .cell { display: flex; flex-direction: column; align-items: center; }
  .trinity .crest-cell { padding: 0; }
  .trinity .crest-cell img { width: 100%; display: block; }
  .shape-disc {
    width: 100%; aspect-ratio: 1; border-radius: 50%;
    background-image: url('/images/tartan.webp');
    background-size: cover; background-position: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.28);
  }
  .shape-square {
    width: 120%; aspect-ratio: 16/9;
    background: none;
    transform: rotate(6deg) translateY(-6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    border-radius: 6px;
    overflow: hidden;
  }
  .shape-square img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .shape-label { font-family: "JetBrains Mono", "SFMono-Regular", ui-monospace, Menlo, monospace; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink); margin-top: 14px; text-align: center; }

  /* ── Poster card (dark folio) ── */


  /* ── Poster card (dark folio) ── */
  .poster-card {
    background: var(--ink); color: var(--paper); padding: 48px 44px;
    font-family: "JetBrains Mono", ui-monospace, monospace;
    display: flex; flex-direction: column; justify-content: space-between; aspect-ratio: 5/4;
  }
  .poster-card .serial { font-size: 22px; letter-spacing: .06em; }
  .poster-card .dot { width: 18px; height: 18px; background: var(--crimson); border-radius: 50%; }
  .poster-card .smc { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: #9b9387; }

  /* ── § 01 Founder ── */
  .founder-grid {
    display: grid; grid-template-columns: 7fr 4fr;
    gap: 80px; align-items: start;
  }
  .founder-copy { max-width: 580px; }
  .founder-sig { color: var(--gray-400); }
  .founder-photo-wrap {
    position: relative; margin-top: 16px;
  }
  .founder-photo {
    width: 100%; display: block;
    filter: grayscale(18%) contrast(1.04);
    box-shadow: 6px 6px 0 var(--crimson);
  }
  .founder-photo-caption {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gray-400); margin-top: 12px; text-align: center;
  }

  /* ── Vernacular grid ── */
  .vern-rand { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 48px); }
  .vern-rand .num { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--gray-300); letter-spacing: .1em; margin-bottom: 14px; display: block; }
  .vern-rand .term { font-weight: 700; font-size: 34px; letter-spacing: -.02em; line-height: 1; margin: 0 0 10px; }
  .vern-rand .def { font-weight: 300; font-size: 15px; line-height: 1.5; margin: 0; }

  /* ── Place / Ketchum ── */
  .place-wrap { position: relative; overflow: hidden; background: var(--ink); }
  .place-wrap::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg,
      rgba(15,13,10,.52) 0%,
      rgba(15,13,10,.18) 30%,
      rgba(15,13,10,.08) 45%,
      rgba(15,13,10,.55) 70%,
      rgba(15,13,10,.78) 100%
    );
  }
  .place-img { width: 100%; display: block; filter: grayscale(.92) contrast(1.06) brightness(.95); }
  .place-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 40px 48px 40px; color: var(--paper);
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
    pointer-events: none; z-index: 2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  }
  .place-overlay .top, .place-overlay .bot { display: flex; justify-content: space-between; align-items: flex-start; }
  .crim-dot { width: 10px; height: 10px; background: var(--crimson); border-radius: 50%; display: inline-block; margin-right: 8px; vertical-align: middle; }
  .place-overlay .big {
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 700; font-size: clamp(32px, 5vw, 72px);
    letter-spacing: -.02em; line-height: 1.1;
    text-transform: none; align-self: end; color: var(--paper);
    max-width: 100%; white-space: nowrap;
    margin-bottom: 12px;
  }
  .place-overlay .big .crim { color: var(--crimson); }

  /* ── Drive grid ── */
  .drive-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 24px); }
  .drive-card { display: flex; flex-direction: column; gap: 14px; cursor: pointer; }
  .drive-card .ph {
    border: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    aspect-ratio: 4/5; position: relative;
  }
  /* ── Subject hover overlay ── */
  .drive-card .ph::after {
    content: 'View Subject →';
    position: absolute; inset: 0;
    background: rgba(139,42,42,0.82);
    color: var(--paper);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
  }
  .drive-card:hover .ph::after { opacity: 1; }
  .drive-card .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .drive-card .lbl { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .12em; color: var(--gray-400); }
  .drive-card .name { font-weight: 700; font-size: 20px; letter-spacing: -.01em; line-height: 1.2; }
  .drive-card .status { font-size: 13px; font-weight: 300; color: var(--gray-400); }
  .drive-card .status .crim { color: var(--crimson); font-weight: 500; }

  /* ── Subject modal ── */
  .subject-modal-mask {
    position: fixed; inset: 0; background: rgba(24,24,24,0.88);
    display: none; align-items: center; justify-content: center;
    z-index: 200; padding: 24px;
    backdrop-filter: blur(4px);
  }
  .subject-modal-mask.open { display: flex; }
  .subject-modal {
    background: var(--paper); max-width: 680px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    padding: 56px 56px 48px; position: relative;
    border-left: 3px solid var(--crimson);
  }
  .subject-modal .close {
    position: absolute; top: 20px; right: 24px;
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
    background: none; border: 0; cursor: pointer;
    color: var(--gray-400); font-family: inherit;
  }
  .subject-modal .close:hover { color: var(--crimson); }
  .subject-modal .sm-serial {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px; letter-spacing: .18em; color: var(--gray-400);
    margin-bottom: 12px;
  }
  .subject-modal .sm-name {
    font-weight: 700; font-size: 32px; letter-spacing: -.02em;
    line-height: 1.1; margin-bottom: 24px;
  }
  .subject-modal .sm-section-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
    color: var(--gray-400); margin-bottom: 10px;
  }
  .subject-modal .sm-body {
    font-size: 16px; line-height: 1.7; font-weight: 300;
    margin-bottom: 32px;
  }
  .subject-modal .sm-notice {
    background: var(--canvas);
    border-left: 3px solid var(--crimson);
    padding: 20px 24px; margin-bottom: 32px;
  }
  .subject-modal .sm-notice p {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px; letter-spacing: .08em; line-height: 1.7;
    color: var(--ink); margin: 0;
  }
  .subject-modal .sm-notice strong {
    font-weight: 700; color: var(--crimson);
  }

  /* ── CTA posters ── */
  .cta-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
  .cta-poster {
    position: relative; padding: 64px 48px 48px; aspect-ratio: 4/3;
    background: var(--paper); border: 1px solid var(--ink);
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .cta-poster.dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .cta-poster .mark { position: absolute; top: 36px; right: 36px; }
  .cta-poster.dark .ink-link { color: var(--paper); border-color: var(--paper); }
  .cta-poster.dark .ink-link:hover { color: var(--crimson); border-color: var(--crimson); }

  .x-mark { width: 48px; height: 48px; position: relative; }
  .x-mark::before, .x-mark::after { content: ""; position: absolute; inset: 0; background: var(--ink); width: 4px; left: 22px; transform-origin: center; }
  .x-mark::before { transform: rotate(45deg); }
  .x-mark::after  { transform: rotate(-45deg); }

  .orbit { width: 56px; height: 56px; border: 3px solid var(--paper); border-radius: 50%; position: relative; }
  .orbit::after { content: ""; position: absolute; top: -8px; left: 50%; width: 12px; height: 12px; background: var(--crimson); border-radius: 50%; transform: translateX(-50%); }

  .pip { display: inline-block; width: 6px; height: 6px; background: var(--crimson); border-radius: 50%; }
  .cities { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 16px; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #d8d3ca; }
  .cities span { display: inline-flex; align-items: center; gap: 8px; }

  /* ── Footer ── */
  /* ── Footer (Paul Rand–inspired: asymmetric balance, two-column,
        crest mark anchors lower-right at all viewports) ── */
  .site-footer {
    display: grid; grid-template-columns: 1fr auto;
    align-items: end; gap: clamp(24px, 4vw, 48px);
    padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 80px) clamp(28px, 4vw, 48px);
    border-top: 1px solid var(--line);
  }
  .site-footer .meta {
    display: flex; flex-direction: column;
    gap: clamp(20px, 2.5vw, 32px);
    font-size: 13px; line-height: 1.6; color: var(--gray-400);
  }
  .site-footer .meta-address { display: flex; flex-direction: column; gap: 6px; }
  .site-footer .meta-place {
    font-family: "JetBrains Mono", "SFMono-Regular", ui-monospace, monospace;
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
    font-weight: 500; color: var(--ink); margin-bottom: 4px;
  }
  .site-footer .meta-tagline { font-style: italic; }
  .site-footer .meta-link {
    color: inherit; text-decoration: none;
    border-bottom: 1px solid currentColor; padding-bottom: 1px;
    transition: color .15s, border-color .15s;
  }
  .site-footer .meta-link:hover { color: var(--crimson); }
  .site-footer .meta-bottom {
    display: flex; flex-direction: column;
    gap: 18px; margin-top: clamp(8px, 1.5vw, 20px);
  }
  .site-footer .meta-credit {
    display: flex; flex-wrap: wrap; align-items: baseline;
    gap: 6px 10px;
    font-family: "JetBrains Mono", "SFMono-Regular", ui-monospace, monospace;
    font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gray-400);
  }
  .site-footer .meta-credit-sep { color: var(--gray-200); }
  .site-footer .crim-mark {
    color: var(--crimson); display: inline-block;
    margin: 0 6px; font-size: 9px; line-height: 1;
  }
  /* Stack the brand line above the nav line on narrow viewports. */
  @media (max-width: 600px) {
    .site-footer .meta-credit { gap: 10px 0; }
    .site-footer .meta-credit-brand { flex: 0 0 100%; }
    .site-footer .meta-credit-nav { flex: 0 0 100%; }
    .site-footer .meta-credit-sep { display: none; }
  }
  .site-footer .crest-link { display: block; align-self: end; transition: opacity .2s; }
  .site-footer .crest-link:hover { opacity: 0.7; }
  .site-footer .crest-mark { width: clamp(83px, 9vw, 125px); height: auto; display: block; }

  /* ── Warrant modal ── */
  .modal-mask {
    position: fixed; inset: 0; background: #181818cc;
    display: none; align-items: center; justify-content: center;
    z-index: 200; padding: 32px;
  }
  .modal-mask.open { display: flex; }
  .modal {
    background: var(--paper); max-width: 760px; width: 100%;
    max-height: 90vh; overflow: auto;
    padding: 56px 64px; position: relative;
    border: 1px solid var(--ink);
  }
  .modal .close {
    position: absolute; top: 18px; right: 24px;
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
    background: none; border: 0; cursor: pointer; color: var(--ink); font-family: inherit;
  }
  .modal .close:hover { color: var(--crimson); }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; margin-top: 36px; }
  .form-grid .full { grid-column: 1/-1; }
  .field label { display: block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; color: var(--gray-400); margin-bottom: 8px; }
  .field input, .field textarea, .field select {
    width: 100%; border: 0; border-bottom: 1px solid var(--ink);
    background: transparent; padding: 8px 0 10px;
    font: inherit; font-size: 17px; font-weight: 300; color: var(--ink);
  }
  .field textarea { resize: vertical; min-height: 96px; }
  .field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--crimson); }
  .submit-row { margin-top: 28px; }
  .submit {
    background: none; border: 0; font: inherit; font-weight: 700;
    font-size: 18px; color: var(--ink); cursor: pointer;
    padding: 0; border-bottom: 1px solid var(--ink);
  }
  .submit:hover { color: var(--crimson); border-color: var(--crimson); }

  /* ── SVG colour inversion for dark surfaces ── */
  .svg-invert { filter: brightness(0) invert(1); }

  /* ── Mobile nav — hidden by default at all sizes ── */
  .mobile-nav { display: none; }


  /* ── Social icons ── */
  .social-icons { display: flex; gap: 20px; align-items: center; margin-top: 20px; }
  .social-icons a { color: var(--gray-400); transition: color .15s; line-height: 0; text-decoration: none; }
  .social-icons a:hover { color: var(--crimson); }

  /* ── Responsive ── */
  @media (max-width: 900px) {
    *, *::before, *::after { max-width: 100%; box-sizing: border-box; }
    .rule { width: 100vw; margin-left: 0; }

    /* ── Nav ── */
    .site-header { padding: 18px 20px; }
    .site-nav { display: none; }
    .mobile-burger { display: block; }

    /* ── Mobile nav drawer ── */
    .mobile-nav {
      display: none; position: fixed; inset: 0; z-index: 150;
      background: var(--paper); flex-direction: column;
      justify-content: center; align-items: flex-start;
      padding: 60px 32px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
      font-weight: 500; color: var(--ink); text-decoration: none;
      padding: 16px 0; border-bottom: 1px solid var(--line); width: 100%;
    }
    .mobile-nav a:last-child { border-bottom: 0; }
    /* Drop the divider's adjacent link border so we don't double up. */
    .mobile-nav a:has(+ .mobile-nav-divider) { border-bottom: 0; }
    .mobile-nav-divider {
      width: 32px; height: 1px; background: var(--crimson);
      margin: 20px 0 20px;
    }
    .mobile-nav-close {
      position: absolute; top: 20px; right: 20px;
      font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
      background: none; border: 0; font-family: inherit; cursor: pointer;
    }

    /* Hide the deep-page nav links from the footer on mobile —
       they live in the mobile menu now. */
    .site-footer .meta-credit-nav,
    .site-footer .meta-credit-sep { display: none; }

    /* ── Type scale ── */
    .rand-bigtype        { font-size: 44px; letter-spacing: -.025em; }
    .rand-bigtype.md     { font-size: 38px; }
    .rand-bigtype.sm     { font-size: 30px; }
    .rand-bigtype.xs     { font-size: 26px; }

    /* ── Hero ── */
    .rand-hero { min-height: 420px; }
    .hero-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 48px; }
    .hero-grid > div:last-child { display: none; }
    .eyebrow { font-size: 9px; margin-bottom: 16px; letter-spacing: .12em; white-space: normal; overflow-wrap: break-word; }

    /* ── Sections ── */
    .section { padding: 48px 20px; }
    .section.tight { padding: 32px 20px; }
    .section-head { flex-direction: column; gap: 4px; margin-bottom: 20px; }

    /* ── Sub-hero lede ── */
    .lede-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .lede-grid p { font-size: 17px !important; }
    .lede-grid > div { display: flex; flex-direction: row; gap: 24px; flex-wrap: wrap; }

    /* ── § 01 Founder ── */
    .founder-grid { grid-template-columns: 1fr; gap: 36px; }
    .founder-photo-wrap { max-width: 280px; }

    /* ── § 01 Standard (legacy) ── */
    .standard-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .poster-card { padding: 28px 24px; aspect-ratio: auto; min-height: 160px; }
    .poster-card .serial { font-size: 15px; }

    /* ── § 02 Vernacular ── */
    .vern-rand { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
    .vern-rand .term { font-size: 22px; }
    .vern-rand .def { font-size: 13px; }
    .vern-rand .num { margin-bottom: 8px; }

    /* ── § 03 Ketchum ── */
    .place-wrap { aspect-ratio: 4/3 !important; min-height: 320px; }
    .place-overlay { padding: 18px 20px; font-size: 9px; letter-spacing: .14em; }
    .place-overlay .big { font-size: 22px; max-width: 100%; white-space: normal; line-height: 1.15; }
    .place-overlay .top, .place-overlay .bot { flex-direction: row; gap: 8px; flex-wrap: wrap; }
    .place-overlay .top { font-size: 8px; }
    .place-overlay .bot { font-size: 8px; }

    /* ── § 03 Keep text ── */
    .keep-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .keep-grid p:last-child { display: none; } /* remove redundant muted copy */

    /* ── § 04 Drive grid ── */
    .drive-grid { grid-template-columns: 1fr; gap: 32px; }
    .drive-card .ph { aspect-ratio: 3/2; }
    .drive-card .lbl { font-size: 10px; }
    .drive-card .name { font-size: 20px; }
    .drive-card .status { font-size: 14px; }

    /* ── § 05–06 CTA pair ── */
    .cta-pair { grid-template-columns: 1fr; gap: 2px; }
    .cta-poster { aspect-ratio: auto; padding: 40px 24px 36px; min-height: auto; }
    .cta-poster .mark { display: none; } /* hide geometric marks at mobile */
    .cities { gap: 12px 20px; margin-top: 12px; }

    /* ── Manifesto ── */
    .manifesto { padding: 24px 20px; }
    .manifesto::before { display: none; }
    .manifesto-h { font-size: 26px; margin-top: 16px !important; line-height: 1.2; }
    .lede-grid p { font-size: 16px !important; line-height: 1.6; }
    .keep-grid p { font-size: 15px !important; }

    /* ── Footer ── */
    .site-footer .meta { font-size: 12px; }

    /* ── Modal ── */
    .modal { padding: 40px 20px 32px; }
    .form-grid { grid-template-columns: 1fr; gap: 20px; }
    .subject-modal { padding: 40px 20px 36px; }
    .subject-modal .sm-name { font-size: 24px; }
  }
