/*
 * RFAQ Study Pages — Shared Stylesheet
 * Dark theme matching the rest of rightfidelity.ai (longevity, PJM, PFAS,
 * wildfire-insurance, ocean-acoustics).
 *
 * Element class names are preserved from the prior academic stylesheet so
 * existing HTML doesn't have to change — only the painted values flip from
 * cream/Charter to dark/Outfit-Fraunces.
 */

:root {
  --bg-deep:        #060A12;
  --bg-primary:     #0B1120;
  --bg-raised:      #101828;
  --bg-card:        #131D2E;
  --bg-card-hover:  #182438;
  --text-primary:   #E2E8F4;
  --text-secondary: #8896B3;
  --text-muted:     #7A8BA3;
  --accent:         #6E9EFF;
  --accent-light:   #93B8FF;
  --accent-dim:     rgba(110,158,255,0.15);
  --gold:           #D4A55A;
  --gold-light:     #E4BD7A;
  --green:          #5ABD8C;
  --rose:           #D47B8A;
  --red:            #E87979;
  --violet:         #9B7ED8;
  --teal:           #4ECDC4;
  --border:         rgba(255,255,255,0.06);
  --border-soft:    rgba(255,255,255,0.04);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Outfit', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', 'IBM Plex Mono', ui-monospace, Menlo, Consolas, monospace;
}

/* -----------------------------------------------------------------------
   Reset & base
   ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Sticky <nav> is ~58px tall; ensure anchor jumps + scrollIntoView() land
     visible content below it instead of under it. */
  scroll-padding-top: 72px;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

/* -----------------------------------------------------------------------
   Layout
   ----------------------------------------------------------------------- */
.content-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; padding-bottom: 3rem; }

/* -----------------------------------------------------------------------
   Top nav  —  identical markup + styling to the rest of rightfidelity.ai
   so the menu doesn't change between pages.
   Scoped to direct child of body so it doesn't catch the breadcrumb
   or focus-nav element grid further down the page.
   ----------------------------------------------------------------------- */
body > nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.85rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(6, 10, 18, 0.90);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border);
}

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-deep);
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-to-content:focus { top: 0; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-mark { width: 30px; height: 30px; }
.nav-mark svg { width: 100%; height: 100%; }

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-wordmark .wm-key      { color: var(--text-primary); }
.nav-wordmark .wm-fid      { color: var(--accent); font-weight: 600; }
.nav-wordmark .wm-fidelity { color: var(--accent); font-weight: 600; }
.nav-wordmark .wm-ai {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.85em;
  margin-left: 0.15em;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover         { color: var(--text-primary); }
.nav-links a.nav-active    { color: var(--text-primary); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--bg-deep) !important;
  padding: 0.4rem 1rem !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-secondary);
  margin: 4px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

/* Push main below the fixed nav */
body.page-wrap > main { padding-top: 4.5rem; }

/* -----------------------------------------------------------------------
   Breadcrumb
   ----------------------------------------------------------------------- */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding: 1rem 0 0.6rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb span {
  margin: 0 0.4rem;
  color: var(--text-muted);
  opacity: 0.55;
}

/* -----------------------------------------------------------------------
   Hero
   ----------------------------------------------------------------------- */
.hero {
  padding: 1.5rem 0 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.005em;
  margin-bottom: 1.25rem;
}

.hero-heading em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}

.hero-metric {
  display: inline-block;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.55rem 0.9rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 680px;
}

/* -----------------------------------------------------------------------
   Dashboard cross-link
   ----------------------------------------------------------------------- */
.dashboard-cta {
  margin: 0 0 2rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.dashboard-cta a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.dashboard-cta a:hover { color: var(--accent-light); }

/* -----------------------------------------------------------------------
   Section labels (h2)
   ----------------------------------------------------------------------- */
.section-label {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2.75rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.005em;
}

.section-label em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}

/* -----------------------------------------------------------------------
   Body text
   ----------------------------------------------------------------------- */
p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

p + p { margin-top: 0; }

main p strong { color: var(--text-primary); font-weight: 600; }

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(110, 158, 255, 0.3);
  text-underline-offset: 2px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

a:hover {
  color: var(--accent-light);
  text-decoration-color: var(--accent-light);
}

strong { font-weight: 600; color: var(--text-primary); }
em { font-style: italic; }

ul, ol { margin: 0.5rem 0 1.25rem 1.4rem; color: var(--text-secondary); }
li { margin-bottom: 0.4rem; line-height: 1.7; }
li strong { color: var(--text-primary); }

sub, sup { color: inherit; }

/* -----------------------------------------------------------------------
   Finding cards
   ----------------------------------------------------------------------- */
.finding {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
  margin: 1.25rem 0 1.5rem;
}

.finding-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.005em;
}

.finding p {
  font-size: 0.96rem;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.finding p:last-child { margin-bottom: 0; }

/* -----------------------------------------------------------------------
   Figures / images
   ----------------------------------------------------------------------- */
figure {
  margin: 1.75rem 0 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
}

figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  background: #fff; /* plots typically have white backgrounds */
}

.fig-cap {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.55;
}

.fig-cap strong { color: var(--text-secondary); }

/* -----------------------------------------------------------------------
   Caveat list
   ----------------------------------------------------------------------- */
.caveat-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.25rem;
}

.caveat-list li {
  padding: 0.65rem 0 0.65rem 2rem;
  position: relative;
  font-size: 0.94rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  margin-bottom: 0;
}

.caveat-list li:last-child { border-bottom: none; }

.caveat-list li::before {
  content: "!";
  position: absolute;
  left: 0.4rem;
  top: 0.85rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--bg-deep);
  background: var(--gold);
  border-radius: 50%;
  width: 1.05rem;
  height: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.caveat-list li strong { color: var(--text-primary); }

/* -----------------------------------------------------------------------
   Provenance / data tables
   ----------------------------------------------------------------------- */
.prov-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  font-family: var(--font-body);
  margin: 0.75rem 0 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.prov-table caption {
  caption-side: top;
  text-align: left;
  padding: 0.6rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.prov-table th {
  text-align: left;
  padding: 0.65rem 0.9rem;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--text-muted);
}

.prov-table td {
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
  color: var(--text-secondary);
}

.prov-table td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

.prov-table tr:last-child td { border-bottom: none; }

.prov-table tr:hover td { background: rgba(110, 158, 255, 0.03); }

.prov-table .tier-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tier-1 { background: var(--accent); color: var(--bg-deep); }
.tier-2 { background: var(--gold); color: var(--bg-deep); }
.tier-3 { background: var(--bg-raised); color: var(--text-muted); border: 1px solid var(--border); }

/* -----------------------------------------------------------------------
   Reviewer callout
   ----------------------------------------------------------------------- */
.reviewer-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 1.1rem 1.35rem;
  margin: 1.75rem 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.reviewer-callout strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 0.96rem;
  font-weight: 600;
}

.reviewer-callout p { margin-bottom: 0.6rem; color: var(--text-secondary); }
.reviewer-callout p:last-child { margin-bottom: 0; }
.reviewer-callout ul { margin: 0.5rem 0 0 1.2rem; padding: 0; color: var(--text-secondary); }
.reviewer-callout li { margin-bottom: 0.45rem; }
.reviewer-callout a { color: var(--accent); }
.reviewer-callout a:hover { color: var(--accent-light); }

/* -----------------------------------------------------------------------
   Inline code
   ----------------------------------------------------------------------- */
code {
  font-family: var(--font-mono);
  font-size: 0.86em;
  background: rgba(110, 158, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  white-space: nowrap;
}

pre code {
  display: block;
  white-space: pre;
  padding: 0.85rem 1rem;
  overflow-x: auto;
  border-radius: 8px;
  background: var(--bg-raised);
}

/* -----------------------------------------------------------------------
   Focus area index navigation (hub element cards)
   ----------------------------------------------------------------------- */
.focus-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1rem 0 2rem;
}

@media (min-width: 720px) {
  .focus-nav { grid-template-columns: repeat(2, 1fr); }
}

.focus-nav-item {
  display: block;
  padding: 1.1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  font-family: var(--font-body);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.focus-nav-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(110, 158, 255, 0.25);
  transform: translateY(-2px);
}

.focus-nav-item .focus-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.35rem;
}

.focus-nav-item .focus-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}

.focus-nav-item .focus-headline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: block;
}

/* -----------------------------------------------------------------------
   Investigation cards  —  used on element pages instead of dense tables.
   Mirrors the longevity / PJM / wildfire-insurance .inv-card pattern.
   ----------------------------------------------------------------------- */
.inv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1rem 0 2rem;
}

@media (min-width: 720px) {
  .inv-grid { grid-template-columns: repeat(2, 1fr); }
}

.inv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.inv-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(110, 158, 255, 0.25);
  transform: translateY(-2px);
  text-decoration: none;
}

.inv-card .inv-number {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
}

.inv-card .inv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent);
}

.inv-card .inv-dot.tier-1 { background: var(--accent); }
.inv-card .inv-dot.tier-2 { background: var(--gold); }
.inv-card .inv-dot.tier-3 { background: var(--text-muted); }

.inv-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  line-height: 1.3;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.inv-card .inv-finding {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0.85rem;
}

.inv-card .inv-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  gap: 0.75rem;
}

.inv-card .inv-method,
.inv-card .inv-result {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inv-card .inv-method { color: var(--text-muted); }
.inv-card .inv-result {
  color: var(--accent);
  font-weight: 600;
  text-align: right;
}

/* -----------------------------------------------------------------------
   Element page reference card (compact rows)
   ----------------------------------------------------------------------- */
.element-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.element-cta a { color: var(--accent); font-weight: 500; }

/* -----------------------------------------------------------------------
   Hero metric (alternate as a span inline with hero-lead)
   ----------------------------------------------------------------------- */
span.hero-metric {
  display: inline-block;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.45rem 0.75rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

/* -----------------------------------------------------------------------
   Site footer (matches marketing site)
   ----------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-deep);
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  padding: 2.5rem 0 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-align: center;
}

.site-footer .content-wrap {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.site-footer .footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 300;
}

.site-footer .footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer .footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.site-footer .footer-links a:hover { color: var(--accent); }

.site-footer .footer-info,
.site-footer .footer-legal {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.site-footer .footer-info a {
  color: var(--accent);
  text-decoration: none;
}

.site-footer .footer-info a:hover { text-decoration: underline; }

.site-footer .repro-note {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--accent);
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  text-align: left;
  max-width: 720px;
  width: 100%;
}

.site-footer a { color: var(--accent); }

/* -----------------------------------------------------------------------
   Aside / generic callout fallback
   ----------------------------------------------------------------------- */
aside {
  color: var(--text-secondary);
}

/* -----------------------------------------------------------------------
   Selection
   ----------------------------------------------------------------------- */
::selection {
  background: rgba(110, 158, 255, 0.25);
  color: var(--text-primary);
}

/* -----------------------------------------------------------------------
   Responsive
   ----------------------------------------------------------------------- */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(6, 10, 18, 0.97);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
}

@media (max-width: 640px) {
  .content-wrap { padding: 0 1.1rem; }
  .hero-heading { font-size: 1.5rem; }
  .section-label { font-size: 1.2rem; }
  .prov-table { font-size: 0.8rem; }
  .prov-table th,
  .prov-table td { padding: 0.45rem 0.55rem; }
  .focus-nav-item { padding: 0.95rem 1rem; }
}

/* -----------------------------------------------------------------------
   Print: revert to readable monochrome (CEC packet PDF)
   ----------------------------------------------------------------------- */
@media print {
  body {
    background: #fff;
    color: #1a1a1a;
    font-size: 11pt;
  }
  /* Hide site chrome — both old (.site-header) and new (top-level <nav>) markup */
  body > nav,
  .site-header,
  .site-footer,
  .breadcrumb,
  .skip-to-content,
  .menu-toggle {
    display: none !important;
  }
  /* Push main back up since the fixed-nav padding-top is no longer needed */
  body.page-wrap > main { padding-top: 0; }

  a { color: #2c5282; text-decoration: underline; }
  /* No URL trailers after every link — too noisy for a printed packet */

  .hero,
  .finding,
  .reviewer-callout,
  .focus-nav-item,
  .inv-card,
  .prov-table,
  figure {
    background: #fff;
    border-color: #d0d0d0;
    color: #1a1a1a;
    page-break-inside: avoid;
  }
  .hero-heading, .section-label, .finding-title,
  strong, p strong,
  .focus-nav-item .focus-title,
  .inv-card h3 {
    color: #1a1a1a;
  }
  p, .hero-lead, .fig-cap,
  .focus-nav-item .focus-headline,
  .inv-card .inv-finding,
  .reviewer-callout, .reviewer-callout p {
    color: #333;
  }
  .hero-eyebrow,
  .focus-nav-item .focus-number,
  .inv-card .inv-number {
    color: #744210;
  }
  .hero-metric {
    background: #744210;
    color: #fff;
    border: none;
  }
  .hero-heading { font-size: 16pt; }
  .section-label { font-size: 13pt; }
  /* Element grids and inv-card grids stack one column for narrow print */
  .focus-nav, .inv-grid {
    display: block;
  }
  .focus-nav-item, .inv-card {
    margin-bottom: 0.5rem;
    transform: none !important;
  }
}
