:root {
  --ink: #18342d;
  --ink-2: #294b42;
  --paper: #fffdf7;
  --paper-warm: #f4edde;
  --paper-tint: #e8efea;
  --moss: #597362;
  --sage: #a8b7a7;
  --rust: #a64f32;
  --rust-dark: #7e3825;
  --gold: #e3b35e;
  --sand: #d8c69a;
  --line: rgba(24, 52, 45, .16);
  --shadow: 0 24px 70px rgba(21, 46, 39, .11);
  --radius: 24px;
  --wrap: min(1180px, calc(100% - 40px));
  --serif: Georgia, 'Times New Roman', serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.67;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.wrap { width: var(--wrap); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 247, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(24, 52, 45, .06); }
.header-inner {
  width: var(--wrap);
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.15;
}
.brand strong { display: block; font-family: var(--serif); font-size: 17px; }
.brand small { display: block; margin-top: 3px; color: var(--moss); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--ink); }
.brand-mark svg { width: 29px; fill: var(--sand); }
.brand-mark .road { fill: none; stroke: var(--gold); stroke-width: 3; stroke-linecap: round; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: var(--ink-2); text-decoration: none; font-size: 14px; font-weight: 800; letter-spacing: .02em; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--rust); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--paper-warm); cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.hero { overflow: hidden; padding: 74px 0 52px; background: linear-gradient(180deg, #f7f2e7 0%, var(--paper) 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr); align-items: center; gap: 54px; }
.eyebrow, .section-kicker { margin: 0 0 18px; color: var(--rust); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.hero h1, h2 { font-family: var(--serif); letter-spacing: -.035em; line-height: 1.02; }
.hero h1 { max-width: 750px; margin: 0; font-size: clamp(3.4rem, 7vw, 6.9rem); font-weight: 700; }
.hero-deck { max-width: 720px; margin: 27px 0 0; color: #4d625b; font-family: var(--serif); font-size: clamp(1.22rem, 2vw, 1.55rem); line-height: 1.48; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 850; }
.button-primary { background: var(--ink); color: var(--paper); box-shadow: 0 10px 26px rgba(24, 52, 45, .18); }
.button-primary:hover { background: var(--rust-dark); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.62); color: var(--ink); }
.button-secondary:hover { border-color: var(--rust); color: var(--rust); }
.fact-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 44px 0 0; padding: 0; border-top: 1px solid var(--line); }
.fact-row div { padding: 18px 15px 0 0; }
.fact-row dt { font-family: var(--serif); font-size: 22px; font-weight: 800; }
.fact-row dd { margin: 3px 0 0; color: var(--moss); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; line-height: 1.35; }
.hero-art { position: relative; }
.hero-art::after { content: ''; position: absolute; inset: 9% 7% 2% 10%; z-index: -1; border-radius: 44px; background: var(--sand); filter: blur(28px); opacity: .25; }

.status-strip { background: var(--ink); color: #f8f3e7; }
.status-inner { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; }
.status-inner p { margin: 0; color: #dbe4df; font-size: 14px; line-height: 1.45; }
.status-title { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-size: 14px; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #83c88c; box-shadow: 0 0 0 6px rgba(131, 200, 140, .14); }
.status-inner a { color: var(--gold); font-size: 13px; font-weight: 850; text-decoration: none; white-space: nowrap; }
.status-inner a:hover { text-decoration: underline; }

.section { padding: 112px 0; }
.section-tint { background: var(--paper-tint); }
.section-dark { background: var(--ink); color: #f7f1e4; }
.section-questions { background: #f1e5d5; }
.narrow-intro { max-width: 900px; text-align: center; }
h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.8rem); }
.lead { max-width: 800px; margin: 28px auto 0; color: #52655f; font-family: var(--serif); font-size: 22px; line-height: 1.55; }
h3 { line-height: 1.22; }

.segment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.segment-card { min-height: 330px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fffefa; display: flex; flex-direction: column; box-shadow: 0 12px 36px rgba(24, 52, 45, .045); }
.segment-card.featured { background: var(--ink); color: var(--paper); transform: translateY(-14px); box-shadow: var(--shadow); }
.segment-number { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; background: var(--paper-warm); color: var(--rust); font-family: var(--serif); font-weight: 800; }
.featured .segment-number { background: rgba(255,255,255,.1); color: var(--gold); }
.segment-label { margin: 34px 0 6px; color: var(--rust); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.featured .segment-label { color: var(--gold); }
.segment-card h3 { margin: 0; font-family: var(--serif); font-size: 27px; }
.segment-card p:not(.segment-label) { color: #52665f; font-size: 15px; }
.featured p:not(.segment-label) { color: #d7e1dc; }
.pill { align-self: flex-start; margin-top: auto; padding: 7px 11px; border-radius: 999px; background: var(--paper-warm); color: var(--ink); font-size: 11px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.featured .pill { background: rgba(227,179,94,.14); color: var(--gold); }

.route-figure { margin-top: 70px; }
.route-figure img { width: 100%; border-radius: 28px; box-shadow: var(--shadow); }
.route-figure figcaption { max-width: 900px; margin: 18px auto 0; color: #66736e; font-size: 13px; text-align: center; }
.cite { display: inline-grid; min-width: 28px; height: 24px; place-items: center; margin-left: 3px; padding: 0 5px; border-radius: 6px; background: #e9dfca; color: var(--rust-dark); text-decoration: none; font-size: 10px; font-weight: 900; line-height: 1; vertical-align: .1em; }
.cite:hover, .cite:focus-visible { background: var(--gold); color: var(--ink); }
.light-cite { background: rgba(255,255,255,.12); color: var(--gold); }
.light-cite:hover { background: var(--gold); color: var(--ink); }
.evidence-callout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; margin-top: 64px; padding: 42px; border-left: 7px solid var(--rust); border-radius: 0 var(--radius) var(--radius) 0; background: var(--paper-warm); }
.evidence-callout h3 { max-width: 440px; margin: 0; font-family: var(--serif); font-size: 33px; }
.evidence-callout > p { margin: 0; color: #435b53; }

.two-column-heading { display: grid; grid-template-columns: 1.02fr .78fr; align-items: end; gap: 70px; margin-bottom: 50px; }
.two-column-heading > p { margin: 0 0 5px; color: #60716b; font-family: var(--serif); font-size: 20px; }
.two-column-heading.light > p { color: #c7d5cf; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.comparison-card { position: relative; padding: 42px; border: 1px solid rgba(24,52,45,.12); border-radius: var(--radius); background: rgba(255,253,247,.78); }
.comparison-card.emphasized { background: var(--paper); box-shadow: var(--shadow); }
.comparison-icon { position: absolute; right: 28px; top: 24px; color: rgba(24,52,45,.08); font-family: var(--serif); font-size: 84px; font-weight: 900; line-height: 1; }
.comparison-card h3 { max-width: 450px; margin: 0 0 20px; font-family: var(--serif); font-size: 31px; }
.comparison-card p { color: #4e625b; }
.note { color: #697671 !important; font-size: 14px !important; }
.text-link, .archive-link { color: var(--rust-dark); font-weight: 850; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.timeline { position: relative; max-width: 1000px; }
.timeline::before { content: ''; position: absolute; left: 155px; top: 4px; bottom: 4px; width: 1px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 126px 1fr; gap: 58px; padding: 0 0 58px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: 148px; top: 8px; width: 15px; height: 15px; border: 3px solid var(--paper); border-radius: 50%; background: var(--moss); box-shadow: 0 0 0 1px var(--line); }
.timeline-item.key-date::before { background: var(--rust); }
.timeline-item.discrepancy::before { background: var(--gold); }
.timeline-item time { padding-top: 2px; color: var(--rust); font-family: var(--serif); font-size: 18px; font-weight: 900; text-align: right; }
.timeline-item h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 29px; }
.timeline-item p { margin: 0 0 14px; color: #50635c; }
.archive-link { display: inline-block; margin-top: 5px; font-size: 14px; }

.jurisdiction-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.14); }
.jurisdiction-grid article { padding: 40px; background: var(--ink); }
.jurisdiction-number { display: inline-grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: rgba(227,179,94,.13); color: var(--gold); font-family: var(--serif); font-weight: 900; }
.jurisdiction-grid h3 { margin: 24px 0 15px; font-family: var(--serif); font-size: 29px; }
.jurisdiction-grid p { color: #d1ddd7; }
.jurisdiction-caveat { padding-left: 16px; border-left: 3px solid var(--gold); color: #aebfb8 !important; font-size: 14px; }
.buckingham-note { display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; margin-top: 36px; padding: 32px 38px; border-radius: var(--radius); background: rgba(255,255,255,.07); }
.monogram { width: 76px; height: 76px; display: grid; place-items: center; border: 1px solid rgba(227,179,94,.4); border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: 24px; font-weight: 900; }
.buckingham-note h3 { margin: 0; font-family: var(--serif); font-size: 28px; }
.buckingham-note p { margin: 8px 0 0; color: #cbd8d2; }

.access-history-card { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: #fffefa; box-shadow: 0 12px 35px rgba(24,52,45,.05); }
.access-history-card h3 { margin: 0 0 24px; font-family: var(--serif); font-size: 30px; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--moss); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
td:first-child { width: 150px; color: var(--rust-dark); font-family: var(--serif); font-weight: 900; }
td:last-child { width: 130px; }
.confidence { display: inline-block; padding: 5px 8px; border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.confidence.high { background: #dcebdc; color: #31593a; }
.confidence.medium { background: #f0e3c6; color: #765a26; }
.current-access-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.access-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-warm); }
.access-card:nth-child(2) { background: var(--paper-tint); }
.access-card:nth-child(3) { background: #efe6d9; }
.access-card-head { display: flex; align-items: center; gap: 15px; margin-bottom: 22px; }
.access-card-head > span { font-size: 32px; }
.access-card-head p { margin: 0; color: var(--rust); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.access-card-head h3 { margin: 0; font-family: var(--serif); font-size: 27px; }
.access-card > p, .access-card li { color: #4c6159; font-size: 15px; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 0 0 10px 24px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--rust); font-weight: 900; }
.accessibility-panel { display: grid; grid-template-columns: .8fr 1.1fr; gap: 48px; margin-top: 28px; padding: 40px; border-radius: var(--radius); background: var(--ink); color: var(--paper); }
.accessibility-panel h3 { margin: 0; font-family: var(--serif); font-size: 32px; }
.accessibility-panel ul { columns: 2; margin: 0; padding-left: 21px; color: #d4e0da; }
.accessibility-panel .note { grid-column: 2; margin: 0; color: #aebfb7 !important; }

.centered-heading { max-width: 880px; text-align: center; }
.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.fact-grid article { min-height: 270px; padding: 30px; border: 1px solid rgba(24,52,45,.11); border-radius: var(--radius); background: rgba(255,253,247,.85); }
.fact-grid article > span { color: var(--rust); font-family: var(--serif); font-size: 18px; font-weight: 900; }
.fact-grid h3 { margin: 28px 0 12px; font-family: var(--serif); font-size: 25px; }
.fact-grid p { margin: 0; color: #52665e; font-size: 15px; }

.conclusion-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.conclusion-copy { padding: 8px 0 8px 35px; border-left: 1px solid var(--line); }
.conclusion-copy p { margin-top: 0; color: #475e56; font-family: var(--serif); font-size: 21px; line-height: 1.65; }
.question-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.question-grid article { padding: 30px; border-radius: var(--radius); background: rgba(255,253,247,.72); }
.question-grid h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 25px; }
.question-grid p { margin: 0; color: #5a665e; }

.sources-section { background: #f9f6ee; }
.source-tools { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button, .print-button { min-height: 40px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); font-size: 12px; font-weight: 850; cursor: pointer; }
.filter-button:hover, .filter-button.active { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.print-button { background: var(--paper); }
.print-button:hover { border-color: var(--rust); color: var(--rust); }
.source-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.source-card { min-height: 285px; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; scroll-margin-top: 100px; }
.source-card:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(24,52,45,.08); }
.source-card.is-hidden { display: none; }
.source-card:target { outline: 4px solid rgba(227,179,94,.55); outline-offset: 4px; }
.source-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--rust); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.source-card h3 { margin: 28px 0 10px; font-family: var(--serif); font-size: 23px; }
.source-card p { margin: 0 0 20px; color: #5c6c66; font-size: 14px; }
.source-card > a { margin-top: auto; color: var(--rust-dark); font-size: 13px; font-weight: 900; text-underline-offset: 4px; }

.method-section { padding: 78px 0; background: var(--paper-warm); }
.method-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.method-grid h2 { font-size: clamp(2.3rem, 4vw, 3.7rem); }
.method-grid p { color: #52645d; }
.site-footer { padding: 45px 0; background: #102921; color: #d8e3dd; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; }
.site-footer strong { color: var(--paper); font-family: var(--serif); font-size: 20px; }
.site-footer p { max-width: 620px; margin: 7px 0 0; font-size: 13px; }
.site-footer a { color: var(--gold); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr .8fr; gap: 26px; }
  .hero h1 { font-size: clamp(3.2rem, 7vw, 5.5rem); }
  .segment-grid { grid-template-columns: repeat(2, 1fr); }
  .segment-card.featured { transform: none; }
  .current-access-grid { grid-template-columns: 1fr 1fr; }
  .current-access-grid .parking { grid-column: span 2; }
  .source-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --wrap: min(100% - 30px, 720px); }
  html { scroll-padding-top: 80px; }
  body { font-size: 16px; }
  .site-header { background: rgba(255,253,247,.96); }
  .menu-button { display: block; }
  .site-nav { position: absolute; left: 15px; right: 15px; top: calc(100% + 8px); display: none; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); box-shadow: var(--shadow); }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 10px 12px; }
  .menu-button[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
  .hero { padding-top: 52px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-art { max-width: 560px; margin: -15px auto -40px; opacity: .92; }
  .fact-row { grid-template-columns: repeat(2, 1fr); }
  .status-inner { grid-template-columns: 1fr; gap: 8px; padding-block: 18px; }
  .status-inner a { justify-self: start; }
  .section { padding: 82px 0; }
  .two-column-heading, .comparison-grid, .evidence-callout, .conclusion-grid, .method-grid { grid-template-columns: 1fr; gap: 30px; }
  .two-column-heading { margin-bottom: 38px; }
  .two-column-heading > p { font-size: 18px; }
  .evidence-callout { padding: 32px; }
  .timeline::before { left: 12px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; padding-left: 43px; }
  .timeline-item::before { left: 5px; }
  .timeline-item time { text-align: left; }
  .jurisdiction-grid { grid-template-columns: 1fr; }
  .accessibility-panel { grid-template-columns: 1fr; }
  .accessibility-panel .note { grid-column: auto; }
  .accessibility-panel ul { columns: 1; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .conclusion-copy { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 590px) {
  :root { --wrap: min(100% - 24px, 540px); }
  .header-inner { min-height: 68px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 9px; }
  .brand-mark { width: 36px; height: 36px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-deck { font-size: 19px; }
  .hero-actions .button { width: 100%; }
  .hero-art { margin-top: -35px; }
  .segment-grid, .current-access-grid, .fact-grid, .question-grid, .source-grid { grid-template-columns: 1fr; }
  .current-access-grid .parking { grid-column: auto; }
  .segment-card { min-height: auto; }
  .route-figure { width: 100%; }
  .route-figure img { border-radius: 0; }
  .comparison-card, .access-history-card, .access-card, .accessibility-panel, .question-grid article { padding: 25px; }
  .timeline-item h3 { font-size: 25px; }
  .jurisdiction-grid article { padding: 28px; }
  .buckingham-note { grid-template-columns: 1fr; padding: 28px; }
  .source-tools { align-items: flex-start; flex-direction: column; }
}

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

@media print {
  :root { --paper: #fff; --ink: #111; }
  body { color: #111; background: #fff; font-size: 11pt; }
  .site-header, .hero-actions, .status-strip, .source-tools, .site-footer, .menu-button { display: none !important; }
  .hero, .section, .method-section { padding: 30px 0; background: #fff !important; color: #111 !important; }
  .hero-grid, .two-column-heading, .comparison-grid, .evidence-callout, .conclusion-grid, .method-grid { display: block; }
  .hero-art { display: none; }
  .hero h1 { font-size: 42pt; }
  h2 { font-size: 30pt; }
  .segment-grid, .jurisdiction-grid, .current-access-grid, .fact-grid, .question-grid, .source-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .segment-card, .comparison-card, .jurisdiction-grid article, .access-card, .fact-grid article, .question-grid article, .source-card { break-inside: avoid; color: #111 !important; background: #fff !important; box-shadow: none !important; }
  .segment-card p, .jurisdiction-grid p, .access-card p, .source-card p { color: #333 !important; }
  a { color: #111; text-decoration: underline; }
  .cite { border: 1px solid #777; background: transparent; }
  .source-card.is-hidden { display: flex; }
}
