:root {
  --smalt:       #002D74;
  --smalt-dark:  #001d4e;
  --smalt-mid:   #003080;
  --mariner:     #3474DA;
  --mariner-lt:  #5a8ee0;
  --monza:       #C10230;
  --khaki:       #C1A783;
  --khaki-lt:    #e8ddd0;
  --khaki-pale:  #f7f4f0;
  --white:       #ffffff;
  --off-white:   #f5f3f0;
  --border:      #dbd6cf;
  --text:        #1a1a2a;
  --text-muted:  #5a6070;
}

/* ─── RESET ────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
}
a { color: var(--mariner); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── GOV BANNER ────────────────────────────────────────────── */
.gov-banner {
  background: #f0f0f0;
  border-bottom: 1px solid #ddd;
  padding: 4px 40px;
  font-size: 11px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gov-banner .flag { font-size: 13px; }
.gov-banner strong { font-weight: 600; }

/* ─── SITE HEADER ───────────────────────────────────────────── */
#top-bar {
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-header {
  background: var(--smalt-dark);
  box-shadow: 0 3px 20px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  border-bottom: 1px solid rgba(193,167,131,0.3);
  gap: 20px;
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-seal {
  width: 44px; height: 44px;
  background: var(--khaki);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'EB Garamond', serif;
  font-size: 17px; font-weight: 700;
  color: var(--smalt-dark);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand-text { line-height: 1.35; }
.brand-agency {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.brand-bureau {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}
.header-center {
  flex: 1;
  text-align: center;
}
.header-label {
  font-family: 'EB Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--khaki);
  letter-spacing: 0.02em;
}
.search-wrap {
  position: relative;
  flex-shrink: 0;
}
#search-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 5px;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 12.5px;
  padding: 8px 14px 8px 34px;
  width: 230px;
  outline: none;
  transition: all 0.2s;
}
#search-input::placeholder { color: rgba(255,255,255,0.38); }
#search-input:focus {
  background: rgba(255,255,255,0.13);
  border-color: var(--khaki);
  width: 270px;
}
.search-icon {
  position: absolute;
  left: 10px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.38);
  pointer-events: none;
  font-size: 13px;
}



/* ─── SEARCH DROPDOWN ────────────────────────────────────────── */
#search-results {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 360px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  z-index: 300;
  overflow: hidden;
}
.sr-header {
  background: var(--smalt);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 16px;
}
.sr-item {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.12s;
}
.sr-item:last-child { border-bottom: none; }
.sr-item:hover { background: var(--khaki-pale); }
.sr-name { font-size: 13px; font-weight: 600; color: var(--smalt); }
.sr-office { font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }
.sr-none { padding: 14px 16px; font-size: 13px; color: var(--text-muted); text-align: center; }
mark { background: rgba(193,167,131,0.4); border-radius: 2px; padding: 0 2px; font-style: normal; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.app-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  transition: grid-template-columns 0.25s ease;
}
.app-layout.sb-collapsed {
  grid-template-columns: 44px 1fr;
}

/* ─── SIDEBAR ────────────────────────────────────────────────── */
.sidebar {
  background: var(--smalt);
  padding: 28px 0 40px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(193,167,131,0.3) transparent;
  transition: all 0.25s ease;
}

/* Toggle button */
.sb-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px 16px;
}
.sb-toggle-btn {
  background: rgba(255,255,255,0.07);
  border: none;
  border-radius: 6px;
  width: 28px; height: 28px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1;
  transition: background 0.13s, color 0.13s;
  flex-shrink: 0;
}
.sb-toggle-btn:hover { background: rgba(255,255,255,0.14); color: white; }

/* Collapsed state */
.app-layout.sb-collapsed .sb-label { display: none; }
.app-layout.sb-collapsed .sb-link {
  justify-content: center;
  padding: 10px 0;
}
.app-layout.sb-collapsed .sb-link-text { display: none; }
.app-layout.sb-collapsed .sb-toggle {
  justify-content: center;
  padding: 0 0 16px;
}
.sb-section { margin-bottom: 24px; }
.sb-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--khaki);
  padding: 0 22px 7px;
  border-bottom: 1px solid rgba(193,167,131,0.2);
  margin-bottom: 4px;
}
.sb-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 22px;
  color: rgba(255,255,255,0.58);
  font-size: 12.5px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.13s;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.sb-link:hover { color: rgba(255,255,255,0.88); background: rgba(255,255,255,0.05); text-decoration: none; }
.sb-link.active {
  color: white;
  background: rgba(193,167,131,0.12);
  border-left-color: var(--khaki);
  font-weight: 500;
}
.sb-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}
.sb-link.active .sb-dot { opacity: 1; background: var(--khaki); }

/* ─── MAIN ───────────────────────────────────────────────────── */
.main {
  padding: 40px 48px 80px;
}

/* ─── PAGE SECTIONS ──────────────────────────────────────────── */
.page { display: none; animation: fadeUp 0.28s ease; }
.page.visible { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── BUREAU OVERVIEW ────────────────────────────────────────── */
.overview-hero {
  margin-bottom: 40px;
}
.kicker {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--monza);
  margin-bottom: 8px;
}
.hero-title {
  font-family: 'EB Garamond', serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.18;
  color: var(--smalt-dark);
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* Bureau structure grid */
.bureau-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.bureau-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 12px;
}
.bureau-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.18s;
  display: block;
  text-decoration: none;
}
.bureau-card:hover {
  border-color: var(--mariner);
  box-shadow: 0 4px 18px rgba(52,116,218,0.12);
  transform: translateY(-2px);
  text-decoration: none;
}
.bc-code {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mariner);
  margin-bottom: 4px;
}
.bc-name {
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--smalt);
  margin-bottom: 5px;
  line-height: 1.3;
}
.bc-dir {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.bc-desc {
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 2px;
}

/* Quick contacts summary */
.overview-contacts {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.oc-header {
  background: var(--smalt);
  color: white;
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 24px;
}
.oc-table { width: 100%; border-collapse: collapse; }
.oc-table th {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 20px;
  border-bottom: 2px solid var(--border);
  text-align: left;
  background: var(--khaki-pale);
}
.oc-table td {
  padding: 11px 20px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.oc-table tr:last-child td { border-bottom: none; }
.oc-table tr:hover td { background: var(--khaki-pale); }
.oc-name { font-weight: 600; color: var(--smalt); }
.oc-type {
  display: inline-block;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 3px;
}
.type-fo  { background: rgba(193,167,131,0.2); color: #7a6040; }
.type-reg { background: rgba(52,116,218,0.12); color: #2255aa; }
.type-fn  { background: rgba(193,2,48,0.1);   color: #901028; }

/* ─── OFFICE HEADER CARD ─────────────────────────────────────── */
.office-hero {
  background: var(--smalt-dark);
  border-radius: 12px;
  padding: 30px 36px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.office-hero::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(193,167,131,0.07);
  pointer-events: none;
}
.oh-type-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.oh-badge {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 3px;
}
.oh-badge-fo  { background: rgba(193,167,131,0.25); color: var(--khaki); }
.oh-badge-reg { background: rgba(52,116,218,0.25);  color: #8ab4f0; }
.oh-badge-fn  { background: rgba(193,2,48,0.25);    color: #f07090; }
.oh-code-text { font-size: 11px; color: rgba(255,255,255,0.78); letter-spacing: 0.04em; }
.oh-title {
  font-family: 'EB Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}
.oh-mission {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  border-left: 3px solid var(--khaki);
  padding-left: 16px;
  font-style: italic;
  max-width: 700px;
  margin-bottom: 20px;
}
.oh-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.oh-meta-item { display: flex; flex-direction: column; gap: 2px; }
.oh-meta-label {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.oh-meta-val { font-size: 13px; color: rgba(255,255,255,0.82); }
.oh-meta-val a { color: var(--khaki); }
.oh-meta-val a:hover { color: #d4b990; }

/* ─── WHEN TO CONTACT ────────────────────────────────────────── */
.wtc-box {
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--khaki);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 24px;
}
.wtc-title {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--smalt);
  margin-bottom: 11px;
  display: flex; align-items: center; gap: 7px;
}
.wtc-arrow { color: var(--khaki); font-size: 14px; }
.wtc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.wtc-tag {
  background: var(--khaki-pale);
  border: 1px solid var(--khaki-lt);
  color: var(--text);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ─── SECTION BLOCKS ─────────────────────────────────────────── */
.section-block { margin-bottom: 28px; }
.section-head {
  background: var(--smalt);
  color: white;
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: 7px 7px 0 0;
  letter-spacing: 0.02em;
}
.section-body {
  background: white;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 22px;
}
.section-sub {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--monza);
  margin-bottom: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--border);
}

/* ─── PRIORITIES ─────────────────────────────────────────────── */
.priority-list { list-style: none; }
.priority-item {
  display: flex; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.priority-item:last-child { border-bottom: none; }
.priority-num {
  width: 24px; height: 24px;
  background: var(--smalt);
  color: white;
  font-size: 11px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.priority-text { font-size: 13.5px; line-height: 1.58; }
.priority-text strong { color: var(--smalt); font-weight: 600; }

/* ─── HIGHLIGHTS GRID ────────────────────────────────────────── */
.hl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.hl-card {
  background: var(--khaki-pale);
  border: 1px solid var(--khaki-lt);
  border-radius: 7px;
  padding: 14px 16px;
}
.hl-title { font-size: 12.5px; font-weight: 600; color: var(--smalt); margin-bottom: 5px; }
.hl-body  { font-size: 12px; line-height: 1.55; color: var(--text-muted); }

/* ─── CONTRIBUTIONS ──────────────────────────────────────────── */
.contrib-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.contrib-card {
  background: var(--smalt);
  border-radius: 7px;
  padding: 16px 18px;
}
.contrib-icon { font-size: 20px; margin-bottom: 8px; display: block; }
.contrib-title { font-size: 13px; font-weight: 600; color: white; margin-bottom: 6px; }
.contrib-body { font-size: 12px; color: rgba(255,255,255,0.68); line-height: 1.55; }

/* ─── ORG CHART ──────────────────────────────────────────────── */
.org-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.org-level { display: flex; flex-direction: column; align-items: center; width: 100%; }
.org-center { display: flex; justify-content: center; width: 100%; }
.org-node {
  display: inline-flex;
  flex-direction: column;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 12.5px;
  text-align: center;
  min-width: 170px;
  max-width: 280px;
}
.org-node span { font-size: 11px; opacity: 0.75; display: block; margin-top: 2px; }
.node-top     { background: var(--smalt); color: white; font-weight: 500; }
.node-current { background: var(--khaki); color: var(--smalt-dark); font-weight: 700; }
.node-sub     { background: white; border: 1px solid var(--border); color: var(--smalt); font-weight: 500; }
.node-dark    { background: var(--smalt-mid); color: white; font-weight: 600; }

.org-connector-v {
  width: 2px; height: 20px;
  background: var(--border);
  margin: 0 auto;
}
.org-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  position: relative;
}
.org-row::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 2px;
  background: var(--border);
}
.org-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.org-col .org-connector-v { height: 16px; }

/* ─── CONTACTS TABLE ─────────────────────────────────────────── */
.contacts-table { width: 100%; border-collapse: collapse; }
.contacts-table th {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 9px 14px;
  border-bottom: 2px solid var(--border);
  text-align: left;
  background: var(--khaki-pale);
}
.contacts-table td {
  padding: 11px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.contacts-table tr:last-child td { border-bottom: none; }
.contacts-table tr:hover td { background: #faf9f7; }
.ct-name { font-weight: 600; color: var(--smalt); }
.ct-role { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.ct-email a { color: var(--mariner); font-size: 12px; }
.ct-email a:hover { color: var(--smalt); }
.ct-badge {
  display: inline-block;
  background: rgba(52,116,218,0.1);
  border: 1px solid rgba(52,116,218,0.2);
  border-radius: 4px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mariner);
  padding: 2px 7px;
}

/* ─── DISTRIBUTION LISTS ─────────────────────────────────────── */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.dl-item {
  background: var(--khaki-pale);
  border: 1px solid var(--khaki-lt);
  border-radius: 6px;
  padding: 11px 14px;
}
.dl-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.dl-email a { font-size: 12px; color: var(--mariner); word-break: break-all; }

/* ─── PERSON CARDS ───────────────────────────────────────────── */
.person-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.person-card {
  background: var(--khaki-pale);
  border: 1px solid var(--khaki-lt);
  border-radius: 8px;
  padding: 16px 18px;
}
.person-role { font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mariner); margin-bottom: 5px; }
.person-name { font-family: 'EB Garamond', serif; font-size: 16px; font-weight: 500; color: var(--smalt); margin-bottom: 4px; }
.person-email a { font-size: 12px; color: var(--mariner); }
.person-desc { font-size: 12px; color: var(--text-muted); line-height: 1.55; margin-top: 7px; border-top: 1px solid var(--khaki-lt); padding-top: 7px; }

/* ─── FOOTNOTE ───────────────────────────────────────────────── */
.page-footer {
  margin-top: 48px;
}
.footer-rule {
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}
.footer-body {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  gap: 16px;
}
.footer-text {
  font-family: 'EB Garamond', serif;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── PLACEHOLDER ────────────────────────────────────────────── */
.placeholder {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff3cd; border: 1px solid #f0c040;
  border-radius: 4px; padding: 2px 9px;
  font-size: 11.5px; color: #856404;
  font-style: italic;
}

/* ─── VIZ TABS ───────────────────────────────────────────────── */
.viz-wrap { margin-bottom: 40px; }

.viz-svg-wrap {
  background: #f5f3f0;
  border: 1px solid #dbd6cf;
  border-radius: 8px;
  overflow: hidden;
  padding: 16px;
}
.viz-svg-wrap svg { width: 100%; height: auto; display: block; }
.viz-caption {
  font-size: 11px; color: var(--text-muted);
  text-align: center; padding: 6px 0 0;
  font-style: italic;
}
.vc-node { cursor: pointer; transition: opacity 0.15s; }
.vc-node:hover { opacity: 0.82; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 880px) {
  .app-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; }
  .main { padding: 24px 18px; }
  .hl-grid, .contrib-grid { grid-template-columns: 1fr; }
  .bureau-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 12px 16px; }
  .nav-tabs { padding: 0 16px; }
  .gov-banner { padding: 4px 16px; }
  .header-center { display: none; }
}

/* ─── LEADERSHIP CHAIN ───────────────────────────────────────── */
.chain-section { margin-bottom: 32px; }
.chain-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.chain-node {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 16px;
  width: 100%;
  max-width: 520px;
  box-sizing: border-box;
}
.chain-node.chain-top { border-color: var(--khaki); background: #faf8f5; }
.chain-node-label {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 3px;
}
.chain-node-name {
  font-family: 'EB Garamond', serif;
  font-size: 15px; font-weight: 500; color: var(--smalt-dark);
  line-height: 1.25;
}
.chain-node-sub {
  font-size: 11.5px; color: var(--text-muted); margin-top: 2px;
}
.chain-arrow {
  font-size: 14px; color: var(--border);
  padding: 2px 16px;
  line-height: 1;
}
.chain-note {
  font-size: 12px; color: var(--text-muted);
  border-left: 3px solid var(--khaki);
  padding: 8px 14px;
  background: #faf8f5;
  border-radius: 0 6px 6px 0;
  margin-top: 10px;
  line-height: 1.5;
}

/* ─── MANAGEMENT BOARD ───────────────────────────────────────── */
.mgmt-board-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
}
.mgmt-board-head {
  background: var(--smalt);
  color: white;
  font-family: 'EB Garamond', serif;
  font-size: 15px; font-weight: 500;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 8px;
}
.mgmt-board-body {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}
.mgmt-board-body strong { color: var(--smalt); }

/* ─── INL SECTIONS (OVERSEAS) ────────────────────────────────── */
.sections-intro {
  font-size: 13.5px; color: var(--text-body);
  line-height: 1.7; margin-bottom: 24px;
  max-width: 700px;
}
.sections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}
.section-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: white;
}
.sc-head {
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--border);
}
.sc-size {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 4px;
}
.sc-size-lg { color: var(--mariner); }
.sc-size-md { color: var(--smalt); }
.sc-size-sm { color: var(--text-muted); }
.sc-name {
  font-family: 'EB Garamond', serif;
  font-size: 17px; font-weight: 500; color: var(--smalt-dark);
}
.sc-office {
  font-size: 11px; color: var(--text-muted); margin-top: 2px;
}
.sc-body { padding: 14px 18px; }
.sc-stat {
  font-size: 28px; font-weight: 700;
  color: var(--smalt); font-family: 'EB Garamond', serif;
  line-height: 1;
  margin-bottom: 2px;
}
.sc-stat-label { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; }
.sc-roles { list-style: none; padding: 0; margin: 0; }
.sc-roles li {
  font-size: 12px; color: var(--text-body);
  padding: 3px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 7px;
}
.sc-roles li:last-child { border-bottom: none; }
.sc-roles li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--khaki); flex-shrink: 0;
}
.sections-note {
  font-size: 12.5px; color: var(--text-muted);
  border-left: 3px solid var(--mariner);
  padding: 10px 16px;
  background: #f0f5fc;
  border-radius: 0 6px 6px 0;
  line-height: 1.6;
}

/* ─── SECTION DIVIDER ────────────────────────────────────────── */
.overview-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
.overview-section-title {
  font-family: 'EB Garamond', serif;
  font-size: 22px; font-weight: 500;
  color: var(--smalt-dark);
  margin-bottom: 4px;
}
.overview-section-sub {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 24px;
}

/* ─── PRINT BUTTON ───────────────────────────────────────────── */
.print-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 16px 0 4px;
  padding: 7px 16px;
  background: var(--smalt);
  color: white;
  border: none;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s;
}
.print-btn:hover { background: var(--mariner); }
.print-btn svg { flex-shrink: 0; }

/* ─── PRINT / PDF ────────────────────────────────────────────── */
@media print {
  .gov-banner, #top-bar, .sidebar,
  .wtc-box, .print-btn, .page-footer { display: none !important; }

  .app-layout { display: block !important; grid-template-columns: none !important; }
  .main { padding: 0 !important; }
  .page { display: none !important; }
  .page.visible { display: block !important; }

  .office-hero {
    background: #002D74 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    padding: 20px 24px 16px !important;
    margin-bottom: 16px;
    border-radius: 0 !important;
  }
  .oh-title { font-size: 18px !important; }
  .oh-mission { font-size: 12px !important; }
  .section-block { margin-bottom: 14px !important; }
  .section-head { font-size: 11px !important; padding: 5px 12px !important; }
  .section-body { padding: 10px 14px !important; }
  .priority-text { font-size: 11px !important; }
  .hl-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .hl-card { padding: 8px 10px !important; }
  .hl-title { font-size: 11px !important; }
  .hl-body { font-size: 10.5px !important; }
  .contacts-table { font-size: 10.5px !important; }
  .contacts-table th, .contacts-table td { padding: 5px 8px !important; }
  .dl-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 6px !important; }
  .dl-item { padding: 5px 8px !important; }
  .dl-label { font-size: 9px !important; }
  .dl-email { font-size: 10px !important; }
  body { font-size: 11px !important; }
  @page { margin: 0.6in 0.7in; }
}
