/* ==========================================================================
   Vincennes Capital Group
   Palette sampled directly from the logo: navy #00214F, blue-gray #658DB8.
   ========================================================================== */

:root {
  --navy: #00214f;
  --navy-deep: #041530;
  --navy-700: #0b3068;
  --blue-gray: #658db8;
  --blue-gray-light: #8fabc9;

  --ink: #14202f;
  --slate: #4a5a72;
  --slate-light: #6b7b94;

  --paper: #ffffff;
  --paper-2: #f4f7fa;
  --paper-3: #eaeff5;
  --line: #dce3ec;
  --line-strong: #c3cfdd;

  --focus: #658db8;

  --serif: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(64px, 9vw, 128px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------- reset */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Keep #inquiry and friends clear of the sticky header on jump. */
  scroll-padding-top: 104px;
}
@media (max-width: 900px) {
  html { scroll-padding-top: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

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%; height: auto; display: block; }

::selection { background: var(--navy); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.12; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); line-height: 1.14; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.3; }
h4 { font-size: 1.05rem; line-height: 1.35; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }

strong { font-weight: 600; color: var(--navy); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- layout */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--paper2 { background: var(--paper-2); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-gray);
  margin: 0 0 18px;
}
.eyebrow--onDark { color: var(--blue-gray-light); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.6;
  color: var(--slate);
}

.rule {
  width: 64px;
  height: 2px;
  background: var(--blue-gray);
  border: 0;
  margin: 0 0 28px;
}

/* --------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: auto; height: 42px; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }

.nav a {
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--slate);
  text-decoration: none;
  padding-block: 6px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.nav a:hover { color: var(--navy); }
.nav a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--blue-gray);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: #fff !important;
  padding: 11px 20px !important;
  font-size: 0.82rem !important;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid var(--navy) !important;
  transition: background 0.2s var(--ease);
}
.nav__cta:hover { background: var(--navy-deep); border-color: var(--navy-deep) !important; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  position: relative;
  width: 19px;
  height: 1.5px;
  background: var(--navy);
  transition: background 0.2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.24s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 24px;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav a[aria-current="page"] { border-bottom-color: var(--line); }
  .nav__cta {
    justify-content: center;
    margin-top: 18px;
    border-bottom: 1px solid var(--navy) !important;
    padding: 15px 20px !important;
    font-size: 0.9rem !important;
  }
  .site-header__inner { position: relative; min-height: 70px; }
  .brand img { height: 34px; }
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 17px 30px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.btn:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff; }

.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }

.btn--onDark { background: #fff; border-color: #fff; color: var(--navy); }
.btn--onDark:hover { background: var(--blue-gray-light); border-color: var(--blue-gray-light); color: var(--navy-deep); }

.btn--ghostOnDark { background: transparent; border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.btn--ghostOnDark:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* --------------------------------------------------------------- hero */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(101, 141, 184, 0.24), transparent 62%),
    linear-gradient(180deg, rgba(0, 33, 79, 0.55), rgba(4, 21, 48, 0.9));
  pointer-events: none;
  z-index: 0;
}

/* Original engraved contour field. Sits under the gradient so the headline
   keeps its contrast; strongest toward the lower right, absent up top. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/texture-contour.svg") center / cover no-repeat;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}
.hero > * { position: relative; z-index: 2; }

.hero__inner { padding-block: clamp(78px, 12vw, 158px); max-width: 860px; }
.hero h1 { color: #fff; margin-bottom: 26px; }
.hero .lede { color: rgba(255, 255, 255, 0.82); max-width: 640px; }

.hero--page .hero__inner { padding-block: clamp(58px, 8vw, 96px); }
.hero--page h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }

/* --------------------------------------------------------------- grids */
.grid { display: grid; gap: clamp(28px, 4vw, 48px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 860px) { .split { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------------- cards */
.card {
  border-top: 2px solid var(--navy);
  padding-top: 24px;
  transition: border-top-color 0.25s var(--ease);
}
.card:hover { border-top-color: var(--blue-gray); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 0.97rem; }

.stat {
  border-top: 1px solid var(--line-strong);
  padding-top: 22px;
  transition: border-top-color 0.25s var(--ease);
}
.stat:hover { border-top-color: var(--navy); }
.stat__value {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.86rem;
  color: var(--slate);
  line-height: 1.5;
}

/* numbered list of principles */
.numbered { list-style: none; margin: 0; padding: 0; counter-reset: n; }
.numbered > li {
  counter-increment: n;
  position: relative;
  padding: 26px 0 26px 66px;
  border-top: 1px solid var(--line);
}
.numbered > li:last-child { border-bottom: 1px solid var(--line); }
.numbered > li::before {
  content: counter(n, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 28px;
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--blue-gray);
  letter-spacing: 0.04em;
}
.numbered h3 { margin-bottom: 8px; }
.numbered p { color: var(--slate); font-size: 0.97rem; margin: 0; }

@media (max-width: 620px) {
  .numbered > li { padding-left: 46px; }
}

/* check / cross lists */
.marklist { list-style: none; margin: 0; padding: 0; }
.marklist li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  font-size: 0.97rem;
}
.marklist li::before {
  position: absolute;
  left: 0;
  top: 14px;
  font-weight: 600;
  font-size: 0.95rem;
}
.marklist--yes li::before { content: "\2014"; color: var(--blue-gray); }
.marklist--no li::before { content: "\00D7"; color: var(--slate-light); }
.marklist strong { color: var(--navy); }

/* --------------------------------------------------------------- table */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

table.criteria {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
table.criteria caption {
  text-align: left;
  color: var(--slate);
  font-size: 0.9rem;
  padding-bottom: 16px;
}
table.criteria th,
table.criteria td {
  text-align: left;
  padding: 16px 20px 16px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.criteria thead th {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-gray);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 12px;
}
table.criteria tbody th { font-weight: 600; color: var(--navy); width: 30%; }
table.criteria td:nth-child(2) { color: var(--navy); font-weight: 500; width: 26%; }
table.criteria td:last-child { color: var(--slate); }

/* --------------------------------------------------------------- bios */
.bio { border-top: 2px solid var(--navy); padding-top: 26px; }

/* Optional headshot. If the file is absent the wrapper is removed at runtime
   (see main.js) so the bio falls back to the type-only layout. */
.bio__photo {
  width: 168px;
  max-width: 45%;
  aspect-ratio: 1 / 1;
  margin-bottom: 22px;
  overflow: hidden;
  /* Transparent: if the file is missing nothing is visible even before the
     script removes the wrapper. */
  background: transparent;
}
.bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92);
}
@media (max-width: 620px) { .bio__photo { width: 132px; } }
.bio__name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--navy); margin: 0 0 2px; }
.bio__role {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-gray);
  margin: 0 0 18px;
}
.bio p { color: var(--slate); font-size: 0.97rem; }

/* --------------------------------------------------------------- CTA band */
.cta-band {
  position: relative;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 3px;
  background: var(--blue-gray);
}
.cta-band h2 { color: var(--navy); }
.cta-band p { color: var(--slate); max-width: 560px; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }

/* --------------------------------------------------------------- form */
.form-shell {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 48px);
}

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 26px; }
@media (max-width: 680px) { .form-grid { grid-template-columns: minmax(0, 1fr); } }

.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.field .hint {
  font-size: 0.82rem;
  color: var(--slate-light);
  margin-top: 7px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.req { color: var(--blue-gray); font-weight: 400; }

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 13px 14px;
  width: 100%;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 118px; }

.field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2300214F' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(101, 141, 184, 0.24);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: #a4283c; }

.field-error {
  font-size: 0.82rem;
  color: #a4283c;
  margin-top: 7px;
  min-height: 0;
}

.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  padding: 12px 18px;
  cursor: pointer;
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--slate);
  margin-bottom: 0;
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease),
    background 0.18s var(--ease);
}
.radio-row label:hover { border-color: var(--blue-gray); color: var(--navy); }
.radio-row input { width: auto; margin: 0; accent-color: var(--navy); }
.radio-row input:checked + span { color: var(--navy); font-weight: 600; }
.radio-row label:has(input:checked) { border-color: var(--navy); background: var(--paper-2); }

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footnote {
  font-size: 0.86rem;
  color: var(--slate-light);
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.form-status {
  margin-top: 22px;
  padding: 16px 18px;
  font-size: 0.93rem;
  border-left: 3px solid var(--blue-gray);
  background: var(--paper-2);
  color: var(--slate);
}
.form-status[data-state="error"] { border-left-color: #a4283c; color: #7c1e2e; background: #fdf3f4; }
.form-status[data-state="ok"] { border-left-color: #1f6b46; color: #1d5b3c; background: #f1f8f4; }
.form-status[hidden] { display: none; }

.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* --------------------------------------------------------------- contact */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { border-top: 1px solid var(--line); padding: 20px 0; }
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list .label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-gray);
  margin-bottom: 6px;
}
.contact-list .value { font-size: 1.02rem; color: var(--navy); }
.contact-list a { color: var(--navy); }

/* --------------------------------------------------------------- footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  padding-block: clamp(48px, 6vw, 76px) 34px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: clamp(30px, 5vw, 64px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 760px) {
  .site-footer__top { grid-template-columns: minmax(0, 1fr); gap: 34px; }
}
.site-footer img { width: auto; height: 34px; margin-bottom: 20px; }
.site-footer p { color: rgba(255, 255, 255, 0.6); font-size: 0.88rem; max-width: 34ch; }
.site-footer h3 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-nav { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 11px; }
.footer-nav a, .site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.footer-nav a:hover, .site-footer a:hover { color: #fff; text-decoration: underline; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 26px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------- utility */
.prose p { color: var(--slate); }
.prose h2 { margin-top: 2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8em; }

.note {
  border-left: 3px solid var(--blue-gray);
  background: var(--paper-2);
  padding: 22px 26px;
  font-size: 0.95rem;
  color: var(--slate);
}
.note strong { color: var(--navy); }

/* spacing + measure utilities (replaces inline styles) */
.mt-lg { margin-top: clamp(34px, 4.4vw, 52px); }
.mt-md { margin-top: clamp(22px, 2.8vw, 32px); }
.mb-lg { margin-bottom: clamp(28px, 3.4vw, 40px); }
.lede--measure { max-width: 64ch; }
.lede--sm { font-size: 1rem; }

.fieldset-reset { border: 0; padding: 0; margin: 0; min-width: 0; }
.field-legend {
  padding: 0;
  margin-bottom: 12px;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ------------------------------------------------------- navy band
   Placed last so it overrides the component defaults above it. */
.section--navy {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
}
.section--navy::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -6%;
  width: min(360px, 34vw);
  aspect-ratio: 600 / 571;
  transform: translateY(-50%);
  background: url("/assets/img/monogram-v-white.png") center / contain no-repeat;
  opacity: 0.035;
  pointer-events: none;
}
.section--navy > * { position: relative; z-index: 1; }
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy .stat__value,
.section--navy .bio__name { color: #fff; }
.section--navy .eyebrow { color: var(--blue-gray-light); }
.section--navy .bio__role { color: var(--blue-gray-light); }
.section--navy .lede { color: rgba(255, 255, 255, 0.78); }
.section--navy p,
.section--navy .card p,
.section--navy .numbered p,
.section--navy .bio p,
.section--navy .prose p,
.section--navy .stat__label { color: rgba(255, 255, 255, 0.74); }
.section--navy .card,
.section--navy .bio { border-top-color: var(--blue-gray); }
.section--navy .stat { border-top-color: rgba(255, 255, 255, 0.28); }
.section--navy .marklist li,
.section--navy .numbered > li {
  color: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.16);
}
.section--navy .marklist strong,
.section--navy strong { color: #fff; }
.section--navy .marklist--yes li::before,
.section--navy .marklist--no li::before,
.section--navy .numbered > li::before { color: var(--blue-gray-light); }
.section--navy .note {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--blue-gray);
  color: rgba(255, 255, 255, 0.78);
}
.section--navy .note strong { color: #fff; }
.section--navy a { color: #fff; }
.section--navy table.criteria caption { color: rgba(255, 255, 255, 0.66); }
.section--navy table.criteria th,
.section--navy table.criteria td { border-bottom-color: rgba(255, 255, 255, 0.16); }
.section--navy table.criteria thead th { color: var(--blue-gray-light); border-bottom-color: rgba(255, 255, 255, 0.32); }
.section--navy table.criteria tbody th,
.section--navy table.criteria td:nth-child(2) { color: #fff; }
.section--navy table.criteria td:last-child { color: rgba(255, 255, 255, 0.74); }
.section--navy .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.section--navy .btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* Focus ring flips to white where the surface is navy. */
.hero :focus-visible,
.section--navy :focus-visible,
.site-footer :focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* --------------------------------------------------------------- print
   Owners and their advisors do print the criteria page. */
@media print {
  .site-header,
  .nav,
  .cta-band,
  .btn-row,
  .skip-link,
  .site-footer__top { display: none !important; }

  body { font-size: 11pt; color: #000; background: #fff; }
  .hero,
  .section--navy {
    background: #fff !important;
    color: #000 !important;
    padding-block: 0 18pt;
  }
  .hero::before,
  .hero::after,
  .section--navy::before { display: none !important; }
  .hero h1,
  .hero .lede,
  .section--navy h2,
  .section--navy h3,
  .section--navy p,
  .section--navy li,
  .section--navy .lede { color: #000 !important; }
  .eyebrow { color: #555 !important; }
  .section { padding-block: 14pt; }
  a { text-decoration: none; color: #000; }
  main a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  table.criteria { min-width: 0; font-size: 10pt; }
  .table-scroll { overflow: visible; }
  .site-footer {
    background: #fff !important;
    color: #000 !important;
    border-top: 1pt solid #999;
    padding-block: 10pt;
  }
  .site-footer__bottom { color: #000 !important; font-size: 9pt; }
  section, .card, .bio, tr { break-inside: avoid; }
}
