.skip-link {
    position: absolute; top: -48px; left: 12px; z-index: 9999;
    background: #0F1B2D; color: #F4D470;
    padding: 10px 18px; font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
    text-decoration: none; border: 1px solid rgba(244, 212, 112, 0.4);
    border-radius: 4px; transition: top 0.18s ease;
  }
  .skip-link:focus { top: 12px; outline: 2px solid #F4D470; outline-offset: 2px; }

  /* ─── Body-light footer · contrast killshot ─── */
  .footer.body-light { background: #FAF7F0; color: #0F1B2D; }
  .footer.body-light h4 {
    color: #0F1B2D !important;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    opacity: 0.55; margin-bottom: 14px;
  }
  .footer.body-light ul { list-style: none; padding: 0; }
  .footer.body-light ul li { margin-bottom: 8px; }
  .footer.body-light a {
    color: rgba(15, 27, 45, 0.78) !important;
    text-decoration: none;
    transition: color 0.18s ease;
  }
  .footer.body-light a:hover { color: #B8902C !important; }
  .footer.body-light .footer-meta strong { color: #0F1B2D !important; font-weight: 700; }
  .footer.body-light .footer-meta { color: rgba(15, 27, 45, 0.85); }
  .footer.body-light .footer-bottom {
    border-top: 1px solid rgba(15, 27, 45, 0.1);
    color: rgba(15, 27, 45, 0.5);
  }
  .footer.body-light .footer-bottom span { color: rgba(15, 27, 45, 0.55) !important; }

  /* Heritage-page cinematic hero with reduced height (page hero, not landing hero) */
  .hero-page {
    position: relative;
    min-height: 480px;
    padding: 100px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #050B14 0%, #0A1422 50%, #0F1B2D 100%);
  }
  .hero-page .wrap { position: relative; z-index: 5; }
  .hero-page .cine-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    color: #C8A84E; margin-bottom: 28px;
  }
  .hero-page .cine-eyebrow .cine-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #C8A84E; box-shadow: 0 0 12px rgba(200,168,78,0.7);
  }
  .hero-page h1 {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: clamp(32px, 6vw, 76px);
    font-weight: 700; line-height: 1.08;
    letter-spacing: -0.025em;
    color: #F4F0E0;
    margin-bottom: 24px;
    max-width: 920px;
    overflow-wrap: break-word;
    text-wrap: balance;
  }
  .hero-page h1 em {
    font-style: italic;
    background: linear-gradient(135deg, #F4D470 0%, #C8A84E 50%, #A87818 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* italic letters overshoot their normal box — give them room to breathe so 'Kofi' isn't clipped */
    display: inline-block;
    padding-right: 0.18em;
    margin-right: -0.12em;
    line-height: 1.1; /* room for italic descenders/ascenders */
    /* Allow break inside long italic phrases (e.g., "Sika Dwa Kofi") on narrow viewports */
    overflow-wrap: break-word;
  }
  /* On phone widths, force the italic gold phrase onto its own line so
     proper-noun phrases like "Sika Dwa Kofi" can't be clipped. */
  @media (max-width: 640px) {
    .hero-page h1 em { display: block; }
  }
  .hero-page .lede {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.55;
    color: rgba(232, 224, 204, 0.78);
    max-width: 720px;
    margin-bottom: 32px;
  }
  .hero-page .timeline-cue {
    display: inline-flex; gap: 32px; align-items: center;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(244, 212, 112, 0.85);
  }
  .hero-page .timeline-cue .arrow {
    color: rgba(200, 168, 78, 0.5);
    font-size: 14px;
  }
  @media (max-width: 640px) {
    .hero-page { min-height: 380px; padding: 70px 0 60px; }
    .hero-page .timeline-cue { gap: 14px; font-size: 10px; flex-wrap: wrap; }
  }

  /* ƐDƆN · 2026-05-13 · bells policy per CLAUDE.md ·
     Sika Dwa Kofi historically wore bells — the stool's voice, the
     original alert for council convening, royal declaration,
     verification. Visual-only on marketing pages (no audio module). */
  .throne-bell{
    transform-box: fill-box;
    transform-origin: 50% 0%;
    transition: filter .3s ease;
  }
  @media (prefers-reduced-motion: no-preference){
    .throne-bell.bell-ring{
      animation: bellSwing .68s cubic-bezier(.36,.07,.19,.97);
      filter: drop-shadow(0 0 5px rgba(255,239,168,.7));
    }
    @keyframes bellSwing{
      0%   { transform: rotate(0deg); }
      18%  { transform: rotate(-18deg); }
      42%  { transform: rotate(13deg); }
      66%  { transform: rotate(-8deg); }
      85%  { transform: rotate(4deg); }
      100% { transform: rotate(0deg); }
    }
  }
  @media (prefers-reduced-motion: reduce){
    .throne-bell.bell-ring{ filter: drop-shadow(0 0 4px rgba(255,239,168,.5)); }
  }
