/* ============================================================
   Newman LLP — Business Litigation on Contingency
   contingentbusinesscase.com
   One stylesheet. Mobile-first, restrained editorial system.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --ink:        #0B1C2C;  /* deep navy — header, footer, hero, dark bands */
  --ink-2:      #112A3F;  /* secondary navy */
  --paper:      #F7F5F1;  /* warm off-white page background */
  --text:       #16222E;  /* body text on paper */
  --text-soft:  #5A6672;  /* secondary text */
  --line:       #DFD9CF;  /* hairline rules on paper */
  --brass:      #B08D57;  /* restrained metallic accent */
  --brass-deep: #936F3C;  /* darker brass for AA contrast on paper */
  --steel:      #3E6B8B;  /* cool secondary accent, sparingly */
  --white:      #FFFFFF;

  --maxw: 1200px;
  --measure: 66ch;
  --radius: 4px;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --section-y: clamp(80px, 11vw, 140px);
  --gutter: clamp(20px, 5vw, 48px);
}

/* ---------- 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: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.12; margin: 0 0 .5em; }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }
strong { font-weight: 600; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--white); padding: 12px 18px; border-radius: 0 0 var(--radius) 0;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
}
.skip-link:focus { left: 0; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 7vw, 84px); }
.measure { max-width: var(--measure); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Typographic scale ---------- */
.h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); letter-spacing: -0.01em; }
.h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.lead { font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.5; color: var(--text); }

/* Section eyebrow label */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 1.1rem;
  display: inline-block;
  position: relative;
  padding-bottom: .7rem;
}
.eyebrow::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 34px; height: 2px; background: var(--brass);
}
.eyebrow--light { color: rgba(255,255,255,.72); }

.text-soft { color: var(--text-soft); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 1rem 1.6rem; border-radius: var(--radius);
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.btn--primary:hover { background: var(--brass-deep); border-color: var(--brass-deep); color: var(--white); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--on-dark { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.btn--on-dark:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

.arrow-link {
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  text-decoration: none; color: var(--ink);
  border-bottom: 1px solid var(--line); padding-bottom: 2px;
  transition: color .18s ease, border-color .18s ease;
  display: inline-block;
}
.arrow-link:hover { color: var(--brass-deep); border-color: var(--brass); }
.arrow-link--quiet { color: var(--text-soft); font-weight: 500; }
.arrow-link--light { color: var(--white); border-color: rgba(255,255,255,.3); }
.arrow-link--light:hover { color: var(--brass); border-color: var(--brass); }

a.inline { color: var(--steel); text-decoration: underline; text-underline-offset: 2px; }
a.inline:hover { color: var(--brass-deep); }

/* ---------- Header / nav ---------- */
.site-header {
  background: var(--ink);
  color: var(--white);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 88px; padding-block: 12px;
}
.brand { display: inline-flex; align-items: center; gap: .85rem; text-decoration: none; color: var(--white); flex-shrink: 0; }
.brand img { height: 56px; width: auto; }
.brand__tag {
  font-family: var(--sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .04em; color: rgba(255,255,255,.7);
  border-left: 1px solid rgba(255,255,255,.22); padding-left: .85rem;
  max-width: 16ch; line-height: 1.25;
}
/* Tagline only appears when there's room beside the full nav. */
@media (max-width: 1320px) { .brand__tag { display: none; } }

.nav { display: flex; align-items: center; gap: .25rem; flex-shrink: 0; }
.nav__list { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-flex; align-items: center; gap: .3em;
  font-family: var(--sans); font-weight: 500; font-size: .875rem;
  color: rgba(255,255,255,.85); text-decoration: none;
  padding: .55rem .58rem; border-radius: var(--radius);
  transition: color .15s ease, background-color .15s ease;
  white-space: nowrap; background: none; border: 0; cursor: pointer;
}
.nav__link:hover, .nav__link:focus-visible { color: var(--white); }
.nav__link[aria-current="page"] { color: var(--white); box-shadow: inset 0 -2px 0 var(--brass); }
.nav__cta { margin-left: .5rem; padding: .7rem 1.15rem; background: var(--brass); color: var(--ink); font-weight: 600; border-radius: var(--radius); }
.nav__cta:hover { background: var(--white); color: var(--ink); }

/* Dropdown */
.nav__item--has-menu { position: relative; }
.nav__caret { transition: transform .18s ease; }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--white); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(11,28,44,.18);
  padding: .5rem; width: 320px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 120;
}
.nav__item--has-menu:hover .dropdown,
.nav__item--has-menu:focus-within .dropdown,
.dropdown[data-open="true"] {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav__item--has-menu:hover .nav__caret,
.dropdown[data-open="true"] ~ .nav__caret { transform: rotate(180deg); }
.dropdown a {
  display: block; padding: .5rem .6rem; font-size: .85rem; font-weight: 500;
  color: var(--text); text-decoration: none; border-radius: 3px; line-height: 1.3;
}
.dropdown a:hover, .dropdown a:focus-visible { background: var(--paper); color: var(--brass-deep); }
.dropdown__all { grid-column: 1 / -1; border-top: 1px solid var(--line); margin-top: 2px; padding-top: 4px; }
.dropdown__all a { font-weight: 600; color: var(--ink); }

/* Hamburger */
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px; margin-right: -10px;
  color: var(--white);
}
.nav-toggle svg { display: block; }

/* ---------- Mobile nav ---------- */
@media (max-width: 1120px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 88px 0 0 0; background: var(--ink);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem var(--gutter) 3rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .25s ease;
    visibility: hidden;
  }
  .nav[data-open="true"] { transform: translateX(0); visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__link { font-size: 1.1rem; padding: .95rem .2rem; border-bottom: 1px solid rgba(255,255,255,.08); justify-content: space-between; }
  .nav__cta { margin: 1rem 0 0; justify-content: center; text-align: center; font-size: 1.05rem; padding: 1rem; }
  .nav__item--has-menu { position: static; }
  .dropdown {
    position: static; transform: none; width: 100%; opacity: 1; visibility: visible; pointer-events: auto;
    background: transparent; border: 0; box-shadow: none; display: none; padding: 0 0 .5rem .2rem;
    grid-template-columns: 1fr;
  }
  .dropdown[data-open="true"] { display: grid; transform: none; }
  .dropdown a { color: rgba(255,255,255,.8); padding: .55rem .2rem; }
  .dropdown a:hover { background: transparent; color: var(--brass); }
  .dropdown__all { border-color: rgba(255,255,255,.12); }
  .dropdown__all a { color: var(--white); }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--ink); color: var(--white); overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero__motif { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .9; }
.hero__inner { position: relative; z-index: 2; padding-block: clamp(72px, 12vw, 150px); }
.hero__eyebrow {
  font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brass); margin: 0 0 1.4rem;
}
.hero h1 {
  color: var(--white); font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 400;
  letter-spacing: -0.015em; max-width: 18ch; margin-bottom: .6em;
}
.hero__sub { font-size: clamp(1.1rem, 1.8vw, 1.4rem); line-height: 1.55; color: rgba(255,255,255,.82); max-width: 60ch; margin-bottom: 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; }

/* Page hero (inner pages) */
.page-hero { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.page-hero__motif { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .7; }
.page-hero__inner { position: relative; z-index: 2; padding-block: clamp(56px, 8vw, 104px); }
.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero .eyebrow { color: var(--brass); }
.page-hero .eyebrow::after { background: var(--brass); }
.page-hero .lead { color: rgba(255,255,255,.82); }

/* ---------- Numbered requirement cards ---------- */
.req-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); margin-top: 2.5rem; }
@media (max-width: 820px) { .req-grid { grid-template-columns: 1fr; } }
.req-card { border-top: 2px solid var(--ink); padding-top: 1.4rem; }
.req-card__num {
  font-family: var(--serif); font-size: 2.4rem; color: var(--brass); line-height: 1; display: block; margin-bottom: .6rem;
}
.req-card h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.req-card p { color: var(--text-soft); margin: 0; font-size: 1rem; }

/* Compact requirement reinforcement callout */
.req-callout {
  border: 1px solid var(--line); border-left: 3px solid var(--brass);
  background: var(--white); border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem); display: grid; gap: 1.4rem;
}
.req-callout__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 0; padding: 0; list-style: none; }
@media (max-width: 720px) { .req-callout__list { grid-template-columns: 1fr; } }
.req-callout__list li { font-size: .98rem; }
.req-callout__list .n { font-family: var(--serif); color: var(--brass); font-size: 1.4rem; display: block; margin-bottom: .15rem; }
.req-callout__list strong { display: block; }
.req-line { font-size: 1rem; color: var(--text-soft); border-left: 3px solid var(--brass); padding-left: 1rem; margin: 2rem 0; }

/* ---------- Generic prose blocks ---------- */
.prose p { max-width: var(--measure); }
.prose .lead { max-width: 64ch; }
.subhead { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); margin: 2.4rem 0 .4rem; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.2rem; }
.prose h3 { font-size: 1.3rem; margin-top: 2rem; }
.prose ol, .prose ul { max-width: var(--measure); }
.prose li { margin-bottom: .5rem; }

/* Two-column intro (label left, body right) */
.split { display: grid; grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: clamp(24px, 5vw, 72px); }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ---------- Case-type card grid ---------- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 860px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
  background: var(--paper); padding: clamp(1.3rem, 2.4vw, 1.9rem); text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; gap: .5rem; min-height: 100%;
  transition: background-color .18s ease;
}
.case-card:hover { background: var(--white); }
.case-card h3 { font-size: 1.25rem; margin: 0; display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.case-card h3 .go { font-family: var(--sans); font-size: 1rem; color: var(--brass); opacity: 0; transform: translateX(-4px); transition: opacity .18s ease, transform .18s ease; }
.case-card:hover h3 .go { opacity: 1; transform: translateX(0); }
.case-card p { margin: 0; color: var(--text-soft); font-size: .96rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink-2); color: var(--white); position: relative; overflow: hidden; }
.cta-band__motif { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.cta-band__inner { position: relative; z-index: 2; text-align: center; padding-block: clamp(64px, 9vw, 110px); }
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3rem); max-width: 20ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.82); font-size: 1.2rem; max-width: 46ch; margin: 0 auto 2rem; }

/* ---------- Attorney grid ---------- */
.atty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 44px); }
@media (max-width: 880px) { .atty-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .atty-grid { grid-template-columns: 1fr; } }
.atty-card { display: flex; flex-direction: column; }
.atty-card__photo {
  aspect-ratio: 4 / 5; width: 100%; object-fit: cover; object-position: center top;
  background: var(--ink-2); border-radius: var(--radius);
  filter: grayscale(100%) contrast(1.02); transition: filter .3s ease;
}
.atty-card:hover .atty-card__photo { filter: grayscale(0%); }
.atty-card__name { font-family: var(--serif); font-size: 1.3rem; margin: 1rem 0 .1rem; }
.atty-card__role { font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-deep); margin: 0 0 .7rem; }
.atty-card__bio { color: var(--text-soft); font-size: .96rem; margin: 0 0 .9rem; }
.atty-card__link { margin-top: auto; }

/* ---------- Fee cards ---------- */
.fee-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 36px); }
@media (max-width: 760px) { .fee-grid { grid-template-columns: 1fr; } }
.fee-card { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--brass); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); }
.fee-card h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.fee-card p { color: var(--text-soft); margin: 0; }
.note-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); margin-top: 1.6rem; }
.note-block h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.note-block p:last-child { margin-bottom: 0; }

/* ---------- "Cases we don't take" list ---------- */
.dont-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 2rem; list-style: none; padding: 0; max-width: 640px; }
@media (max-width: 560px) { .dont-list { grid-template-columns: 1fr; } }
.dont-list li { border-bottom: 1px solid var(--line); padding: .7rem 0; font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.dont-list li span { display: block; font-family: var(--sans); font-size: .9rem; color: var(--text-soft); }

/* ---------- Qualifier ---------- */
.qualifier { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.6rem); }
.q-block { padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.q-block:first-of-type { padding-top: 0; }
.q-block__q { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); margin-bottom: .9rem; display: flex; gap: .7rem; align-items: baseline; }
.q-block__q .qn { color: var(--brass); font-size: 1rem; }
.q-options { display: flex; flex-wrap: wrap; gap: .6rem; }
.q-opt {
  font-family: var(--sans); font-weight: 500; font-size: .98rem;
  padding: .65rem 1.3rem; border: 1.5px solid var(--line); background: var(--paper);
  border-radius: 999px; cursor: pointer; color: var(--text);
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.q-opt:hover { border-color: var(--text-soft); }
.q-opt[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }
.q-result { margin-top: 1.6rem; padding: 1.2rem 1.3rem; border-radius: var(--radius); font-size: 1.02rem; display: none; }
.q-result[data-show="true"] { display: block; }
.q-result--go { background: #EAF1ED; border: 1px solid #BCD3C4; color: #1d3b2a; }
.q-result--maybe { background: #FBF4E6; border: 1px solid #E6D2A8; color: #5a4720; }
.q-result--no { background: #F4F0EB; border: 1px solid var(--line); color: var(--text); }
.q-result a { color: inherit; font-weight: 600; }

/* ---------- Form ---------- */
.lead-form { margin-top: 2.5rem; display: none; }
.lead-form[data-show="true"] { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.5rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--sans); font-weight: 600; font-size: .9rem; color: var(--ink); }
.field label .req { color: var(--brass-deep); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--text);
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--white); width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--steel); outline-offset: 1px; border-color: var(--steel); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-actions { margin-top: 1.6rem; }
.form-note { font-size: .85rem; color: var(--text-soft); max-width: 60ch; margin-top: 1rem; }

/* ---------- Offices block ---------- */
.offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 700px) { .offices { grid-template-columns: 1fr; } }
.office h3 { font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: .35rem; }
.office a { color: var(--ink); text-decoration: none; font-size: 1.1rem; }
.office a:hover { color: var(--brass-deep); }

/* ---------- Focus visibility ---------- */
:focus-visible { outline: 2px solid var(--steel); outline-offset: 2px; border-radius: 2px; }
.site-header :focus-visible, .hero :focus-visible, .cta-band :focus-visible, .site-footer :focus-visible { outline-color: var(--brass); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding-block: clamp(56px, 7vw, 88px) 2.5rem; font-size: .95rem; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 5vw, 64px); padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 52px; width: auto; margin-bottom: 1rem; }
.footer-brand p { max-width: 40ch; color: rgba(255,255,255,.7); }
.footer-offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 620px) { .footer-offices { grid-template-columns: 1fr; } }
.footer-offices h4 { font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin: 0 0 .4rem; }
.footer-offices a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-offices a:hover { color: var(--brass); }
.footer-nav { display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.12); list-style: none; margin: 0; }
.footer-nav a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .92rem; }
.footer-nav a:hover { color: var(--brass); }
.footer-legal { padding-top: 2rem; display: grid; gap: 1.1rem; }
.footer-legal .advert { color: rgba(255,255,255,.55); font-size: .82rem; max-width: 90ch; line-height: 1.6; }
.footer-legal__links { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; list-style: none; margin: 0; padding: 0; font-size: .85rem; }
.footer-legal__links a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-legal__links a:hover { color: var(--brass); }
.footer-legal__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; color: rgba(255,255,255,.55); font-size: .82rem; }
.footer-legal__bottom a { color: rgba(255,255,255,.75); }

/* ---------- Misc ---------- */
.crosslinks { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.callout-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 2rem); margin: 1.8rem 0; }
.callout-box .eyebrow { margin-bottom: .6rem; }
.callout-box p:last-child { margin-bottom: 0; }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.error-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.5rem; }
