@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --charcoal:    #252525;
  --charcoal-2:  #1b1b1b;
  --navy:        #032949;
  --navy-2:      #063a66;
  --navy-line:   #0c4a82;
  --gold:        #e6a91d;
  --gold-bright: #f7c331;

  --ink:      #1d1d1f;
  --body:     #3a3f45;
  --muted:    #63696f;
  --line:     #e3e6ea;
  --surface:  #ffffff;
  --canvas:   #f6f7f9;

  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1260px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(18,28,45,.06), 0 2px 8px rgba(18,28,45,.05);
  --shadow-md: 0 6px 24px rgba(3,41,73,.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-2); }
a:hover { color: var(--navy); }
h1, h2, h3, h4, h5, p, ul, ol, dl, figure { margin: 0; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

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

fc-header, fc-footer { display: contents; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--charcoal); font-weight: 700;
  padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.ext-note {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

:focus-visible { outline: 3px solid var(--navy-2); outline-offset: 2px; border-radius: 4px; }
.hero :focus-visible, .site-footer :focus-visible, .page-hero :focus-visible { outline-color: var(--gold-bright); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 92px;
}
.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; color: var(--navy); }
.brand img { height: 62px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .b-kicker { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #2c4a6b; font-weight: 700; white-space: nowrap; }
.brand-text .b-name { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -.01em; white-space: nowrap; }
.brand-text .b-sub { font-size: 13px; color: #4c5259; font-weight: 500; }

.primary-nav { display: flex; align-items: stretch; }
.nav-list { display: flex; align-items: stretch; gap: 4px; }
.nav-item { position: relative; display: flex; }
.nav-link {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  padding: 8px 11px; border-radius: 8px;
  font-size: 14px; font-weight: 700; letter-spacing: .015em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  background: transparent; border: 0;
  transition: background .15s, color .15s;
}
.nav-link:hover, .nav-item:hover > .nav-link, .nav-item.open > .nav-link { background: var(--navy); color: #fff; }
.nav-link.is-active { color: var(--navy); position: relative; }
.nav-link.is-active::after { content: ""; position: absolute; left: 9px; right: 9px; bottom: 3px; height: 2.5px; background: var(--gold); border-radius: 2px; }
.nav-link.is-active:hover::after, .nav-item.open > .nav-link.is-active::after { background: var(--gold-bright); }
.caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s; opacity: .8; }
.nav-item.open .caret { transform: rotate(-135deg) translateY(-1px); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 290px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 8px; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 50;
}
.nav-item:hover > .dropdown, .nav-item.open > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item.align-right .dropdown { left: auto; right: 0; }
.dropdown a {
  display: block; padding: 9px 14px; border-radius: 7px;
  font-size: 14.5px; font-weight: 600; color: var(--ink); text-decoration: none;
  text-transform: none; letter-spacing: 0;
}
.dropdown a:hover { background: rgba(3,41,73,.09); color: var(--navy); }
.dropdown a[aria-current="page"] { background: rgba(3,41,73,.07); color: var(--navy); box-shadow: inset 3px 0 0 var(--gold); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: var(--navy); border: 0; border-radius: 8px; padding: 11px 13px;
}
.nav-toggle span { width: 22px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(155deg, rgba(3,41,73,.72) 0%, rgba(3,41,73,.55) 45%, rgba(6,58,102,.45) 100%),
    url("../images/workforce-center.jpg");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  color: #fff;
  border-bottom: 4px solid var(--gold);
}
.hero-inner { padding-block: clamp(34px, 5vw, 56px); }
.hero-head { max-width: 760px; margin-bottom: 28px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright); font-weight: 700; margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }
.hero-head h1 { font-size: clamp(28px, 4vw, 40px); line-height: 1.1; font-weight: 800; letter-spacing: -.015em; color: #fff; }
.hero-head p { margin-top: 12px; font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.85); }

.hero-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.panel {
  background: rgba(3,41,73,.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255,255,255,.18);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 12px 36px rgba(0,0,0,.28);
}
.panel__media { width: 100%; aspect-ratio: 16 / 9; background: #11233a; }
.panel__media image-slot, .panel__media img { width: 100%; height: 100%; object-fit: cover; }
.panel__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.panel__kicker { font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-bright); }
.panel__body .panel__title { font-size: 20px; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -.01em; }
.panel__body p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.88); }
.panel__body a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 2px; }
.panel__body a:hover { color: #fff; }

.callout {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  padding: 22px 24px;
}
.callout + .callout { margin-top: 18px; }
.callout__kicker { font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--navy-2); margin-bottom: 8px; }
.callout h2, .callout h3 { font-size: 19px; font-weight: 800; color: var(--navy); line-height: 1.28; letter-spacing: -.01em; }
.callout > * + * { margin-top: 10px; }
.callout p { font-size: 15.5px; line-height: 1.7; color: var(--body); }
.callout--navy { border-left-color: var(--navy); }
.callout--flat { background: var(--canvas); border-color: var(--line); box-shadow: none; }
.callout--dark { background: var(--navy); border: 0; border-left: 4px solid var(--gold); color: #fff; }
.callout--dark h2, .callout--dark h3 { color: #fff; }
.callout--dark p, .callout--dark address { color: rgba(255,255,255,.9); }
.callout--dark a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.callout--dark a:hover { color: var(--gold-bright); }
.callout--dark .callout__kicker { color: var(--gold-bright); }

.rule-item {
  border-left: 3px solid var(--line);
  padding: 2px 0 2px 20px;
}
.rule-item + .rule-item { margin-top: 22px; }
.rule-item:hover { border-left-color: var(--gold); }
.rule-item h3 { font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.3; }
.rule-item h4 { font-size: 15px; font-weight: 800; color: var(--navy-2); line-height: 1.35; }
.rule-item p { font-size: 15.5px; line-height: 1.7; color: var(--body); margin-top: 6px; }
.rule-item ul { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.rule-item ul li { font-size: 15px; }
.rule-item ul a { font-weight: 600; }

.link-rows { display: flex; flex-direction: column; }
.link-rows a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 0; font-size: 15.5px; font-weight: 600; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--line);
  transition: color .14s, padding .14s;
}
.link-rows a:last-child { border-bottom: 0; }
.link-rows a::after { content: "\2192" / ""; color: var(--gold); opacity: 0; transform: translateX(-4px); transition: opacity .15s, transform .15s; }
.link-rows a:hover { color: var(--navy-2); padding-left: 4px; }
.link-rows a:hover::after { opacity: 1; transform: translateX(0); }

.band { padding-block: clamp(40px, 5.5vw, 64px); }
.band--canvas { background: var(--canvas); }
.band--navy { background: var(--navy); color: #fff; }
.band--navy h2, .band--navy h3 { color: #fff; }
.band--navy p { color: rgba(255,255,255,.88); }
.band--navy a { color: var(--gold-bright); }
.band--navy a.btn-gold { color: var(--charcoal-2); }
.band--navy a.btn-navy, .band--navy a.btn-ghost { color: #fff; }

.section-head { margin-bottom: 28px; }
.section-head .eyebrow { color: var(--navy-2); }
.section-head .eyebrow::before { background: var(--gold); }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--ink); letter-spacing: -.015em; }
.section-head p { margin-top: 12px; max-width: 760px; font-size: 16.5px; line-height: 1.7; }
.band--navy .section-head .eyebrow { color: var(--gold-bright); }
.band--navy .section-head h2 { color: #fff; }

.two-col { display: grid; grid-template-columns: minmax(0, 1fr) 352px; gap: clamp(26px, 4vw, 48px); align-items: start; }
.two-col--even { grid-template-columns: 1fr 1fr; }

.person {
  max-width: 320px;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0; box-shadow: var(--shadow-sm); overflow: hidden;
}
.person__photo { width: 100%; max-width: 196px; margin-inline: auto; aspect-ratio: 196 / 264; background: #dde2e8; }
.person__photo image-slot, .person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person__body { padding: 18px 20px 20px; }
.person__name { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.person__role { font-size: 14px; font-weight: 700; color: var(--navy-2); margin-top: 3px; letter-spacing: .02em; }
.person__meta { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 7px; font-size: 14px; }
.person__meta a { display: block; overflow-wrap: anywhere; }

.staff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.staff-card {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.staff-card .nm { font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.25; }
.staff-card .role { font-size: 13.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.staff-card dl { margin-top: 12px; display: block; font-size: 14.5px; }
.staff-card dt { font-weight: 700; color: var(--muted); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; margin-top: 10px; }
.staff-card dt:first-of-type { margin-top: 0; }
.staff-card dd { margin: 2px 0 0; min-width: 0; }
.staff-card dd a { display: block; overflow-wrap: anywhere; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px; border-radius: 9px;
  font-size: 14.5px; font-weight: 700; letter-spacing: .02em; text-decoration: none;
  border: 0; transition: background .15s, transform .12s;
}
.btn-gold { background: var(--gold); color: var(--charcoal-2); }
.btn-gold:hover { background: var(--gold-bright); color: var(--charcoal-2); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.24); }
.btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.partner-row { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; margin-top: 28px; }
.partner-row image-slot { width: 220px; height: 84px; }

.page-hero { background: var(--navy); color: #fff; border-bottom: 4px solid var(--gold); }
.page-hero-inner { padding-block: clamp(28px, 4vw, 46px); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.breadcrumb a { color: #fff; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb .sep { color: rgba(255,255,255,.62); }
.page-hero h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.1; letter-spacing: -.015em; }
.page-hero .lede { margin-top: 12px; max-width: 760px; font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.88); }

.page-body { padding-block: clamp(36px, 5vw, 60px); }
.prose { font-size: 17px; line-height: 1.72; color: var(--body); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: 25px; font-weight: 800; color: var(--ink); margin-top: 1.9em; letter-spacing: -.01em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-top: 1.6em; }
.prose h4 { font-size: 16px; font-weight: 800; color: var(--navy-2); margin-top: 1.4em; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose ul, .prose ol { padding-left: 1.35em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-top: .5em; }
.prose li::marker { color: var(--gold); }
.prose img { width: auto; max-width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.prose figure img { margin-inline: 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.prose caption { text-align: left; font-weight: 700; color: var(--navy); padding-bottom: 10px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose thead th { background: var(--canvas); color: var(--navy); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }

.section-label { display: flex; align-items: center; gap: 12px; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--navy-2); font-weight: 800; margin: 0 0 16px; }
.section-label::after { content: "" / ""; flex: 1; height: 1px; background: var(--line); }

.year-block { margin-top: 26px; }
.year-block__head { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; padding-bottom: 10px; border-bottom: 2px solid var(--gold); margin-bottom: 16px; }
.meeting-list { display: flex; flex-direction: column; }
.meeting {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px;
  padding: 12px 0 12px 18px; border-left: 3px solid var(--line); border-bottom: 1px solid var(--line);
}
.meeting:hover { border-left-color: var(--gold); }
.meeting__date { font-size: 16px; font-weight: 700; color: var(--ink); min-width: 200px; }
.meeting__docs { display: flex; flex-wrap: wrap; gap: 8px; }
.meeting__docs a {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px;
  border: 1px solid var(--line); border-radius: 8px; background: #fff;
  font-size: 13.5px; font-weight: 700; color: var(--navy); text-decoration: none;
}
.meeting__docs a:hover { border-color: var(--gold); background: var(--canvas); }
.meeting__docs svg { width: 13px; height: 15px; color: var(--gold); flex-shrink: 0; }

.doc-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.doc-list li { border-left: 3px solid var(--line); padding: 9px 0 9px 16px; font-size: 15.5px; }
.doc-list li:hover { border-left-color: var(--gold); }
.doc-list a { font-weight: 600; }
.doc-list .note { display: block; font-size: 14px; color: var(--muted); margin-top: 2px; }

.ext-group { margin-top: 30px; }
.ext-group h3 { font-size: 17px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; padding-bottom: 10px; border-bottom: 2px solid var(--gold); margin-bottom: 14px; }
.ext-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2px 24px; }
.ext-list li { border-left: 3px solid var(--line); padding: 9px 0 9px 14px; font-size: 15px; }
.ext-list li:hover { border-left-color: var(--gold); }
.ext-list a { font-weight: 600; text-decoration: none; }
.ext-list a:hover { text-decoration: underline; }
.ext-list .host { display: block; font-size: 12.5px; color: var(--muted); font-weight: 500; }

.fine-note { margin-top: 20px; font-size: 13.5px; color: var(--muted); line-height: 1.6; }

.site-footer { background: var(--navy); color: #fff; }
.footer-top { padding-block: clamp(40px, 5vw, 58px); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { width: 168px; height: auto; background: #fff; border-radius: 8px; padding: 10px 12px; }
.footer-brand address { font-style: normal; font-size: 14px; color: rgba(255,255,255,.86); line-height: 1.7; max-width: 260px; }
.footer-brand a { color: #fff; }
.footer-col h2 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-bright); font-weight: 800; margin-bottom: 12px; }
.footer-col a { display: block; padding: 6px 0; font-size: 14.5px; color: rgba(255,255,255,.94); text-decoration: none; }
.footer-col a:hover { color: var(--gold-bright); text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: space-between; }
.footer-bottom .copyright { font-size: 13.5px; color: rgba(255,255,255,.86); }
.footer-bottom .disclaimer { font-size: 12.5px; color: rgba(255,255,255,.8); max-width: 640px; line-height: 1.55; }
.footer-bottom a { color: #fff; }

@media (max-width: 1080px) {
  .hero-panels { grid-template-columns: 1fr; }
  .panel { flex-direction: row; }
  .panel__media { width: 240px; flex-shrink: 0; aspect-ratio: auto; }
  .two-col { grid-template-columns: 1fr; }
  .two-col--even { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 1259px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height .28s ease;
  }
  .primary-nav.open { max-height: 80vh; overflow-y: auto; }
  .nav-list { flex-direction: column; gap: 0; padding: 10px var(--gutter) 20px; align-items: stretch; }
  .nav-item { flex-direction: column; }
  .nav-link { width: 100%; justify-content: space-between; border-radius: 8px; font-size: 14px; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--line);
    border-radius: 0; margin: 2px 0 6px 12px; min-width: 0;
    max-height: 0; overflow: hidden; padding: 0 8px;
    transition: max-height .25s ease, padding .25s ease;
  }
  .nav-item.open > .dropdown { max-height: 700px; padding: 4px 8px 8px; }
  .nav-item.open > .nav-link { background: rgba(3,41,73,.09); color: var(--navy); }
}
@media (max-width: 700px) {
  .panel { flex-direction: column; }
  .panel__media { width: 100%; aspect-ratio: 16 / 9; }
  .staff-grid { grid-template-columns: 1fr; }
  .meeting__date { min-width: 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand-text .b-sub { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
@media print {
  .site-header, .site-footer, .skip-link { display: none; }
  body { color: #000; font-size: 12pt; }
  a { color: #000; }
}

.spec-list { border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 6px 24px; padding: 14px 0 14px 18px; border-left: 3px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-row:hover { border-left-color: var(--gold); }
.spec-row__k { font-size: 12.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--navy-2); }
.spec-row__v { font-size: 15.5px; line-height: 1.65; color: var(--body); }

.fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px 24px; }
.fact { border-left: 3px solid var(--gold); padding: 10px 0 10px 16px; }
.fact__n { display: block; font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.fact__l { display: block; font-size: 14px; color: var(--muted); margin-top: 4px; line-height: 1.45; }

.prose blockquote.callout { margin: 0; }
.prose blockquote.callout p { font-size: 16px; }
.prose blockquote.callout footer { margin-top: 10px; font-size: 14.5px; color: var(--navy-2); font-weight: 700; }
.prose blockquote.callout cite { font-style: normal; }

.acc { border: 1px solid var(--line); border-left: 3px solid var(--line); border-radius: 0 10px 10px 0; margin-top: 10px; overflow: hidden; background: #fff; }
.acc[open] { border-left-color: var(--gold); }
.acc > summary { cursor: pointer; padding: 14px 18px; font-weight: 700; color: var(--navy); font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc > summary::-webkit-details-marker { display: none; }
.acc > summary::after { content: "+" / ""; font-size: 22px; color: var(--gold); font-weight: 700; line-height: 1; flex-shrink: 0; }
.acc[open] > summary::after { content: "\2013" / ""; }
.acc__body { padding: 0 18px 16px; }
.acc__body p { font-size: 15.5px; line-height: 1.7; color: var(--body); }

@media (max-width: 620px) {
  .spec-row { grid-template-columns: 1fr; }
}

.dropdown--cols { width: 520px; min-width: 0; max-width: calc(100vw - 24px); display: grid; grid-template-columns: 1fr 1fr; gap: 1px 6px; }
@media (max-width: 1259px) {
  .dropdown--cols { display: block; width: auto; max-width: none; }
}

/* Accessible document viewer (PDF text-version modal) */
.doc-modal { position: fixed; inset: 0; z-index: 3000; display: none; }
.doc-modal--open { display: block; }
.doc-modal__backdrop { position: absolute; inset: 0; background: rgba(3,41,73,.62); }
.doc-modal__dialog {
  position: relative; margin: 3vh auto; width: min(920px, 94vw); max-height: 94vh;
  display: flex; flex-direction: column; background: var(--surface);
  border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden;
}
.doc-modal__header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 20px; background: var(--navy); color: #fff;
}
.doc-modal__title { margin: 0; font-size: 17px; font-weight: 700; color: #fff; letter-spacing: .01em; }
.doc-modal__close {
  font: 600 14px/1 var(--font); color: var(--navy); background: var(--gold-bright);
  border: 0; border-radius: 6px; padding: 9px 16px; min-height: 36px; cursor: pointer;
}
.doc-modal__close:hover { background: #fff; }
.doc-modal__tabs { display: flex; gap: 4px; padding: 10px 20px 0; border-bottom: 1px solid var(--line); background: var(--canvas); }
.doc-tab {
  font: 600 14px/1.2 var(--font); color: var(--body); background: transparent;
  border: 1px solid transparent; border-bottom: 0; border-radius: 8px 8px 0 0;
  padding: 11px 16px; min-height: 44px; cursor: pointer;
}
.doc-tab:hover { color: var(--navy); }
.doc-tab[aria-selected="true"] {
  background: var(--surface); color: var(--navy);
  border-color: var(--line); box-shadow: inset 0 3px 0 var(--gold);
}
.doc-modal__panels { flex: 1; min-height: 0; overflow: hidden; }
.doc-panel { display: none; height: 100%; overflow-y: auto; padding: 24px clamp(20px, 3vw, 32px); }
.doc-panel.is-active { display: block; }
#doc-text { max-width: 68ch; color: var(--body); font-size: 16px; line-height: 1.65; }
#doc-text h1, #doc-text h2 { color: var(--navy); }
#doc-text h2 { font-size: 19px; margin: 26px 0 8px; }
#doc-text h3 { font-size: 16px; margin: 20px 0 6px; color: var(--ink); }
#doc-text p { margin: 0 0 12px; }
#doc-text ul, #doc-text ol { margin: 0 0 14px; padding-left: 1.3em; }
#doc-text ul { list-style: disc; }
#doc-text ol { list-style: decimal; }
#doc-text li { margin: 0 0 6px; }
.doc-pdf-actions {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.doc-pdf-actions__msg { font-size: 14px; color: var(--muted); max-width: 46ch; }
.doc-pdf-actions__buttons { display: flex; gap: 10px; }
.doc-pdf-actions__buttons a, .doc-modal__print {
  font: 600 14px/1 var(--font); border-radius: 6px; padding: 12px 18px; min-height: 44px;
  display: inline-flex; align-items: center; cursor: pointer; text-decoration: none;
}
.doc-pdf-actions__buttons a { background: var(--navy); color: #fff; border: 1px solid var(--navy); }
.doc-pdf-actions__buttons a:hover { background: var(--navy-2); color: #fff; }
.doc-modal__print { background: transparent; color: var(--navy); border: 1px solid var(--navy-line); }
.doc-modal__print:hover { background: var(--canvas); }
#doc-pdf-frame { width: 100%; height: min(70vh, 760px); border: 1px solid var(--line); border-radius: 8px; background: var(--canvas); }
.doc-modal__note { padding: 12px 20px; border-top: 1px solid var(--line); background: var(--canvas); font-size: 13px; color: var(--muted); }
@media (max-width: 640px) {
  .doc-modal__dialog { margin: 0; width: 100%; max-height: 100%; height: 100%; border-radius: 0; }
  .doc-tab { padding: 11px 10px; font-size: 13px; }
}
@media print { .doc-modal { display: none !important; } }
#doc-text .doc-lead, .prose .doc-lead { color: var(--muted); font-size: 15px; line-height: 1.7; }

.fb-link {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 14px;
  font-weight: 700; font-size: 15px; color: var(--gold-bright); text-decoration: none;
}
.fb-link svg { width: 22px; height: 22px; flex-shrink: 0; fill: var(--gold-bright); }
.fb-link:hover { color: #fff; text-decoration: underline; }
.fb-link:hover svg { fill: #fff; }
