/* =============================================================
   MKFE — MKennedy Forensic Experts
   Design system: authority-grade forensic-CPA / expert-witness site
   Palette: deep navy (trust / finance / law) + restrained bronze
   Type: Lora (serif headlines = established expertise) + Inter (UI/body)
   Built by Logic Talk AI · v2 (10/10 pass)
   ============================================================= */

:root {
  --navy:        #0e2a47;   /* primary — authority */
  --navy-deep:   #0a2038;
  --navy-soft:   #17395e;
  --bronze:      #b0894f;   /* accent — restrained, not flashy */
  --bronze-bright: #cfa963; /* accent for small text on navy — WCAG AA */
  --bronze-dark: #8f6d38;
  --bronze-tint: rgba(176,137,79,.10);
  --ink:         #1a1f26;   /* body text */
  --slate:       #556070;   /* secondary text */
  --line:        #e2ddd4;   /* hairlines */
  --paper:       #f7f5f1;   /* warm off-white bg */
  --paper-2:     #ffffff;
  --paper-3:     #eef0f3;   /* cool panel */
  --ok:          #1f7a4d;
  --err:         #b23b3b;
  --maxw:        1140px;
  --shadow:      0 1px 3px rgba(14,42,71,.06), 0 8px 30px rgba(14,42,71,.07);
  --shadow-md:   0 4px 14px rgba(14,42,71,.10), 0 14px 40px rgba(14,42,71,.10);
  --shadow-lg:   0 20px 60px rgba(14,42,71,.16);
  --radius:      12px;
  --radius-sm:   8px;
  --serif:       'Lora', Georgia, 'Times New Roman', serif;
  --sans:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ease:        cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a, button { -webkit-tap-highlight-color: transparent; }
.btn, .faq__q, .nav__toggle, .nav__links a { touch-action: manipulation; }
a { color: var(--navy); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--bronze-dark); }
::selection { background: rgba(176,137,79,.24); }

h1,h2,h3,h4 { font-family: var(--serif); color: var(--navy); line-height: 1.16; font-weight: 600; margin: 0 0 .5em; letter-spacing: -.011em; }
h1 { font-size: clamp(2.15rem, 4.4vw, 3.35rem); }
h2 { font-size: clamp(1.62rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.02rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: .08em; color: var(--bronze-dark); font-weight: 700; }
p { margin: 0 0 1.1em; }
.lead { font-size: 1.22rem; color: var(--slate); line-height: 1.6; }
.eyebrow { font-family: var(--sans); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 700; color: var(--bronze-dark); margin-bottom: 1rem; }
.eyebrow--onnavy { color: var(--bronze-bright); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 58px 0; }
.section--paper2 { background: var(--paper-2); }
.section--cool { background: var(--paper-3); }
.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* Focus visibility — accessibility non-negotiable */
:focus-visible { outline: 3px solid var(--bronze); outline-offset: 2px; border-radius: 3px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0; z-index: 100; }
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--sans); font-weight: 600; font-size: 1rem; padding: 14px 26px; border-radius: var(--radius-sm); border: 1.5px solid transparent; cursor: pointer; transition: transform .12s var(--ease), box-shadow .2s ease, background .2s ease; text-align: center; }
.btn--primary { background: var(--bronze); color: #fff; box-shadow: 0 2px 10px rgba(176,137,79,.24); }
.btn--primary:hover { background: var(--bronze-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(176,137,79,.36); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--bronze); color: var(--bronze-dark); transform: translateY(-1px); }
.btn--onnavy { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--onnavy:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Renovation notice (temporary — remove with the HTML block at launch) ---------- */
.notice-bar { background: #f3ead9; color: #7a5c2f; border-bottom: 1px solid rgba(176,137,79,.28); text-align: center; font-family: var(--sans); font-size: .85rem; padding: 9px 18px; }
.notice-bar a { color: #7a5c2f; font-weight: 600; text-decoration: underline; }
.notice-bar a:hover { color: var(--navy); }

/* ---------- Header / Nav ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(247,245,241,.9); backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }
.brand { display: flex; align-items: baseline; gap: .55rem; font-family: var(--serif); }
.brand__mark { font-size: 1.38rem; font-weight: 700; color: var(--navy); letter-spacing: .02em; }
.brand__mark b { color: var(--bronze-dark); }
.brand__sub { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); }
.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav__links a { font-family: var(--sans); font-weight: 500; font-size: .97rem; color: var(--navy); }
.nav__links a.active { color: var(--bronze-dark); }
.nav__links a.btn.active { color: #fff; } /* active-state color must not wash out the CTA button on its own page */
.nav__cta-sm { display: none; } /* compact header CTA — mobile only */
.nav__links a:not(.btn)::after { content:''; display:block; height:2px; background: var(--bronze); width:0; transition: width .2s var(--ease); }
.nav__links a:not(.btn):hover::after, .nav__links a.active:not(.btn)::after { width: 100%; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(158deg, var(--navy) 0%, var(--navy-deep) 72%); color: #eaf0f7; position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(120% 100% at 70% 0%, #000 30%, transparent 75%); -webkit-mask-image: radial-gradient(120% 100% at 70% 0%, #000 30%, transparent 75%); pointer-events:none; }
.hero::after { content:''; position:absolute; inset:0; background: radial-gradient(1100px 420px at 82% -12%, rgba(176,137,79,.20), transparent 60%); pointer-events:none; }
.hero .wrap { position: relative; z-index: 1; padding-top: 100px; padding-bottom: 100px; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lead { color: #c4d2e2; max-width: 60ch; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero__practice { margin-top: 36px; font-size: .95rem; color: #9fb2c7; letter-spacing: .01em; max-width: 70ch; }
.hero__practice b { color: var(--bronze-bright); font-weight: 600; }
.hero--sub .wrap { padding-top: 76px; padding-bottom: 76px; }

/* ---------- Credential bar ---------- */
.credbar { background: var(--navy-deep); color: #cdd8e6; border-top: 1px solid rgba(255,255,255,.08); }
.credbar .wrap { display: flex; flex-wrap: wrap; gap: 14px 38px; justify-content: center; padding: 20px 24px; font-family: var(--sans); font-size: .9rem; letter-spacing: .04em; }
.credbar span { display: inline-flex; align-items: center; gap: .5rem; }
.credbar b { color: #fff; font-weight: 600; }
.credbar .dot { color: var(--bronze); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.stat { text-align: center; padding: 30px 18px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.stat__num { font-family: var(--serif); font-size: 2.7rem; color: var(--navy); font-weight: 700; line-height: 1; }
.stat__label { font-family: var(--sans); font-size: .92rem; color: var(--slate); margin-top: 12px; }

/* ---------- Cards / grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); transition: transform .18s var(--ease), box-shadow .2s ease; }
.card--accent { border-top: 3px solid var(--bronze); }
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { display: flex; align-items: center; gap: .6rem; }
.card ul { margin: .4rem 0 0; padding-left: 1.1rem; color: var(--slate); }
.card ul li { margin: .3rem 0; }

/* Icon medallion */
.imark { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 11px; background: var(--bronze-tint); color: var(--bronze-dark); flex: none; margin-bottom: 16px; }
.imark svg { width: 24px; height: 24px; }
.card--accent .imark { background: var(--navy); color: var(--bronze); }

/* ---------- Feature rows ---------- */
.feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.feature--rev { grid-template-columns: .9fr 1.1fr; }
.feature--top { align-items: start; }
.panel { background: var(--navy); color: #dbe6f2; border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-md); }
.panel h3 { color: #fff; }
.panel ol { margin: 0; padding-left: 1.2rem; }
.panel ol li { margin: .55rem 0; }
.panel a.btn--onnavy { color:#fff; }

/* ---------- Process timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; margin-top: 44px; }
.tl-step { position: relative; padding: 28px 24px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.tl-step::before { counter-increment: step; content: counter(step); position: absolute; top: -18px; left: 24px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--bronze); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 1.1rem; box-shadow: 0 4px 12px rgba(176,137,79,.35); }
.tl-step h3 { color: var(--navy); font-family: var(--serif); text-transform: none; letter-spacing: 0; font-size: 1.12rem; margin: 16px 0 .4rem; }
.tl-step p { color: var(--slate); font-size: .95rem; margin: 0; }

/* ---------- The "four tests" table ---------- */
.tests { width: 100%; border-collapse: collapse; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.tests th, .tests td { text-align: left; padding: 18px 22px; border-bottom: 1px solid var(--line); vertical-align: top; }
.tests th { background: var(--navy); color: #fff; font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.tests tr:last-child td { border-bottom: 0; }
.tests td:first-child { font-weight: 600; color: var(--navy); width: 34%; }
.tests tbody tr { transition: background .15s ease; }
.tests tbody tr:hover { background: var(--bronze-tint); }

/* ---------- Case studies ---------- */
.case { background: var(--paper-2); border: 1px solid var(--line); border-left: 4px solid var(--bronze); border-radius: var(--radius-sm); padding: 28px 30px; margin-bottom: 22px; box-shadow: var(--shadow); transition: transform .18s var(--ease), box-shadow .2s ease; }
.case:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.case__tag { display: inline-block; font-family: var(--sans); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #7a5c2f; background: var(--bronze-tint); padding: 5px 12px; border-radius: 20px; margin-bottom: 14px; }
.case dl { margin: 0; display: grid; grid-template-columns: 140px 1fr; gap: 8px 18px; }
.case dt { font-family: var(--sans); font-weight: 600; color: var(--navy); font-size: .9rem; }
.case dd { margin: 0; color: var(--ink); }

/* ---------- Testifying history list ---------- */
.tlist { list-style: none; margin: 0; padding: 0; }
.tlist li { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 150px 1fr; gap: 20px; }
.tlist li:last-child { border-bottom: 0; }
.tlist .t-meta { font-family: var(--sans); font-size: .88rem; color: var(--slate); font-weight: 600; }

/* ---------- FAQ accordion — collapse only when JS is present; no-JS users see all answers ---------- */
.faq { max-width: 820px; margin: 40px auto 0; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper-2); margin-bottom: 14px; box-shadow: var(--shadow); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 26px; font-family: var(--serif); font-weight: 600; font-size: 1.12rem; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq__q .chev { flex: none; width: 20px; height: 20px; color: var(--bronze-dark); transition: transform .25s var(--ease); }
.faq__item[open] .faq__q .chev, .faq__q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq__a { padding: 0 26px 24px; }
.js .faq__a { padding: 0 26px; max-height: 0; overflow: hidden; transition: max-height .3s var(--ease), padding .3s var(--ease); }
.faq__a p { color: var(--slate); margin: 0; }
.js .faq__item.open .faq__a { padding: 0 26px 24px; max-height: 1200px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(158deg, var(--navy-soft), var(--navy-deep)); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content:''; position:absolute; inset:0; background: radial-gradient(800px 300px at 50% -30%, rgba(176,137,79,.18), transparent 60%); pointer-events:none; }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c4d2e2; max-width: 58ch; margin-left:auto; margin-right:auto; }

/* ---------- Contact form ---------- */
.form { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--sans); font-weight: 600; font-size: .92rem; color: var(--navy); margin-bottom: 6px; }
.field .req { color: var(--bronze-dark); }
.field input, .field textarea, .field select { width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink); padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--bronze); box-shadow: 0 0 0 3px rgba(176,137,79,.15); }
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: .84rem; color: var(--slate); margin-top: 5px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form__note { font-size: .88rem; color: var(--slate); margin-top: 4px; }
.form__status { display: none; padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: .95rem; }
.form__status.ok  { display: block; background: rgba(31,122,77,.1); color: var(--ok); border: 1px solid rgba(31,122,77,.3); }
.form__status.err { display: block; background: rgba(178,59,59,.08); color: var(--err); border: 1px solid rgba(178,59,59,.3); }
.grid-2.form-row { gap: 18px; }

.callout { background: var(--bronze-tint); border: 1px solid rgba(176,137,79,.28); border-radius: var(--radius); padding: 26px 28px; }
.callout h3 { margin-top: 0; }
.trust-row { display:flex; flex-wrap:wrap; gap: 10px 24px; align-items:center; justify-content:center; margin-top: 28px; color: var(--slate); font-size: .9rem; }
.trust-row span { display:inline-flex; align-items:center; gap:.5rem; }
.trust-row svg { width:18px; height:18px; color: var(--bronze-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #a9bace; font-family: var(--sans); font-size: .92rem; }
.site-footer .wrap { padding: 56px 24px 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; margin-bottom: 1rem; }
.site-footer a { color: #cdd8e6; }
.site-footer a:hover { color: var(--bronze); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin: .45rem 0; }
.foot-brand .brand__mark { color: #fff; }
.foot-brand p { color: #8ea3bb; max-width: 34ch; }
.foot-legal { border-top: 1px solid rgba(255,255,255,.1); margin-top: 36px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #8ba0b6; font-size: .84rem; }
.foot-disclaimer { color: #93a7bc; font-size: .8rem; line-height: 1.6; margin-top: 14px; max-width: 92ch; }

/* ---------- Placeholder marker — styled as an intentional "to be confirmed" token ---------- */
.ph { background: var(--bronze-tint); border-bottom: 1px dashed var(--bronze); border-radius: 3px; padding: 0 .18em; color: var(--bronze-dark); font-style: normal; }
.stat__num.ph, h1.ph { display: inline-block; }
/* On dark surfaces the default .ph tones are unreadable — brighten */
.hero .ph, .credbar .ph, .cta-band .ph, .panel .ph { color: #e3cfa4; border-bottom-color: #e3cfa4; background: rgba(255,255,255,.07); }
.hero .btn.ph { background: var(--bronze); color: #fff; border: 1.5px dashed rgba(255,255,255,.55); }
.pending-note { font-size: .82rem; color: var(--slate); font-style: italic; }

/* ---------- Scroll reveal — gated on .js so content is never hidden without JavaScript ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .timeline { grid-template-columns: 1fr 1fr; gap: 30px 22px; }
}
@media (max-width: 900px) {
  .grid-3, .stats { grid-template-columns: 1fr 1fr; }
  .feature, .feature--rev, .grid-2, .foot-grid { grid-template-columns: 1fr; }
  .feature--rev .panel { order: 2; }
  .feature--contact > div:first-child { order: 2; } /* contact page: direct email + process above the form on mobile */
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 62px 0; }
  .grid-3, .stats, .grid-2.form-row, .timeline { grid-template-columns: 1fr; }
  /* Scroll smoothness: live blur while scrolling stutters on phones — solid header instead */
  .site-header { background: rgba(247,245,241,.97); backdrop-filter: none; -webkit-backdrop-filter: none; }
  /* Lighter reveal motion on small screens — fade with a short 10px rise */
  .js .reveal { transform: translateY(10px); transition-duration: .45s; }
  /* Get visitors to content faster */
  .hero .wrap { padding-top: 72px; padding-bottom: 72px; }
  .hero--sub .wrap { padding-top: 54px; padding-bottom: 54px; }
  .brand__sub { display: none; } /* reclaim header room for the compact CTA */
  .nav__cta-sm { display: inline-flex; margin-left: auto; margin-right: 10px; padding: 8px 12px; font-size: .8rem; white-space: nowrap; }
  .nav__links { position: fixed; inset: 74px 0 auto 0; background: var(--paper); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); transform: translateY(-120%); visibility: hidden; transition: transform .28s var(--ease), visibility 0s .28s; }
  .nav__links.open { transform: translateY(0); visibility: visible; transition: transform .28s var(--ease); }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links li:last-child { border-bottom: 0; padding-top: 12px; }
  .nav__links a { display: block; padding: 14px 0; }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__toggle { display: block; }
  .case dl, .tlist li { grid-template-columns: 1fr; gap: 4px; }
  .tlist .t-meta { margin-bottom: 4px; }
  .foot-legal { flex-direction: column; }
  .tests { display: block; overflow-x: auto; } /* never let the table force page-level horizontal scroll */
  .tests th, .tests td { padding: 12px 14px; }
  .tests td:first-child { width: auto; min-width: 120px; }
}

/* ---------- Reduced motion — fully kill animation ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .nav__toggle, .cta-band, .hero__cta, .btn { display: none !important; }
  .hero, .cta-band { background: #fff !important; color: #000 !important; }
  body { font-size: 12pt; color:#000; background:#fff; }
  /* Hero children set their own colors — force them printable (white-on-white bug) */
  .hero h1, .hero .lead, .hero .eyebrow, .eyebrow--onnavy, .hero__practice, .hero__practice b { color: #000 !important; }
  /* Navy panels and the credential bar print as ghost text without this */
  .panel, .panel h3, .panel ol, .credbar, .credbar b, .credbar span,
  .cta-band h2, .cta-band p { color: #000 !important; background: #fff !important; }
  .credbar { border: 1px solid #999; }
  /* Print immediately after load must not capture unrevealed sections */
  .reveal { opacity: 1 !important; transform: none !important; }
  .js .faq__a { max-height: none !important; padding: 0 26px 24px !important; overflow: visible !important; }
}
