/* ─────────────────────────────────────────────────────────────────────────
   chrome.css — the frame every visitor sees: site nav + site footer.
   1765 Sanctum · redesign/chrome (2026-09-26)

   SOURCE OF TRUTH for the markup: .github/scripts/inject_chrome.py
   Re-run that script after adding a page; never hand-edit chrome in a page.

   Scoped with [data-chrome="2"] so these rules outrank the older
   .dispatch-nav / .footer blocks in styles.css regardless of load order,
   and so a page that has NOT been re-injected keeps its old chrome intact.

   Tokens: assets/css/tenebrae.css. Every var() carries a literal fallback
   because ~90 pages ship without tenebrae.css.
   Motion: transform/opacity only. No layout shift. prefers-reduced-motion
   honoured at the bottom of this file.
   ───────────────────────────────────────────────────────────────────────── */

/* ═══════════════════════ NAV ═══════════════════════ */

.dispatch-nav[data-chrome="2"] {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  padding: 15px clamp(16px, 3.4vw, 44px);
  background: rgba(8, 9, 12, 0.86);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
          backdrop-filter: blur(16px) saturate(1.08);
  border-bottom: 1px solid rgba(200, 147, 42, 0.16);
  box-shadow: none;
  transition: padding 380ms cubic-bezier(0.16, 1, 0.3, 1),
              background 380ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 380ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 380ms cubic-bezier(0.16, 1, 0.3, 1);
}
/* Scrolled: tighter, darker, a hair more gold. Padding-only so nothing reflows
   below it (the bar is in normal flow — sticky, never fixed). */
.dispatch-nav[data-chrome="2"].is-condensed {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(6, 7, 9, 0.94);
  border-bottom-color: rgba(200, 147, 42, 0.3);
  box-shadow: 0 16px 46px -22px rgba(0, 0, 0, 0.95);
}

/* ---- wordmark ---- */
.dispatch-nav[data-chrome="2"] .dispatch-nav-mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  margin-right: auto;
  padding: 6px 2px;
  border: none;
  text-decoration: none;
  font-family: var(--f-cinzel, "Cinzel", Georgia, serif);
  font-weight: 600;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 0.17em;
  color: var(--c-amber, #C8932A);
  transition: color 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.dispatch-nav[data-chrome="2"] .dispatch-nav-mark:hover,
.dispatch-nav[data-chrome="2"] .dispatch-nav-mark:focus-visible {
  color: var(--c-amber-bri, #E2B248);
  border: none;
}
.dispatch-nav[data-chrome="2"] .dispatch-nav-mark:focus-visible {
  outline: 2px solid var(--c-bone, #F5E6C8);
  outline-offset: 4px;
  border-radius: 3px;
}
.dispatch-nav[data-chrome="2"] .dispatch-nav-mid {
  display: inline-flex;
  width: 7px;
  height: 7px;
  color: var(--c-amber, #C8932A);
}
.dispatch-nav[data-chrome="2"] .dispatch-nav-mid svg { width: 100%; height: 100%; }

/* ---- link row (desktop) ---- */
.dispatch-nav[data-chrome="2"] .dispatch-nav-links {
  display: flex;
  /* row/nowrap/auto stated explicitly: other stylesheets set flex-direction:column
     on .dispatch-nav-links inside their own breakpoints, and a property this rule
     never mentions is a property this rule cannot win. */
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: auto;
  max-height: none;
  overflow: visible;
  box-shadow: none;
  gap: clamp(13px, 1.9vw, 28px);
  font-family: var(--f-cinzel, "Cinzel", Georgia, serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  position: static;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  /* 44px pointer target without growing the bar: padding does the work */
  min-height: 44px;
  padding: 0 2px;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  color: var(--c-bone-dim, #C9BB9C);
  transition: color 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 11px;
  height: 1px;
  background: var(--c-amber-bri, #E2B248);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a:hover,
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a:focus-visible {
  color: var(--c-bone, #F5E6C8);
  border: none;
}
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a:hover::after,
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a:focus-visible::after { transform: scaleX(1); }
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a:focus-visible {
  outline: 2px solid var(--c-bone, #F5E6C8);
  outline-offset: 3px;
  border-radius: 2px;
}
/* current page */
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a[aria-current="page"] { color: var(--c-bone, #F5E6C8); }
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--c-amber, #C8932A);
}
/* the signed-in / sign-in link sits quieter than the rest */
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a.nav-signin-link {
  color: var(--c-bone-mut, #8B826B);
  background: none;
  border: none;
  padding: 0 2px;
  letter-spacing: 0.16em;
}
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a.nav-signin-link::after { display: none; }
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a.nav-signin-link:hover,
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a.nav-signin-link:focus-visible { color: var(--c-bone-dim, #C9BB9C); }
.dispatch-nav[data-chrome="2"] .nav-ext { margin-left: 4px; font-size: 0.8em; opacity: 0.65; }
/* tenebrae.css and app-mode.css each box the Sign In link in gold, which puts a
   second button-looking thing beside the ONE primary action. Quiet it down.
   :not([data-signed-in="1"]) leaves the member indicator (filled gold, set by
   sanctum-motion.js) exactly as it is — that state is meant to stand out. */
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a.nav-signin-link:not([data-signed-in="1"]) {
  color: var(--c-bone-mut, #8B826B) !important;
  background: none !important;
  border: none !important;
  padding: 0 2px !important;
  border-radius: 0 !important;
}
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a.nav-signin-link:not([data-signed-in="1"]):hover,
.dispatch-nav[data-chrome="2"] .dispatch-nav-links a.nav-signin-link:not([data-signed-in="1"]):focus-visible {
  color: var(--c-bone, #F5E6C8) !important;
}

/* A button that does not depend on which base stylesheet a page happens to load
   (.btn/.btn-primary live in styles.css, which ~90 pages do not ship). */
.chrome-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid var(--c-amber-bri, #E2B248);
  border-radius: 3px;
  background: var(--c-amber-bri, #E2B248);
  color: #08090C;
  font-family: var(--f-cinzel, "Cinzel", Georgia, serif);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), background 200ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.chrome-btn:hover { background: #F2C55E; border-color: #F2C55E; color: #08090C; transform: translateY(-1px); box-shadow: 0 10px 26px -14px rgba(226, 178, 72, 0.9); }
.chrome-btn:active { transform: translateY(0); background: var(--c-amber, #C8932A); border-color: var(--c-amber, #C8932A); box-shadow: none; }
.chrome-btn:focus-visible { outline: 2px solid var(--c-bone, #F5E6C8); outline-offset: 3px; }
.chrome-btn--ghost {
  background: none;
  color: var(--c-bone, #F5E6C8);
  border-color: rgba(200, 147, 42, 0.42);
}
.chrome-btn--ghost:hover { background: rgba(226, 178, 72, 0.08); border-color: var(--c-amber-bri, #E2B248); color: var(--c-bone, #F5E6C8); }
@media (prefers-reduced-motion: reduce) { .chrome-btn { transition: none; } .chrome-btn:hover { transform: none; } }

/* ---- the one primary action, always visible in the bar ---- */
.dispatch-nav[data-chrome="2"] .nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 clamp(13px, 1.5vw, 20px);
  border: 1px solid var(--c-amber-bri, #E2B248);
  border-radius: 3px;
  background: var(--c-amber-bri, #E2B248);
  color: #08090C;
  font-family: var(--f-cinzel, "Cinzel", Georgia, serif);
  font-weight: 600;
  font-size: clamp(10px, 0.82vw, 11.5px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
              background 200ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.dispatch-nav[data-chrome="2"] .nav-cta:hover {
  background: #F2C55E;
  border-color: #F2C55E;
  color: #08090C;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -12px rgba(226, 178, 72, 0.85);
}
.dispatch-nav[data-chrome="2"] .nav-cta:active {
  transform: translateY(0);
  background: var(--c-amber, #C8932A);
  border-color: var(--c-amber, #C8932A);
  box-shadow: none;
}
.dispatch-nav[data-chrome="2"] .nav-cta:focus-visible {
  outline: 2px solid var(--c-bone, #F5E6C8);
  outline-offset: 3px;
}

/* ---- hamburger ---- */
.dispatch-nav[data-chrome="2"] .dispatch-nav-toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(200, 147, 42, 0.22);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 200ms cubic-bezier(0.16, 1, 0.3, 1), background 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.dispatch-nav[data-chrome="2"] .dispatch-nav-toggle:hover { border-color: rgba(226, 178, 72, 0.5); background: rgba(226, 178, 72, 0.06); }
.dispatch-nav[data-chrome="2"] .dispatch-nav-toggle:focus-visible { outline: 2px solid var(--c-bone, #F5E6C8); outline-offset: 3px; }
.dispatch-nav[data-chrome="2"] .hamburger-stack { display: flex; flex-direction: column; gap: 5px; width: 20px; }
.dispatch-nav[data-chrome="2"] .hamburger-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--c-amber, #C8932A);
  transform-origin: center;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), opacity 180ms linear, background 200ms linear;
}
.dispatch-nav[data-chrome="2"] .dispatch-nav-toggle:hover .hamburger-bar { background: var(--c-amber-bri, #E2B248); }
.dispatch-nav[data-chrome="2"] .dispatch-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.dispatch-nav[data-chrome="2"] .dispatch-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.dispatch-nav[data-chrome="2"] .dispatch-nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- mobile / narrow: the menu becomes a drop panel ---- */
@media (max-width: 1024px) {
  .dispatch-nav[data-chrome="2"] { gap: 12px; padding-left: 16px; padding-right: 16px; }
  .dispatch-nav[data-chrome="2"] .dispatch-nav-toggle { display: inline-flex; order: 3; }
  .dispatch-nav[data-chrome="2"] .nav-cta { order: 2; font-size: 10px; letter-spacing: 0.13em; padding: 0 14px; }
  .dispatch-nav[data-chrome="2"] .dispatch-nav-mark { order: 1; font-size: 12px; letter-spacing: 0.14em; }

  .dispatch-nav[data-chrome="2"] .dispatch-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    /* another sheet gives this panel a full-viewport height and centres its
       items, which left ~200px of dead space above the first row. The panel is
       exactly as tall as its contents. */
    justify-content: flex-start;
    height: auto !important;
    gap: 0;
    width: auto;
    padding: 6px 0 10px;
    max-height: calc(100dvh - 100%);
    overflow-y: auto;
    overscroll-behavior: contain;
    /* !important: tenebrae.css and app-mode.css both paint .dispatch-nav-links
       inside their own breakpoints, and a translucent panel over a hero makes
       the menu unreadable. The panel is opaque, full stop. */
    background: #06070A !important;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    border-bottom: 1px solid rgba(200, 147, 42, 0.3);
    box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.96);
    /* closed */
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), opacity 200ms linear;
  }
  .dispatch-nav[data-chrome="2"].is-open .dispatch-nav-links {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .dispatch-nav[data-chrome="2"] .dispatch-nav-links a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 22px;
    font-size: 12.5px;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(200, 147, 42, 0.1);
  }
  .dispatch-nav[data-chrome="2"] .dispatch-nav-links a::after { left: 22px; right: 22px; bottom: 16px; }
  .dispatch-nav[data-chrome="2"] .dispatch-nav-links a:last-child { border-bottom: none; }
  .dispatch-nav[data-chrome="2"] .dispatch-nav-links a.nav-signin-link:not([data-signed-in="1"]) {
    padding: 0 22px !important;
  }
  .dispatch-nav[data-chrome="2"] .dispatch-nav-links a.nav-signin-link {
    margin-top: 4px;
    border-top: 1px solid rgba(200, 147, 42, 0.16);
    border-bottom: none;
    font-size: 11px;
  }
}
@media (max-width: 380px) {
  .dispatch-nav[data-chrome="2"] .dispatch-nav-mark { font-size: 11px; letter-spacing: 0.1em; gap: 7px; }
  .dispatch-nav[data-chrome="2"] .nav-cta { font-size: 9.5px; letter-spacing: 0.1em; padding: 0 11px; }
}

/* Body scroll lock while the panel is open (class set by chrome.js). */
body.nav-open { overflow: hidden; }


/* ═══════════════════════ FOOTER ═══════════════════════ */

.footer[data-chrome="2"] {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: clamp(56px, 7vw, 88px) clamp(16px, 4vw, 40px) clamp(38px, 4vw, 54px);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(200, 147, 42, 0.055) 0%, transparent 62%),
    #06070A;
  border-top: 1px solid rgba(200, 147, 42, 0.16);
  color: var(--c-bone-dim, #C9BB9C);
  font-family: var(--f-body, "EB Garamond", Georgia, serif);
  text-align: center;
}
.footer[data-chrome="2"] .foot-inner { max-width: 1080px; margin: 0 auto; }

/* --- the promise --- */
.footer[data-chrome="2"] .foot-promise {
  max-width: 34ch;
  margin: 0 auto 6px;
  font-family: var(--f-display, "Cormorant Garamond", Georgia, serif);
  font-weight: 500;
  font-size: clamp(1.32rem, 2.5vw, 1.86rem);
  line-height: 1.24;
  letter-spacing: 0.005em;
  color: var(--c-bone, #F5E6C8);
}
.footer[data-chrome="2"] .foot-promise em { color: var(--c-amber-bri, #E2B248); font-style: italic; }
.footer[data-chrome="2"] .foot-promise-sub {
  margin: 0 auto 26px;
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--c-bone-mut, #8B826B);
}

/* --- signup --- */
.footer[data-chrome="2"] .foot-signup {
  max-width: 520px;
  margin: 0 auto;
  padding: 22px 20px 20px;
  background: rgba(16, 18, 24, 0.72);
  border: 1px solid rgba(200, 147, 42, 0.2);
  border-radius: 4px;
}
.footer[data-chrome="2"] .foot-signup-h {
  margin: 0 0 4px;
  font-family: var(--f-cinzel, "Cinzel", Georgia, serif);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-amber, #C8932A);
}
.footer[data-chrome="2"] .foot-signup-sub {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--c-bone-dim, #C9BB9C);
}
.footer[data-chrome="2"] .foot-signup .dcap-label {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.footer[data-chrome="2"] .foot-micro {
  margin: 11px 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--c-bone-mut, #8B826B);
}

/* --- rule --- */
.footer[data-chrome="2"] .foot-rule {
  width: min(560px, 100%);
  height: 1px;
  margin: clamp(30px, 4vw, 44px) auto;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(200, 147, 42, 0.42), transparent);
}

/* --- social --- */
.footer[data-chrome="2"] .foot-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.footer[data-chrome="2"] .foot-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 147, 42, 0.22);
  border-radius: 3px;
  color: var(--c-bone-dim, #C9BB9C);
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 200ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
              background 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.footer[data-chrome="2"] .foot-social a:hover {
  color: var(--c-amber-bri, #E2B248);
  border-color: rgba(226, 178, 72, 0.5);
  background: rgba(226, 178, 72, 0.06);
  transform: translateY(-2px);
}
.footer[data-chrome="2"] .foot-social a:active { transform: translateY(0); }
.footer[data-chrome="2"] .foot-social a:focus-visible { outline: 2px solid var(--c-bone, #F5E6C8); outline-offset: 3px; }
.footer[data-chrome="2"] .foot-social svg { width: 19px; height: 19px; fill: currentColor; }

/* --- link columns --- */
.footer[data-chrome="2"] .foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 0;
  margin: 0 0 22px;
  font-family: var(--f-cinzel, "Cinzel", Georgia, serif);
  font-size: 0.66rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.footer[data-chrome="2"] .foot-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--c-bone-mut, #8B826B);
  text-decoration: none;
  border: none;
  transition: color 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.footer[data-chrome="2"] .foot-links a:hover { color: var(--c-bone, #F5E6C8); }
.footer[data-chrome="2"] .foot-links a:focus-visible { outline: 2px solid var(--c-bone, #F5E6C8); outline-offset: 2px; border-radius: 2px; }

/* --- wordmark + meta --- */
.footer[data-chrome="2"] .footer-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 8px;
  font-family: var(--f-cinzel, "Cinzel", Georgia, serif);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.2em;
  color: var(--c-amber, #C8932A);
}
.footer[data-chrome="2"] .footer-mid { display: inline-flex; width: 8px; height: 8px; }
.footer[data-chrome="2"] .footer-mid svg { width: 100%; height: 100%; fill: currentColor; }
.footer[data-chrome="2"] .footer-tagline {
  margin: 0 0 20px;
  font-family: var(--f-cinzel, "Cinzel", Georgia, serif);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-bone-mut, #8B826B);
}
.footer[data-chrome="2"] .foot-note {
  max-width: 62ch;
  margin: 0 auto 16px;
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--c-bone-mut, #8B826B);
}
.footer[data-chrome="2"] .foot-note a,
.footer[data-chrome="2"] .foot-meta a {
  color: var(--c-bone-dim, #C9BB9C);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 147, 42, 0.28);
}
.footer[data-chrome="2"] .foot-note a:hover,
.footer[data-chrome="2"] .foot-meta a:hover { color: var(--c-bone, #F5E6C8); border-bottom-color: var(--c-amber-bri, #E2B248); }
.footer[data-chrome="2"] .foot-note a:focus-visible,
.footer[data-chrome="2"] .foot-meta a:focus-visible { outline: 2px solid var(--c-bone, #F5E6C8); outline-offset: 2px; }
.footer[data-chrome="2"] .foot-meta {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--c-bone-mut, #8B826B);
}

@media (max-width: 520px) {
  .footer[data-chrome="2"] .foot-links a { padding: 0 10px; font-size: 0.62rem; }
  .footer[data-chrome="2"] .foot-signup { padding: 20px 16px 18px; }
}

/* ═══════════════════════ REDUCED MOTION ═══════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .dispatch-nav[data-chrome="2"],
  .dispatch-nav[data-chrome="2"] *,
  .footer[data-chrome="2"] * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .dispatch-nav[data-chrome="2"] .nav-cta:hover,
  .footer[data-chrome="2"] .foot-social a:hover { transform: none; }
  .dispatch-nav[data-chrome="2"] .dispatch-nav-links { transform: none; }
}
