/* ============================================================
   Sterling Medical 2026 — Site CSS
   Editorial extension of the Sterling design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=EB+Garamond:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&icon_names=arrow_forward,call,chevron_right,cloud_sync,domain,encrypted,groups,location_on,mail,medical_services,monitor_heart,notifications,psychiatry,public,stethoscope,support_agent,verified&display=block');

:root {
  --sterling-navy: #0A2472;
  --deep-navy:     #061A4A;
  --ink:           #0B1020;
  --light-steel:   #E6ECF5;
  --soft-offwhite: #F7F8FB;
  /* --paper was a warm (#FBFAF7) variant; collapsed into --soft-offwhite
     so every tinted section reads as one consistent cool off-white. */
  --paper:         #F7F8FB;
  --white:         #FFFFFF;
  --slate:         #4A5568;
  --muted:         #9AA5B8;

  --accent: var(--sterling-navy);

  --font-serif: 'Garamond', 'EB Garamond', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --container: 1320px;
  --gutter: 32px;

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

  --header-h: 84px;
}

/* density tweak — applied via [data-density="compact"] on body */
body[data-density="compact"] { --section-pad: 72px; }
body { --section-pad: 112px; }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--slate);
  font-family: var(--font-sans);
  /* Disable f-ligatures (fi, fl, ff, ffi, ffl) site-wide — Garamond's
     fused glyphs were reading as broken characters in display headings. */
  font-feature-settings: "liga" 0, "clig" 0, "dlig" 0;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 160ms var(--ease); }
a:hover { color: var(--deep-navy); }

::selection { background: var(--accent); color: var(--white); }

/* ----- Type ----- */
.serif, h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}
h2 { font-size: clamp(40px, 5vw, 72px); line-height: 1.02; }
h3 { font-size: clamp(28px, 3vw, 44px); line-height: 1.08; }
h4 { font-size: 22px; line-height: 1.2; letter-spacing: -0.01em; }
p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.no-mark::before { display: none; }
.eyebrow--muted { color: var(--slate); }
.eyebrow--muted::before { background: var(--slate); }
.eyebrow--invert { color: rgba(255,255,255,0.85); }
.eyebrow--invert::before { background: rgba(255,255,255,0.65); }

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* ----- Containers ----- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--wide { max-width: 1480px; margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: var(--section-pad) 0; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 200ms var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--deep-navy); color: var(--white); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--invert { background: var(--white); color: var(--accent); }
.btn--invert:hover { background: var(--soft-offwhite); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--outline-light:hover { background: var(--white); color: var(--accent); border-color: var(--white); }
.btn--lg { padding: 20px 36px; font-size: 13px; }
.btn .material-symbols-outlined { font-size: 18px; }

/* Inline CTA arrow — font-independent replacement for the Material
   Symbols "arrow_forward" glyph so it always renders, even when the
   remote icon font is blocked or slow on mobile. */
.cta-arrow {
  width: 1.15em; height: 1.15em;
  flex: none;
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
}
.btn .cta-arrow { width: 18px; height: 18px; }
.btn--lg .cta-arrow { width: 20px; height: 20px; }
.split__arrow .cta-arrow,
.spec__row-count .cta-arrow,
.job-item__cta .cta-arrow,
.desk__cta .cta-arrow { transition: transform 240ms var(--ease); }
.split__panel:hover .split__arrow .cta-arrow { transform: translateX(8px); }
.spec__row:hover .spec__row-count .cta-arrow { transform: translateX(6px); }
.job-item:hover .job-item__cta .cta-arrow { transform: translateX(6px); }
.desk:hover .desk__cta .cta-arrow { transform: translateX(4px); }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid rgba(10,36,114,0.08);
}
.site-header__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  height: var(--header-h);
}
.site-header__logo img { height: clamp(24px, 5.5vw, 32px); width: auto; display: block; }
.site-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-self: center;
}
.site-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  letter-spacing: -0.005em;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms var(--ease);
}
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }
.site-nav a.is-active { color: var(--accent); }

.site-header__cta { display: flex; gap: 12px; align-items: center; }
.site-header__phone {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
}
.site-header__phone .material-symbols-outlined { font-size: 18px; color: var(--accent); }

/* ----- Footer ----- */
.site-footer { background: var(--deep-navy); color: rgba(255,255,255,0.72); padding: 96px 0 32px; position: relative; overflow: hidden; }
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
}
.site-footer__inner { position: relative; }
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer__brand .serif { color: var(--white); font-size: 40px; line-height: 1.1; margin-bottom: 16px; }
.site-footer__brand p { color: rgba(255,255,255,0.65); font-size: 14px; max-width: 320px; }
.site-footer h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin: 0 0 24px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 12px; }
.site-footer li a { color: rgba(255,255,255,0.85); font-size: 14px; }
.site-footer li a:hover { color: var(--white); }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }
.site-footer__legal a { color: rgba(255,255,255,0.6); }

/* ----- Hero (homepage) ----- */
.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  padding: 64px 0 0;
  border-bottom: 1px solid var(--light-steel);
  isolation: isolate;
}
.hero__grid {
  position: relative;
  z-index: 2;
  max-width: 720px;
  min-height: calc(100vh - var(--header-h) - 64px);
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__copy { padding-bottom: 24px; }
.hero__display {
  font-family: var(--font-serif);
  color: var(--ink);
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 32px 0 40px;
}
.hero__display em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero__display em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.08em;
  background: var(--accent);
  opacity: 0.18;
}
.hero__sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--slate);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
  pointer-events: none;
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: right center;
  filter: saturate(1.02) contrast(1.02);
}
/* Horizontal scrim: opaque paper on the left half so the headline
   sits cleanly over the photo's white-wall negative space; fades to
   transparent on the right where the team is visible. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    var(--paper) 0%,
    var(--paper) 32%,
    rgba(247, 248, 251, 0.85) 48%,
    rgba(247, 248, 251, 0.25) 62%,
    rgba(247, 248, 251, 0) 72%);
}
/* Bottom fade so the stats row sits on a clean band, not on the
   photo's lower edge. */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 220px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, var(--paper) 75%);
}
.hero__photo-meta {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: var(--white);
  z-index: 2;
}
.hero__photo-meta .eyebrow { color: rgba(255,255,255,0.85); }
.hero__photo-meta .eyebrow::before { background: rgba(255,255,255,0.65); }
.hero__photo-meta strong { display: block; font-family: var(--font-serif); font-size: 24px; font-weight: 500; margin-top: 8px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--light-steel);
  padding-top: 32px;
  margin-bottom: 48px;
}
.hero__stat {
  padding-right: 24px;
  border-right: 1px solid var(--light-steel);
}
.hero__stat:last-child { border-right: 0; }
.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate);
  font-weight: 600;
  margin-top: 12px;
}

/* ----- Ticker ----- */
.ticker {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ticker__inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.ticker__label {
  background: var(--accent);
  padding: 18px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--white);
}
.ticker__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.ticker__track {
  display: flex;
  gap: 56px;
  padding: 18px 0;
  animation: scroll 60s linear infinite;
  white-space: nowrap;
}
.ticker__item {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.92);
}
.ticker__item .role { font-weight: 600; color: var(--white); }
.ticker__item .loc { color: rgba(255,255,255,0.6); }
.ticker__item .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Split paths ----- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.split__panel {
  position: relative;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
  transition: all 400ms var(--ease);
}
.split__panel--clinician { background: var(--soft-offwhite); color: var(--ink); }
.split__panel--facility {
  background: var(--deep-navy);
  color: var(--white);
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 28px 28px;
}
.split__panel:hover { padding-left: 80px; }
.split__panel--clinician:hover { background: var(--white); }
.split__panel h2 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 16px; }
.split__panel--facility h2 { color: var(--white); }
.split__panel p { max-width: 380px; margin-bottom: 32px; font-size: 16px; }
.split__panel--facility p { color: rgba(255,255,255,0.75); }
.split__num {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.5;
}
.split__arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  transition: gap 240ms var(--ease);
}
.split__panel:hover .split__arrow { gap: 24px; }
.split__panel:hover .split__arrow .material-symbols-outlined { transform: translateX(8px); }
.split__arrow .material-symbols-outlined { transition: transform 240ms var(--ease); }

/* ----- Map section ----- */
.map-section { background: var(--paper); padding: var(--section-pad) 0; }
.map-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.map-head h2 { font-size: clamp(48px, 6vw, 88px); }
.map-head p { color: var(--slate); font-size: 18px; max-width: 480px; }

.map-wrap {
  position: relative;
  background: var(--white);
  border: 1px solid var(--light-steel);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: stretch;
}
.map-canvas {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--soft-offwhite);
  overflow: hidden;
}
.map-canvas svg { width: 100%; height: 100%; display: block; }
.map-pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--white);
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform 200ms var(--ease);
  box-shadow: 0 0 0 0 rgba(10,36,114,0.4);
  animation: pinPulse 2.4s var(--ease) infinite;
}
.map-pin:nth-child(odd) { animation-delay: 0.6s; }
.map-pin:nth-child(3n) { animation-delay: 1.2s; }
@keyframes pinPulse {
  0% { box-shadow: 0 0 0 0 rgba(10,36,114,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(10,36,114,0); }
  100% { box-shadow: 0 0 0 0 rgba(10,36,114,0); }
}
.map-pin:hover, .map-pin.is-active { transform: translate(-50%,-50%) scale(1.4); animation: none; box-shadow: 0 0 0 6px rgba(10,36,114,0.2); }

.map-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map-side__head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate);
  font-weight: 600;
}
.map-detail {
  background: var(--soft-offwhite);
  padding: 24px;
  border-left: 3px solid var(--accent);
  flex: 1;
}
.map-detail__loc { font-family: var(--font-serif); font-size: 28px; color: var(--ink); margin: 4px 0 16px; }
.map-detail__roles { font-size: 13px; color: var(--slate); }
.map-detail__roles strong { color: var(--ink); display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; }
.map-detail__roles ul { padding: 0; list-style: none; margin: 0; }
.map-detail__roles li { padding: 6px 0; border-bottom: 1px solid var(--light-steel); display: flex; justify-content: space-between; }
.map-detail__roles li:last-child { border-bottom: 0; }
.map-detail__roles li span:last-child { color: var(--accent); font-weight: 600; }

.map-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--light-steel);
  border: 1px solid var(--light-steel);
}
.map-stat { background: var(--white); padding: 20px; }
.map-stat__num { font-family: var(--font-serif); font-size: 36px; color: var(--ink); line-height: 1; }
.map-stat__label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin-top: 8px; font-weight: 600; }

/* ----- Specialty explorer ----- */
.spec { background: var(--white); }
.spec__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.spec__list {
  border-top: 1px solid var(--light-steel);
}
.spec__row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--light-steel);
  cursor: pointer;
  transition: padding 240ms var(--ease);
}
.spec__row:hover { padding-left: 16px; }
.spec__row.is-active { padding-left: 16px; background: var(--soft-offwhite); }
.spec__row-num { font-family: var(--font-serif); color: var(--accent); font-size: 14px; letter-spacing: 0.1em; }
.spec__row-name { font-family: var(--font-serif); font-size: 32px; color: var(--ink); font-weight: 500; letter-spacing: -0.01em; }
.spec__row.is-active .spec__row-name { color: var(--accent); }
.spec__row-count {
  font-size: 13px;
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.spec__row-count .material-symbols-outlined { color: var(--accent); transition: transform 240ms var(--ease); }
.spec__row:hover .spec__row-count .material-symbols-outlined { transform: translateX(6px); }

.spec__detail {
  position: sticky;
  top: 120px;
  background: var(--ink);
  color: var(--white);
  padding: 48px;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 24px 24px;
}
.spec__detail h3 { color: var(--white); margin-bottom: 24px; }
.spec__detail p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 32px; }
.spec__roles { display: flex; flex-direction: column; gap: 0; }
.spec__role {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
}
.spec__role:last-child { border-bottom: 0; }
.spec__role-title { color: var(--white); font-weight: 600; font-size: 15px; }
.spec__role-loc { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.spec__role-comp { color: rgba(255,255,255,0.85); font-size: 13px; text-align: right; font-weight: 500; }
.spec__role-comp small { display: block; color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

/* ----- Manifesto / numbered ----- */
.manifesto {
  background: var(--soft-offwhite);
}
.manifesto__head { margin-bottom: 80px; max-width: 800px; }
.manifesto__head h2 { font-size: clamp(48px, 6vw, 88px); margin-top: 24px; }
.manifesto__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--light-steel);
  border-left: 1px solid var(--light-steel);
}
.manifesto__item {
  padding: 56px 48px;
  border-right: 1px solid var(--light-steel);
  border-bottom: 1px solid var(--light-steel);
  background: var(--white);
  transition: background 240ms var(--ease);
}
.manifesto__item:hover { background: var(--paper); }
.manifesto__num {
  font-family: var(--font-serif);
  color: var(--accent);
  font-size: 80px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 32px;
  display: block;
  letter-spacing: -0.02em;
}
.manifesto__item h3 { font-size: 32px; margin-bottom: 16px; }
.manifesto__item p { color: var(--slate); font-size: 16px; }

/* ----- Recruiters ----- */
.recruiters { background: var(--white); }
.recruiters__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.recruiters__head h2 { font-size: clamp(48px, 6vw, 88px); margin-top: 24px; }
.recruiters__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--light-steel);
  border: 1px solid var(--light-steel);
}
.recruiter {
  background: var(--white);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 240ms var(--ease);
}
.recruiter:hover { background: var(--soft-offwhite); }
.recruiter__avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--soft-offwhite);
}
.recruiter__avatar img { width: 100%; height: 100%; object-fit: cover; }
.recruiter__name { font-family: var(--font-serif); font-size: 24px; color: var(--ink); margin: 0; }
.recruiter__role { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); font-weight: 600; }
.recruiter__contact { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--slate); padding-top: 12px; border-top: 1px solid var(--light-steel); margin-top: auto; }
.recruiter__contact a { display: flex; align-items: center; gap: 8px; color: var(--slate); }
.recruiter__contact a:hover { color: var(--accent); }
.recruiter__contact .material-symbols-outlined { font-size: 16px; }

/* ----- News magazine ----- */
.news { background: var(--paper); }
.news__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  gap: 32px;
}
.news__head h2 { font-size: clamp(48px, 6vw, 88px); margin-top: 24px; }
.news__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
}
.news-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--ink);
  padding-top: 24px;
  cursor: pointer;
  transition: transform 320ms var(--ease);
}
.news-card:hover { transform: translateY(-4px); }
.news-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink);
  margin-bottom: 24px;
  order: -1;
  position: relative;
}
.news-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease);
}
.news-card:hover .news-card__img img { transform: scale(1.04); }
.news-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 16px;
}
.news-card__cat { color: var(--accent); }
.news-card--lead h3 { font-size: clamp(36px, 3.5vw, 56px); }
.news-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.news-card p { color: var(--slate); font-size: 14px; }

/* ----- CTA band ----- */
.cta-band {
  background: var(--ink);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: end;
  position: relative;
}
.cta-band h2 { color: var(--white); font-size: clamp(56px, 7vw, 112px); line-height: 0.95; letter-spacing: -0.025em; }
.cta-band__contacts { display: flex; flex-direction: column; gap: 24px; }
.cta-band__contact { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,0.85); }
.cta-band__contact .material-symbols-outlined { color: var(--accent); background: rgba(255,255,255,0.08); padding: 16px; border-radius: 50%; font-size: 20px; }
.cta-band__contact strong { display: block; font-family: var(--font-serif); font-size: 24px; color: var(--white); font-weight: 500; }
.cta-band__contact small { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); font-weight: 600; }
.cta-band__cta { margin-top: 48px; display: flex; gap: 16px; }

/* ----- Page hero (sub pages) ----- */
.page-hero {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--light-steel);
  position: relative;
}
.page-hero__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: end; }
.page-hero h1 {
  font-size: clamp(64px, 9vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 24px 0 0;
}
.page-hero__sub { font-size: 19px; color: var(--slate); max-width: 480px; }
.page-hero__crumb { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--slate); font-weight: 600; }
.page-hero__crumb a { color: var(--slate); }
.page-hero__crumb a:hover { color: var(--accent); }

/* ----- Trust strip ----- */
.trust {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--light-steel);
}
.trust__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}
.trust__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate);
  font-weight: 600;
  white-space: nowrap;
}
.trust__marks {
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
}
.trust__mark {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 240ms var(--ease);
}
.trust__mark:hover { color: var(--ink); }

/* ----- Generic prose section ----- */
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose p { font-size: 19px; line-height: 1.65; color: var(--slate); margin-bottom: 24px; }
.prose .lead { font-family: var(--font-serif); font-size: 32px; line-height: 1.25; color: var(--ink); font-weight: 500; letter-spacing: -0.01em; margin-bottom: 48px; }

/* ----- Pull quote ----- */
.pullquote {
  border-top: 1px solid var(--ink);
  padding: 64px 0;
  margin: 64px 0;
}
.pullquote__text {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  font-weight: 500;
}
.pullquote__cite {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate);
  font-weight: 600;
}

/* ----- Reveal anim ----- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
  .map-pin { animation: none; }
  .ticker__pulse { animation: none; }
}

/* ----- Tweaks panel ----- */
.tweaks {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 280px;
  background: var(--white);
  border: 1px solid var(--ink);
  z-index: 200;
  display: none;
  font-family: var(--font-sans);
}
.tweaks.is-open { display: block; }
.tweaks__head {
  background: var(--ink);
  color: var(--white);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}
.tweaks__body { padding: 20px; display: flex; flex-direction: column; gap: 18px; }
.tweaks__row label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--slate); margin-bottom: 8px; font-weight: 600; }
.tweaks__opts { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks__opt {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  border: 1px solid var(--light-steel);
  font-size: 11px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--slate);
  transition: all 160ms var(--ease);
}
.tweaks__opt.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.tweaks__swatches { display: flex; gap: 8px; }
.tweaks__sw { flex: 1; height: 36px; cursor: pointer; border: 2px solid transparent; }
.tweaks__sw.is-active { border-color: var(--ink); }

/* ----- Job Search ----- */
.job-search {
  background: var(--white);
  border: 1px solid var(--light-steel);
  padding: 24px;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr auto;
  gap: 16px;
}
.job-search__field { display: flex; flex-direction: column; gap: 6px; }
.job-search__field label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--slate); font-weight: 600; }
.job-search__field input,
.job-search__field select {
  border: 0;
  border-bottom: 1px solid var(--light-steel);
  padding: 8px 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  outline: none;
}
.job-search__field input:focus,
.job-search__field select:focus { border-color: var(--accent); }

/* ----- Job listing ----- */
.jobs-list { border-top: 1px solid var(--ink); }
.job-item {
  display: grid;
  grid-template-columns: 80px 1.5fr 1.2fr 1fr auto;
  gap: 24px;
  padding: 28px 0;
  align-items: center;
  border-bottom: 1px solid var(--light-steel);
  text-decoration: none;
  color: inherit;
  transition: padding 240ms var(--ease);
}
.job-item:hover { padding-left: 16px; padding-right: 16px; background: var(--soft-offwhite); }
.job-item__num { font-family: var(--font-serif); color: var(--accent); font-size: 14px; letter-spacing: 0.1em; }
.job-item__title { font-family: var(--font-serif); font-size: 24px; color: var(--ink); font-weight: 500; letter-spacing: -0.01em; }
.job-item__cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--slate); font-weight: 600; margin-top: 4px; }
.job-item__loc { display: flex; align-items: center; gap: 8px; color: var(--slate); font-size: 14px; }
.job-item__comp { font-family: var(--font-serif); font-size: 18px; color: var(--ink); font-weight: 500; }
.job-item__cta { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); font-weight: 700; }
.job-item__cta .material-symbols-outlined { transition: transform 240ms var(--ease); font-size: 18px; }
.job-item:hover .job-item__cta .material-symbols-outlined { transform: translateX(6px); }

/* ----- Service tiles ----- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-steel);
  border: 1px solid var(--light-steel);
}
.svc {
  background: var(--white);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 240ms var(--ease);
  text-decoration: none;
  color: inherit;
}
.svc:hover { background: var(--soft-offwhite); }
.svc__icon {
  width: 56px; height: 56px;
  background: rgba(10,36,114,0.08);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.svc__icon .material-symbols-outlined { font-size: 28px; }
.svc h3 { font-size: 28px; }
.svc p { color: var(--slate); font-size: 15px; }
.svc__more { margin-top: auto; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; padding-top: 16px; border-top: 1px solid var(--light-steel); }

/* ----- Contact ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}
.form-row { display: grid; gap: 20px; margin-bottom: 24px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-field label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--slate); font-weight: 600; display: block; margin-bottom: 8px; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--light-steel);
  padding: 12px 0;
  font-family: inherit;
  font-size: 17px;
  color: var(--ink);
  background: transparent;
  outline: none;
  transition: border-color 200ms var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--accent); }
.form-field textarea { min-height: 120px; resize: vertical; }

/* ----- Responsive ----- */
@media (max-width: 1100px) {
  /* Below ~1100px there isn't enough room to put copy beside the
     photo's white-wall negative space; revert to the original
     stacked layout: photo on top, copy below. */
  .hero { padding-top: 0; }
  .hero__photo {
    position: relative;
    inset: auto;
    /* Match the source image's native 16/9 so cover doesn't crop
       anyone out of frame on mobile. The earlier 4/3 was lopping
       the rightmost team member off the right edge. */
    aspect-ratio: 16/9;
    z-index: 0;
    margin: 0 calc(var(--gutter) * -1);
  }
  .hero__photo img { object-position: center; }
  .hero::before,
  .hero::after { display: none; }
  .hero__grid {
    max-width: none;
    min-height: 0;
    padding-top: 48px;
    padding-bottom: 48px;
    justify-content: flex-start;
    gap: 32px;
  }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(2) { border-right: 0; }
  .hero__stat:nth-child(1), .hero__stat:nth-child(2) { padding-bottom: 24px; border-bottom: 1px solid var(--light-steel); margin-bottom: 24px; }
  .split { grid-template-columns: 1fr; }
  .map-wrap { grid-template-columns: 1fr; }
  .spec__layout { grid-template-columns: 1fr; gap: 32px; }
  .spec__detail { position: static; }
  .recruiters__grid { grid-template-columns: repeat(2, 1fr); }
  .news__grid { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 48px; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .job-item { grid-template-columns: 40px 1fr auto; }
  .job-item__loc, .job-item__comp { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; }
  .map-head { grid-template-columns: 1fr; }
  .recruiters__head { grid-template-columns: 1fr; }
  .manifesto__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .hero__display { font-size: 56px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .split__panel { padding: 56px 24px; }
  .map-wrap { padding: 24px; }
  .recruiters__grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; gap: 40px; }
  .news-card--lead h3 { font-size: 32px; }
}

/* ============ PARTNERS grid (replaces old .trust strip) ============ */
.partners {
  padding: 96px 0 88px;
  background: var(--paper);
  border-top: 1px solid rgba(10,36,114,0.08);
  border-bottom: 1px solid rgba(10,36,114,0.08);
}
.partners__head {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.4fr);
  gap: 64px;
  align-items: end;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto 56px;
}
.partners__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 16px 0 0;
}
.partners__head h2 em { font-style: italic; color: var(--accent); }
.partners__head p {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
}
.partners__grid {
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(10,36,114,0.12);
  border-left: 1px solid rgba(10,36,114,0.12);
}
.partners__cell {
  aspect-ratio: 2.4 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-navy);
  border-right: 1px solid rgba(10,36,114,0.12);
  border-bottom: 1px solid rgba(10,36,114,0.12);
  padding: 20px 24px;
  background: var(--paper);
  transition: background .35s var(--ease), color .35s var(--ease);
  position: relative;
}
.partners__cell:hover {
  background: var(--white);
  color: var(--accent);
}
.partners__cell svg { width: 100%; height: 100%; max-height: 64px; }
.partners__footnote {
  max-width: var(--container);
  margin: 32px auto 0;
  padding: 0 var(--gutter);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 920px) {
  .partners__head { grid-template-columns: 1fr; gap: 24px; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .partners__grid { grid-template-columns: 1fr; }
}

/* ============ FEDERAL CONTRACTS strip ============ */
.contracts {
  padding: 120px 0;
  background: var(--ink);
  color: var(--paper);
}
.contracts__head {
  max-width: var(--container);
  margin: 0 auto 56px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.4fr);
  gap: 64px;
  align-items: end;
}
.contracts__head .eyebrow { color: rgba(246,240,220,0.6); }
.contracts__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.05;
  color: var(--paper);
  letter-spacing: -0.015em;
  margin: 16px 0 0;
}
.contracts__head p { color: rgba(246,240,220,0.75); font-size: 17px; line-height: 1.65; max-width: 520px;}
.contracts__table {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.contract-row {
  display: grid;
  grid-template-columns: 80px 2fr 1.6fr 1.2fr 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(246,240,220,0.15);
  align-items: center;
}
.contract-row:last-child { border-bottom: 1px solid rgba(246,240,220,0.15); }
.contract-row__id {
  font-family: var(--font-serif);
  font-size: 14px;
  color: rgba(246,240,220,0.5);
  letter-spacing: .06em;
}
.contract-row__title { font-weight: 600; font-size: 17px; color: var(--paper); }
.contract-row__sub { font-size: 13px; color: rgba(246,240,220,0.55); margin-top: 4px;}
.contract-row__agency { font-size: 14px; color: rgba(246,240,220,0.75); }
.contract-row__val {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.contract-row__tag {
  justify-self: end;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(246,240,220,0.35);
  border-radius: 999px;
  color: rgba(246,240,220,0.85);
}
@media (max-width: 820px) {
  .contracts__head { grid-template-columns: 1fr; gap: 20px; }
  .contract-row { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .contract-row__tag { justify-self: start; }
}

/* ============ ENGINEHIRE WIDGET ============ */
.eh-widget {
  background: var(--white);
  border: 1px solid rgba(10,36,114,0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(6,26,74,0.25), 0 2px 4px rgba(10,36,114,0.04);
}
.eh-widget__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: linear-gradient(180deg, #F7F8FB 0%, #EEF1F7 100%);
  border-bottom: 1px solid rgba(10,36,114,0.1);
}
.eh-widget__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--slate);
  font-weight: 500;
  letter-spacing: .04em;
}
.eh-widget__brand-mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, #0A2472 0%, #2D4FBD 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 11px;
  font-family: var(--font-sans);
}
.eh-widget__brand strong { color: var(--ink); font-weight: 700;}
.eh-widget__status { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--slate); letter-spacing:.04em;}
.eh-widget__status-dot { width: 7px; height: 7px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 3px rgba(34,197,94,0.18); animation: ehPulse 2s infinite;}
@keyframes ehPulse { 0%,100%{opacity:1} 50%{opacity:.55} }

.eh-widget__toolbar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 12px;
  padding: 20px 20px 16px;
  background: var(--white);
  border-bottom: 1px solid rgba(10,36,114,0.08);
}
.eh-widget__toolbar label { font-size: 10px; letter-spacing:.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; display:block; margin-bottom: 6px;}
.eh-widget__toolbar .ehf {
  display: flex; flex-direction: column;
}
.eh-widget__toolbar input, .eh-widget__toolbar select {
  font: inherit;
  font-size: 14px;
  padding: 10px 12px;
  background: var(--soft-offwhite);
  border: 1px solid rgba(10,36,114,0.1);
  border-radius: 6px;
  color: var(--ink);
  outline: none;
}
.eh-widget__toolbar input:focus, .eh-widget__toolbar select:focus {
  border-color: var(--accent);
  background: var(--white);
}
.eh-widget__apply {
  align-self: end;
  background: var(--accent);
  color: white;
  border: 0;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  display: flex; align-items:center; gap: 6px;
  letter-spacing:.02em;
}
.eh-widget__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 12px;
  color: var(--slate);
  border-bottom: 1px solid rgba(10,36,114,0.06);
  background: #FAFBFD;
}
.eh-widget__meta strong { color: var(--ink); font-weight: 700;}
.eh-widget__sort { display: flex; align-items: center; gap: 8px;}
.eh-widget__sort select { border: 0; background: transparent; color: var(--ink); font: inherit; font-size: 12px; font-weight: 600; cursor:pointer;}

.eh-widget__list { padding: 8px 0; max-height: 680px; overflow-y: auto; }
.eh-row {
  display: grid;
  grid-template-columns: 28px 2.2fr 1.4fr 1fr 1fr 120px;
  gap: 20px;
  padding: 18px 20px;
  align-items: center;
  border-bottom: 1px solid rgba(10,36,114,0.05);
  text-decoration: none;
  color: inherit;
  transition: background .2s;
  position: relative;
}
.eh-row:hover { background: var(--soft-offwhite); }
.eh-row:last-child { border-bottom: 0; }
.eh-row__num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .06em;
}
.eh-row__title { font-weight: 600; font-size: 15px; color: var(--ink); line-height: 1.3;}
.eh-row__sub { font-size: 12px; color: var(--slate); margin-top:3px; display: flex; gap: 10px; align-items: center;}
.eh-row__sub .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted);}
.eh-row__tag {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 4px;
  background: rgba(10,36,114,0.06); color: var(--accent);
  font-weight: 700; width: fit-content;
}
.eh-row__tag--dod { background: rgba(31,58,95,0.08); color: #1F3A5F;}
.eh-row__tag--va { background: rgba(10,36,114,0.08); color: var(--sterling-navy);}
.eh-row__tag--ihs { background: rgba(140,90,40,0.1); color: #8C5A28;}
.eh-row__tag--dhs { background: rgba(2,68,90,0.08); color: #02445A;}
.eh-row__tag--uscg { background: rgba(186,72,40,0.08); color: #BA4828;}
.eh-row__tag--comm { background: rgba(74,85,104,0.1); color: var(--slate);}
.eh-row__loc { font-size: 13px; color: var(--slate); display: flex; align-items: center; gap: 4px;}
.eh-row__loc .material-symbols-outlined { font-size: 16px; color: var(--accent);}
.eh-row__comp { font-family: var(--font-serif); font-size: 16px; color: var(--ink);}
.eh-row__cta {
  justify-self: end;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px;
  border: 1px solid rgba(10,36,114,0.15);
  border-radius: 4px;
  background: white;
  transition: background .2s, color .2s;
}
.eh-row:hover .eh-row__cta { background: var(--accent); color: white; border-color: var(--accent); }
.eh-row__cta .material-symbols-outlined { font-size: 14px;}

.eh-widget__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #FAFBFD;
  border-top: 1px solid rgba(10,36,114,0.08);
  font-size: 12px;
  color: var(--slate);
}
.eh-widget__pager { display: flex; align-items: center; gap: 6px;}
.eh-widget__pager button {
  width: 28px; height: 28px;
  border: 1px solid rgba(10,36,114,0.12);
  background: white;
  border-radius: 4px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
}
.eh-widget__pager button.is-active { background: var(--accent); color: white; border-color: var(--accent);}
.eh-widget__pager button:hover:not(.is-active) { background: var(--soft-offwhite);}

@media (max-width: 900px) {
  .eh-widget__toolbar { grid-template-columns: 1fr 1fr; }
  .eh-row { grid-template-columns: 1fr 1fr; }
  .eh-row__num, .eh-row__loc, .eh-row__comp, .eh-row__cta { grid-column: span 2;}
}

/* ============ DESKS (replaces Recruiters) ============ */
.desks { padding: var(--section-pad) 0; background: var(--paper); }
.desks__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.desks__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 20px 0 0;
}
.desks__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.desk {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 36px 32px;
  background: var(--white);
  border: 1px solid rgba(10,36,114,0.10);
  text-decoration: none;
  color: var(--ink);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.desk:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(10,36,114,0.18);
  border-color: var(--accent);
}
.desk__head { display: flex; align-items: center; justify-content: space-between; }
.desk__num {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.desk__chip {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate);
  padding: 6px 10px;
  background: var(--soft-offwhite);
  border-radius: 999px;
}
.desk__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 8px 0 0;
  color: var(--ink);
}
.desk__desc { color: var(--slate); font-size: 15px; line-height: 1.65; margin: 0; }
.desk__lines {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(10,36,114,0.08);
}
.desk__line {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink); font-weight: 500;
}
.desk__line .material-symbols-outlined { font-size: 18px; color: var(--accent); }
.desk__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent);
  margin-top: auto;
}
.desk__cta .material-symbols-outlined { font-size: 16px; transition: transform .2s var(--ease); }
.desk:hover .desk__cta .material-symbols-outlined { transform: translateX(4px); }

.desks__foot {
  margin-top: 48px;
  padding: 28px 36px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.desks__foot-copy strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 4px;
}
.desks__foot-copy span { color: rgba(255,255,255,0.7); font-size: 14px; }
.desks__foot-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .desks__head { grid-template-columns: 1fr; gap: 24px; }
  .desks__grid { grid-template-columns: 1fr; }
  .desk__title { font-size: 30px; }
}

/* ============ FEATURED ROLES ============ */
.fjobs { padding: var(--section-pad) 0; background: var(--soft-offwhite); }
.fjobs__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.fjobs__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 20px 0 0;
}
.fjobs__head h2 em { font-style: italic; color: var(--accent); }
.fjobs__group { margin-bottom: 44px; }
.fjobs__group:last-of-type { margin-bottom: 0; }
.fjobs__grouptitle {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(10,36,114,0.12);
}
.fjobs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.fjob {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid rgba(10,36,114,0.10);
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.fjob:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -20px rgba(10,36,114,0.18);
  border-color: var(--accent);
}
.fjob:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.fjob__role {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.fjob__loc {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--slate);
}
.fjob__loc .material-symbols-outlined { font-size: 16px; color: var(--accent); }
.fjob__cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: auto;
}
.fjob__cta .cta-arrow { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.fjob:hover .fjob__cta .cta-arrow { transform: translateX(4px); }
.fjobs__foot {
  margin-top: 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.fjobs__foot span { color: var(--slate); font-size: 15px; max-width: 640px; }
.fjobs__foot-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .fjobs__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
}
@media (max-width: 600px) {
  .fjob { padding: 20px; }
  .fjobs__foot { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============ CREDENTIALING ENGINE ============ */
.credeng {
  padding: var(--section-pad) 0;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.credeng::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.credeng__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
  position: relative;
}
.credeng__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 20px 0 0;
  color: var(--white);
}
.credeng__head h2 em {
  font-style: italic;
  color: var(--accent-light, #C9A961);
}
.credeng__head p {
  color: rgba(255,255,255,0.68);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.credeng__stage {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1fr;
  gap: 24px;
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px;
  min-height: 520px;
}

/* LEFT — doc stack */
.credeng__docs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.credeng__docs-label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
  line-height: 1.5;
}
.credeng__docs-label span {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
  margin-top: 4px;
}
.credeng__doc {
  position: relative;
  padding: 12px 16px 12px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: 'title stamp' 'sub stamp';
  gap: 2px 12px;
  align-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .4s var(--ease);
  opacity: 0.55;
  transform: translateX(calc(var(--i, 0) * -2px));
}
.credeng__doc-bar {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: rgba(255,255,255,0.15);
  transition: background .3s var(--ease);
}
.credeng__doc-title {
  grid-area: title;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.005em;
}
.credeng__doc-sub {
  grid-area: sub;
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
}
.credeng__doc-stamp {
  grid-area: stamp;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.25);
  transition: all .35s var(--ease);
}
.credeng__doc-stamp .material-symbols-outlined { font-size: 16px; }
.credeng__doc.is-active {
  opacity: 1;
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,169,97,0.6);
  transform: translateX(4px);
}
.credeng__doc.is-active .credeng__doc-bar {
  background: var(--accent-light, #C9A961);
  box-shadow: 0 0 12px rgba(201,169,97,0.5);
}
.credeng__doc.is-verified {
  opacity: 1;
  border-color: rgba(120,180,120,0.3);
}
.credeng__doc.is-verified .credeng__doc-bar {
  background: rgba(120,180,120,0.7);
}
.credeng__doc.is-verified .credeng__doc-stamp {
  border-color: rgba(120,180,120,0.7);
  color: rgba(180,220,180,1);
  background: rgba(120,180,120,0.1);
}

/* CENTER — scanner */
.credeng__scanner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.credeng__scanner-label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
}
.credeng__scanner-window {
  flex: 1;
  position: relative;
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  min-height: 380px;
}
.credeng__scanner-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light, #C9A961), transparent);
  box-shadow: 0 0 18px rgba(201,169,97,0.7);
  top: 0;
  animation: credengScan 2.6s linear infinite;
  z-index: 2;
}
@keyframes credengScan {
  0%   { top: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.credeng__scanner-doc {
  position: absolute;
  inset: 24px;
  background: #0E1838;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
}
.credeng__live-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}
.credeng__live-dot {
  width: 8px; height: 8px;
  background: #E14B3A;
  border-radius: 50%;
  animation: credengPulse 1.4s ease-in-out infinite;
}
@keyframes credengPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}
.credeng__live-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: opacity .3s ease;
}
.credeng__live-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.credeng__live-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  font-size: 11.5px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.credeng__live-row span {
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 10px;
}
.credeng__live-row em {
  color: var(--white);
  font-style: normal;
  font-weight: 500;
  font-size: 12.5px;
}
.credeng__live-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.credeng__live-badge {
  padding: 5px 10px;
  border: 1px solid rgba(201,169,97,0.5);
  color: var(--accent-light, #C9A961);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 10px;
  transition: all .3s var(--ease);
}
.credeng__live-badge.is-verified {
  border-color: rgba(120,180,120,0.6);
  color: rgb(180,220,180);
  background: rgba(120,180,120,0.1);
}

/* RIGHT — log feed */
.credeng__log {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.credeng__log-label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.credeng__log-label span {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
  margin-top: 4px;
}
.credeng__log-feed {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.credeng__log-entry {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid rgba(120,180,120,0.6);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .4s ease, transform .4s ease;
}
.credeng__log-entry.is-in { opacity: 1; transform: translateY(0); }
.credeng__log-time {
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.credeng__log-text strong {
  display: block;
  font-size: 12.5px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
}
.credeng__log-text em {
  font-style: normal;
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
}
.credeng__log-icon {
  color: rgb(180,220,180);
  font-size: 18px;
}
.credeng__log-foot {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 16px;
  align-items: center;
}
.credeng__log-stat-num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--accent-light, #C9A961);
}
.credeng__log-stat-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.credeng__log-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  position: relative;
}
.credeng__log-bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-light, #C9A961), rgb(180,220,180));
  transition: width .6s var(--ease);
}

.credeng__foot {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.credeng__foot-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.credeng__foot-num {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--accent-light, #C9A961);
}
.credeng__foot-copy strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}
.credeng__foot-copy span {
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  line-height: 1.6;
}

/* Eyebrow sits on the near-black credentialing section — the default
   dark-blue accent is nearly invisible there, so lighten it. */
.credeng .eyebrow { color: rgba(255,255,255,0.7); }
.credeng .eyebrow::before { background: rgba(255,255,255,0.45); }

@media (max-width: 1080px) {
  .credeng__stage { grid-template-columns: 1fr; gap: 32px; }
  /* The live card is absolutely positioned (inset:24px) inside a
     fixed-height window — fine on desktop, but on a narrow column the
     content reflows taller and gets clipped/overflows. Let it flow. */
  .credeng__scanner-window {
    min-height: 0;
    overflow: visible;
    padding: 20px;
  }
  .credeng__scanner-doc {
    position: static;
    inset: auto;
  }
  .credeng__scanner-line { display: none; }
  .credeng__foot { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 900px) {
  .credeng__head { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .credeng__stage { padding: 20px; min-height: 0; }
  .credeng__scanner-window { padding: 12px; }
  .credeng__scanner-doc { padding: 18px; gap: 12px; }
  /* Stack label over value so long values (e.g. "State Board of
     Nursing") don't get crushed into a 140px column. */
  .credeng__live-row { grid-template-columns: 1fr; gap: 2px; padding: 8px 0; }
  .credeng__live-title { font-size: 18px; }
}

/* ============ WHAT WE STAFF (clean grid) ============ */
.wws { padding: var(--section-pad) 0; background: var(--paper); }
.wws__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.wws__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 20px 0 0;
}
.wws__head p {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}
.wws__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(10,36,114,0.12);
  border-left: 1px solid rgba(10,36,114,0.12);
}
.wws__card {
  padding: 36px 32px 32px;
  background: var(--white);
  border-right: 1px solid rgba(10,36,114,0.12);
  border-bottom: 1px solid rgba(10,36,114,0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s var(--ease);
  position: relative;
}
.wws__card:hover { background: var(--soft-offwhite); }
.wws__card::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .4s var(--ease);
}
.wws__card:hover::after { width: 100%; }
.wws__card-num {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.wws__card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.wws__card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--slate);
  margin: 0;
}
.wws__card-tags {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wws__card-tags span {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate);
  padding: 4px 9px;
  background: var(--soft-offwhite);
  border: 1px solid rgba(10,36,114,0.08);
  border-radius: 999px;
}
.wws__foot {
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.wws__foot span {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
}

@media (max-width: 900px) {
  .wws__head { grid-template-columns: 1fr; gap: 24px; }
  .wws__grid { grid-template-columns: 1fr; }
  .wws__card h3 { font-size: 26px; }
}


/* ============ CBOC TURNKEY ============ */
.cboc {
  padding: 112px 0 96px;
  background: var(--paper);
  position: relative;
}
.cboc__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(10,36,114,0.12);
}
.cboc__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 20px 0 0;
}
.cboc__head h2 em {
  font-style: italic;
  color: var(--accent);
}
.cboc__head p {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.cboc__head p strong { color: var(--ink); font-weight: 600; }

.cboc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cboc__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(10,36,114,0.18);
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  border-radius: 999px;
}
.cboc__chip .material-symbols-outlined { font-size: 16px; color: var(--accent); }

.cboc__phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(10,36,114,0.12);
  border-left: 1px solid rgba(10,36,114,0.12);
}
.cboc__phase {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 40px;
  background: var(--white);
  border-right: 1px solid rgba(10,36,114,0.12);
  border-bottom: 1px solid rgba(10,36,114,0.12);
}
.cboc__phase-rail {
  position: relative;
  padding-top: 6px;
}
.cboc__phase-rail span {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 38px;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
}
.cboc__phase-rail::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  top: 52px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.35;
  margin-left: 12px;
}
.cboc__phase-body h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px;
}
.cboc__phase-body p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px;
}
.cboc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cboc__list li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.cboc__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 2px;
  background: var(--accent);
}

.cboc__foot {
  margin-top: 48px;
  padding: 36px;
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  gap: 48px;
  align-items: center;
}
.cboc__foot-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cboc__foot-num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent-light, #C9A961);
}
.cboc__foot-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  line-height: 1.45;
}
.cboc__foot-cta {
  justify-self: end;
}

@media (max-width: 1080px) {
  .cboc__phases { grid-template-columns: 1fr; }
  .cboc__foot { grid-template-columns: 1fr; gap: 24px; }
  .cboc__foot-cta { justify-self: start; }
}
@media (max-width: 900px) {
  .cboc__head { grid-template-columns: 1fr; gap: 24px; padding-bottom: 40px; margin-bottom: 48px; }
  .cboc__phase { grid-template-columns: 64px 1fr; padding: 28px; gap: 16px; }
  .cboc__phase-rail span { font-size: 28px; }
  .cboc__phase-body h3 { font-size: 24px; }
  .cboc__foot-num { font-size: 44px; }
}


/* ============ CBOC BUILD-OUT ANIMATION ============ */
.cbo {
  margin-top: 64px;
  padding: 48px;
  background: var(--white);
  border: 1px solid rgba(10,36,114,0.1);
  border-radius: 2px;
}
.cbo__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(10,36,114,0.1);
}
.cbo__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 0;
}
.cbo__head h2 em { font-style: italic; color: var(--accent); }
.cbo__head p {
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.cbo__stage {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.cbo__plan {
  background: #FBFAF7;
  border: 1px solid rgba(10,36,114,0.12);
  padding: 20px;
}
.cbo__plan-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(10,36,114,0.08);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cbo__plan-title { font-weight: 700; color: var(--ink); }
.cbo__plan-meta {
  display: flex;
  gap: 8px;
  color: var(--slate);
  font-weight: 600;
}
.cbo__svg {
  width: 100%;
  height: auto;
  display: block;
  background: var(--white);
  border: 1px solid rgba(10,36,114,0.08);
}
.cbo__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 14px;
  font-size: 11px;
  color: var(--slate);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cbo__legend-item { display: inline-flex; align-items: center; gap: 6px; }
.cbo__sw {
  width: 12px; height: 10px;
  border: 1px solid var(--accent);
  display: inline-block;
}
.cbo__sw--pact { background: rgba(10,36,114,0.10); }
.cbo__sw--mh   { background: rgba(193,155,90,0.12); border-color: #C19B5A; }
.cbo__sw--clin { background: rgba(10,36,114,0.06); }
.cbo__sw--pub  { background: rgba(10,36,114,0.05); }

.cbo__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cbo__counter {
  padding: 16px 18px;
  background: var(--ink);
  color: var(--white);
}
.cbo__counter-day {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-bottom: 10px;
}
.cbo__counter-day span {
  font-family: var(--font-serif);
  font-size: 36px;
  color: #C19B5A;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  padding-right: 4px;
}
.cbo__counter-bar {
  height: 3px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}
.cbo__counter-bar-fill {
  height: 100%;
  background: #C19B5A;
  transition: width 0.1s linear;
}

.cbo__phase-now {
  padding: 18px;
  background: var(--paper);
  border-left: 3px solid var(--accent);
}
.cbo__phase-now-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
  margin-bottom: 8px;
}
.cbo__phase-now h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cbo__phase-now p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}

.cbo__tallies {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.cbo__tally {
  padding: 14px 10px;
  border: 1px solid rgba(10,36,114,0.12);
  text-align: center;
}
.cbo__tally-num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.cbo__tally-num span {
  font-size: 14px;
  color: var(--slate);
  font-weight: 400;
}
.cbo__tally-label {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  line-height: 1.3;
}

.cbo__roster {
  padding: 16px;
  background: var(--paper);
}
.cbo__roster-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
  margin-bottom: 10px;
}
.cbo__roster ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cbo__roster li {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted);
  padding: 4px 0;
  border-bottom: 1px dotted rgba(10,36,114,0.08);
  transition: color 0.3s ease;
}
.cbo__roster li.is-on { color: var(--ink); }
.cbo__roster li.is-on .cbo__roster-count { color: var(--accent); font-weight: 700; }
.cbo__roster-count { font-variant-numeric: tabular-nums; font-weight: 500; }

.cbo__scrubber {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(10,36,114,0.08);
  position: relative;
}
.cbo__scrubber-ticks {
  position: relative;
  height: 40px;
  margin: 0 10px 8px;
}
.cbo__scrubber-line {
  position: absolute;
  left: 0; right: 0; top: 18px;
  height: 2px;
  background: rgba(10,36,114,0.15);
}
.cbo__scrubber-fill {
  position: absolute;
  left: 0; top: 18px;
  height: 2px;
  background: var(--accent);
  transition: width 0.1s linear;
}
.cbo__scrubber-head {
  position: absolute;
  top: 12px;
  width: 14px; height: 14px;
  background: #C19B5A;
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: left 0.1s linear;
  pointer-events: none;
}
.cbo__scrubber-tick {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}
.cbo__scrubber-tick-line {
  position: absolute;
  top: 14px; left: 50%;
  width: 1px; height: 10px;
  background: rgba(10,36,114,0.3);
  transform: translateX(-50%);
}
.cbo__scrubber-tick-label {
  position: absolute;
  top: 26px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--slate);
  font-weight: 600;
  white-space: nowrap;
}
.cbo__scrubber-input {
  position: absolute;
  left: 10px; right: 10px; top: 28px;
  width: calc(100% - 20px);
  height: 20px;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
.cbo__scrubber-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cbo__btn {
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  cursor: pointer;
  font-family: inherit;
}
.cbo__btn--ghost {
  background: transparent;
  color: var(--ink);
}
.cbo__btn:disabled { opacity: 0.4; cursor: not-allowed; }
.cbo__scrubber-note {
  margin-left: auto;
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  max-width: 580px;
  line-height: 1.4;
}

@media (max-width: 1080px) {
  .cbo__stage { grid-template-columns: 1fr; }
  .cbo__head { grid-template-columns: 1fr; gap: 16px; }
  .cbo__plan-meta { flex-wrap: wrap; }
  .cbo__scrubber-note { margin-left: 0; }
}
@media (max-width: 720px) {
  .cbo { padding: 24px; margin-top: 40px; }
}


/* ============ PARTNERS SHOWCASE V2 ============ */
.partners-v2 {
  padding: 120px 0 100px;
  background: var(--paper);
  border-top: 1px solid rgba(10,36,114,0.08);
}
.partners-v2__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  max-width: var(--container);
  margin: 0 auto 64px;
  padding: 0 var(--gutter);
}
.partners-v2__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 16px 0 0;
}
.partners-v2__head h2 em { font-style: italic; color: var(--accent); }
.partners-v2__head p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}
.partners-v2__footnote {
  max-width: var(--container);
  margin: 48px auto 0;
  padding: 0 var(--gutter);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Showcase component ---------- */
.pshow {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.pshow__stage {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: stretch;
  min-height: 420px;
  padding: 48px 0;
  border-top: 1px solid rgba(10,36,114,0.12);
  border-bottom: 1px solid rgba(10,36,114,0.12);
  position: relative;
}
.pshow__stage::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--ink);
  max-width: 80px;
}

/* ---- Left display ---- */
.pshow__display {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.pshow__numerator {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--slate);
  font-weight: 600;
}
.pshow__numerator span:first-child { color: var(--ink); font-weight: 700; }
.pshow__slash { color: var(--muted); padding: 0 6px; }

.pshow__crossfade {
  opacity: 1;
  animation: pshow-in 0.7s var(--ease);
}
@keyframes pshow-in {
  0%   { opacity: 0.01; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.pshow__abbr-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(10,36,114,0.1);
}
.pshow__abbr {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--accent);
  opacity: 1;
  animation: pshow-abbr 0.9s var(--ease);
}
@keyframes pshow-abbr {
  0%   { opacity: 0.01; letter-spacing: 0; filter: blur(4px); }
  100% { opacity: 1; letter-spacing: -0.04em; filter: blur(0); }
}
.pshow__scope {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  padding-bottom: 8px;
}

.pshow__kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--slate);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.pshow__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 4px 0 20px;
}
.pshow__detail {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 540px;
  margin: 0;
}

/* ---- Right roster ---- */
.pshow__roster {
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  border-left: 1px solid rgba(10,36,114,0.1);
}
.pshow__roster-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
  margin-bottom: 18px;
}
.pshow__roster-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pshow__roster-item {
  display: grid;
  grid-template-columns: 28px minmax(52px, auto) 1fr 20px;
  gap: 14px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(10,36,114,0.12);
  cursor: pointer;
  transition: background 0.2s ease, padding 0.3s var(--ease);
  position: relative;
}
.pshow__roster-item:hover {
  padding-left: 6px;
}
.pshow__roster-item.is-active {
  padding-left: 14px;
  background: linear-gradient(to right, rgba(10,36,114,0.04), transparent 70%);
}
.pshow__roster-item.is-active::before {
  content: '';
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 3px;
  background: var(--accent);
}
.pshow__roster-num {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.pshow__roster-abbr {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.pshow__roster-item.is-active .pshow__roster-abbr { color: var(--accent); }
.pshow__roster-item.is-past .pshow__roster-abbr { color: var(--muted); }
.pshow__roster-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.3;
  transition: color 0.3s ease;
}
.pshow__roster-item.is-active .pshow__roster-name { color: var(--ink); }
.pshow__roster-mark {
  font-size: 10px;
  color: var(--accent);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.pshow__roster-item.is-past .pshow__roster-mark { color: #2D7A4D; }

/* ---- Progress rail ---- */
.pshow__rail {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  margin-top: 24px;
}
.pshow__seg {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  height: 3px;
  position: relative;
  overflow: hidden;
}
.pshow__seg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,36,114,0.12);
}
.pshow__seg-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--accent);
  transition: width 0.08s linear;
}
.pshow__seg:hover::before { background: rgba(10,36,114,0.22); }
.pshow__seg.is-active .pshow__seg-fill { background: var(--accent); }
.pshow__seg.is-past .pshow__seg-fill { background: #C19B5A; }

@media (max-width: 980px) {
  .partners-v2__head { grid-template-columns: 1fr; gap: 24px; }
  .pshow__stage { grid-template-columns: 1fr; gap: 40px; padding: 32px 0; }
  .pshow__roster { padding-left: 0; border-left: none; padding-top: 24px; border-top: 1px solid rgba(10,36,114,0.1); }
}
@media (max-width: 640px) {
  .pshow__rail { grid-template-columns: repeat(5, 1fr); }
  .pshow__roster-item { grid-template-columns: 22px minmax(44px, auto) 1fr; }
  .pshow__roster-mark { display: none; }
}


/* ============ CBOC 150-DAY TIMELINE ============ */
.cboct {
  margin: 80px 0 20px;
}
.cboct__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.cboct__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 16px 0 0;
}
.cboct__head h2 em { font-style: italic; color: var(--accent); }
.cboct__head p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

/* --- Hero counter --- */
.cboct__hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding: 56px 48px;
  background: var(--ink);
  color: #fff;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.cboct__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(193,155,90,0.12), transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(255,255,255,0.04), transparent 50%);
  pointer-events: none;
}
.cboct__hero-left { position: relative; z-index: 1; }
.cboct__hero-right { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: flex-end; }

.cboct__day-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.cboct__day-num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(96px, 14vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}
.cboct__day-total {
  font-size: clamp(24px, 3vw, 36px);
  color: rgba(255,255,255,0.45);
  font-style: italic;
  letter-spacing: -0.02em;
}

.cboct__phase-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  animation: cboct-chip-in 0.6s var(--ease);
  margin-bottom: 14px;
}
@keyframes cboct-chip-in {
  0%   { opacity: 0.01; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cboct__phase-chip-num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(193,155,90,0.18);
  padding: 4px 8px;
  border-radius: 100px;
  font-variant-numeric: tabular-nums;
}
.cboct__phase-chip-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.01em;
}
.cboct__phase-detail {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0;
  animation: cboct-chip-in 0.6s var(--ease);
}

.cboct__stamp {
  text-align: right;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  min-width: 200px;
}
.cboct__stamp--building { border-color: rgba(255,255,255,0.14); }
.cboct__stamp-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.cboct__stamp-value {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.cboct__stamp:not(.cboct__stamp--building) .cboct__stamp-value { color: var(--accent); }
.cboct__stamp-note {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

/* --- Calendar band --- */
.cboct__band {
  margin-top: 32px;
  padding: 32px 0 80px;
  border-bottom: 1px solid rgba(10,36,114,0.1);
}
.cboct__band-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 18px;
}
.cboct__band-track {
  position: relative;
  height: 28px;
}
.cboct__band-weeks {
  display: grid;
  grid-template-columns: repeat(22, 1fr);
  gap: 3px;
  height: 28px;
}
.cboct__band-week {
  height: 100%;
  background: rgba(10,36,114,0.06);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.cboct__band-week-fill {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform-origin: left center;
  transition: transform 0.1s linear;
}

.cboct__band-markers {
  position: absolute;
  left: 0; right: 0;
  top: 32px;
  height: 64px;
  pointer-events: none;
}
.cboct__marker {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  transition: top 0.3s var(--ease);
}
.cboct__marker--left {
  transform: none;
}
.cboct__marker--right {
  transform: translateX(-100%);
}
.cboct__marker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(10,36,114,0.25);
  margin: 0 auto 8px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}
.cboct__marker.is-reached .cboct__marker-dot {
  background: var(--ink);
  border-color: var(--ink);
}
.cboct__marker.is-active .cboct__marker-dot {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(193,155,90,0.2);
}
.cboct__marker-label {
  text-align: center;
  min-width: 90px;
  transform: translateX(-50%);
  margin-left: 50%;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.cboct__marker--left .cboct__marker-label {
  transform: none;
  margin-left: 0;
  text-align: left;
  min-width: 0;
}
.cboct__marker--right .cboct__marker-label {
  transform: none;
  margin-left: 0;
  text-align: right;
  min-width: 0;
}
.cboct__marker.is-reached .cboct__marker-label { opacity: 1; }
.cboct__marker-day {
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 2px;
  font-variant-numeric: tabular-nums;
}
.cboct__marker-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.cboct__playhead {
  position: absolute;
  top: -6px;
  bottom: -6px;
  transform: translateX(-50%);
  pointer-events: none;
  transition: left 0.08s linear;
}
.cboct__playhead-line {
  width: 2px;
  height: 100%;
  background: var(--accent);
  margin: 0 auto;
  box-shadow: 0 0 8px rgba(193,155,90,0.4);
}

/* Compact phase legend — hidden on desktop (inline marker labels are used);
   shown on narrow screens where the absolute labels would overlap */
.cboct__band-legend {
  display: none;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.cboct__legend-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 10px;
  border-left: 2px solid rgba(10,36,114,0.15);
  opacity: 0.55;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.cboct__legend-item.is-reached { opacity: 1; }
.cboct__legend-item.is-reached { border-left-color: var(--ink); }
.cboct__legend-item.is-active {
  border-left-color: var(--accent);
  opacity: 1;
}
.cboct__legend-day {
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--slate);
  font-variant-numeric: tabular-nums;
}
.cboct__legend-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.25;
}

/* --- Category tiles --- */
.cboct__tiles {
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(10,36,114,0.1);
}
.cboct__tiles-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 24px;
}
.cboct__tiles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(10,36,114,0.1);
  border: 1px solid rgba(10,36,114,0.1);
}
.cboct__tile {
  background: var(--paper);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  transition: background 0.4s ease;
  position: relative;
}
.cboct__tile.is-lit {
  background: #fff;
}
.cboct__tile--open {
  background: var(--ink) !important;
  color: #fff;
}
.cboct__tile-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.cboct__tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(10,36,114,0.3);
  transition: color 0.4s ease, transform 0.4s var(--ease);
}
.cboct__tile-svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cboct__tile.is-lit .cboct__tile-icon {
  color: var(--accent);
  transform: scale(1.1);
}
.cboct__tile--open .cboct__tile-icon { color: var(--accent); }
.cboct__btn-ic {
  width: 16px;
  height: 16px;
  display: block;
}
.cboct__tile-num {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: rgba(10,36,114,0.4);
  font-variant-numeric: tabular-nums;
}
.cboct__tile.is-lit .cboct__tile-num { color: var(--slate); }
.cboct__tile--open .cboct__tile-num { color: rgba(255,255,255,0.5); }
.cboct__tile-label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}
.cboct__tile--open .cboct__tile-label { color: #fff; }
.cboct__tile-meta {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.4s ease;
}
.cboct__tile.is-lit .cboct__tile-meta { color: var(--accent); }
.cboct__tile--open .cboct__tile-meta { color: var(--accent); }
.cboct__tile-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: rgba(10,36,114,0.08);
}
.cboct__tile-bar-fill {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}

/* --- Controls --- */
.cboct__controls {
  margin-top: 32px;
}
.cboct__scrub {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: rgba(10,36,114,0.15);
  border-radius: 2px;
  outline: none;
  margin-bottom: 20px;
  cursor: pointer;
}
.cboct__scrub::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--ink);
}
.cboct__scrub::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--ink);
}
.cboct__controls-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cboct__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 2px;
}
.cboct__btn:hover:not(:disabled) { background: #081c5a; }
.cboct__btn:disabled { opacity: 0.5; cursor: not-allowed; }
.cboct__btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(10,36,114,0.3);
}
.cboct__btn--ghost:hover { background: rgba(10,36,114,0.04); }
.cboct__btn .material-symbols-outlined { font-size: 18px !important; }
.cboct__note {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  margin-left: auto;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .cboct__head { grid-template-columns: 1fr; gap: 24px; }
  .cboct__hero { grid-template-columns: 1fr; padding: 36px 28px; }
  .cboct__hero-right { justify-content: flex-start; }
  .cboct__stamp { text-align: left; }
  .cboct__band-weeks { grid-template-columns: repeat(22, 1fr); gap: 2px; }
  .cboct__tiles-grid { grid-template-columns: repeat(2, 1fr); }
  /* Inline labels overlap at phone widths — collapse to dots + legend */
  .cboct__band { padding: 28px 0 28px; }
  .cboct__band-markers { height: 16px; }
  .cboct__marker-label { display: none; }
  .cboct__band-legend { display: grid; }
  .cboct__note { margin-left: 0; }
}


/* ============ PERSISTENT SITE CHROME — Ticker stuck below sticky header ============ */
/* Ticker used as permanent chrome: sticks at top:var(--header-h) so it sits right beneath the header */
.ticker.ticker--top {
  position: sticky;
  top: var(--header-h);
  z-index: 99; /* just under header (100) so header shadow/blur sits over it cleanly */
}
/* Slightly tighter proportions when the ticker is site chrome */
.ticker.ticker--top .ticker__label { padding: 12px 20px; font-size: 10.5px; }
.ticker.ticker--top .ticker__track { padding: 12px 0; }
.ticker.ticker--top .ticker__item  { font-size: 13px; }

/* Only on phone-landscape (very short viewports) do we drop the stickiness so chrome doesn't eat the screen */
@media (max-height: 460px) {
  .ticker.ticker--top { position: static; }
}


/* ============================================================
   THREE P'S — Canonical core-values treatment (core-values.html)
   ============================================================ */
.threep { padding-top: 24px; }
.threep__row {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.3fr;
  gap: 72px;
  align-items: start;
  padding: 88px 0;
  border-top: 1px solid rgba(10,36,114,0.08);
}
.threep__row:last-of-type { border-bottom: 1px solid rgba(10,36,114,0.08); }
.threep__row--offset { direction: rtl; }
.threep__row--offset > * { direction: ltr; }

.threep__glyph {
  position: sticky;
  top: calc(var(--header-h) + 72px);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(180px, 22vw, 340px);
  line-height: 0.82;
  color: var(--sterling-navy);
  letter-spacing: -0.04em;
  display: flex;
  align-items: baseline;
  user-select: none;
}
.threep__glyph-dot {
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  transform: translateX(-0.05em);
}

.threep__body { padding-top: 36px; max-width: 620px; }
.threep__body .eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--accent);
}
.threep__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 32px;
}
.threep__lead {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  margin: 0 0 24px;
  max-width: 560px;
}
.threep__body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate);
  margin: 0;
  max-width: 560px;
}

@media (max-width: 960px) {
  .threep__row,
  .threep__row--offset { grid-template-columns: 1fr; gap: 24px; padding: 56px 0; direction: ltr; }
  .threep__glyph { position: static; font-size: clamp(140px, 34vw, 220px); }
  .threep__body { padding-top: 0; }
}

/* ============================================================
   COMMITMENTS — Three P's triptych card row
   ============================================================ */
.threep-strip {
  background: var(--soft-offwhite);
  padding: 96px 0;
  border-top: 1px solid rgba(10,36,114,0.06);
  border-bottom: 1px solid rgba(10,36,114,0.06);
}
.threep-strip__head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.threep-strip__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 12px 0 0;
}
.threep-strip__head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.threep-strip__head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 540px;
  margin: 0;
}
.threep-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(10,36,114,0.1);
  border: 1px solid rgba(10,36,114,0.1);
}
.threep-strip__card {
  background: var(--white);
  padding: 48px 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  min-height: 340px;
}
.threep-strip__card-num {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.threep-strip__card h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.threep-strip__card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}
.threep-strip__card-foot {
  margin-top: auto;
  padding-top: 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 900px) {
  .threep-strip__head { grid-template-columns: 1fr; gap: 16px; }
  .threep-strip__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOTION · ABOUT — Animated globe of active assignments
   ============================================================ */
.globe-motion {
  background: var(--deep-navy);
  color: var(--white);
  padding: 112px 0 96px;
  position: relative;
  overflow: hidden;
}
.globe-motion::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 70% 30%, rgba(10,36,114,0.8), transparent 70%),
    radial-gradient(800px 400px at 10% 90%, rgba(74,144,255,0.12), transparent 70%);
  pointer-events: none;
}
.globe-motion__inner { position: relative; }
.globe-motion__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.globe-motion__head .eyebrow { color: rgba(255,255,255,0.6); letter-spacing: 0.22em; font-size: 11px; }
.globe-motion__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 16px 0 0;
}
.globe-motion__head h2 em { font-style: italic; color: #9BB8FF; font-weight: 400; }
.globe-motion__head p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0;
}

.globe-motion__stage {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: center;
}

.globe-map { position: relative; aspect-ratio: 2 / 1; width: 100%; max-width: 860px; }
.globe-map svg { width: 100%; height: 100%; display: block; }
.globe-map__countries { fill: rgba(155,184,255,0.06); stroke: rgba(155,184,255,0.18); stroke-width: 0.4; stroke-linejoin: round; }
.globe-map__grid { stroke: rgba(255,255,255,0.05); fill: none; stroke-width: 0.4; }

.globe-pin__ring {
  fill: none;
  stroke: #9BB8FF;
  stroke-width: 1.5;
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0;
  animation: globePulse 3.2s var(--ease) infinite;
}
.globe-pin__core {
  fill: #9BB8FF;
  filter: drop-shadow(0 0 6px #9BB8FF);
}
.globe-pin__label {
  fill: rgba(255,255,255,0.75);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@keyframes globePulse {
  0%   { opacity: 0.9; transform: scale(0.6); }
  60%  { opacity: 0;   transform: scale(3.2); }
  100% { opacity: 0;   transform: scale(3.2); }
}

.globe-panel { display: flex; flex-direction: column; gap: 24px; }
.globe-counter {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.globe-counter__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.globe-counter__label::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6);
  animation: pulse 2s var(--ease) infinite;
}
.globe-counter__num {
  font-family: var(--font-serif);
  font-size: clamp(64px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--white);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.globe-counter__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  line-height: 1.5;
}

.globe-feed {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px 28px;
  backdrop-filter: blur(10px);
  min-height: 232px;
}
.globe-feed__head {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.globe-feed__list { list-style: none; margin: 0; padding: 0; }
.globe-feed__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  opacity: 0;
  transform: translateY(-8px);
  animation: globeFeedIn 0.5s var(--ease) forwards;
}
.globe-feed__item:first-child { border-top: none; }
.globe-feed__item .code {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #9BB8FF;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  align-self: center;
}
.globe-feed__item .role { color: var(--white); font-weight: 500; align-self: center; }
.globe-feed__item .loc { color: rgba(255,255,255,0.55); font-size: 12px; align-self: center; text-align: right; }
@keyframes globeFeedIn { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 960px) {
  .globe-motion__head { grid-template-columns: 1fr; gap: 20px; }
  .globe-motion__stage { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   ABOUT — Worldwide facilities map (VA / DoD / IHS / USCG)
   ============================================================ */
.globe-motion__stage--map {
  display: block;
  margin-top: 16px;
}
.globe-map--wide {
  max-width: none;
  width: 100%;
  aspect-ratio: 2 / 1;
}

/* Category colors */
.facilities-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  padding: 18px 22px;
  margin: 0 0 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 4px;
}
.facilities-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.facilities-legend__dot {
  width: 10px; height: 10px; border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}
.facilities-legend__item[data-cat="va"]   { color: #9BB8FF; }
.facilities-legend__item[data-cat="dod"]  { color: #E8B96A; }
.facilities-legend__item[data-cat="ihs"]  { color: #7DD3A8; }
.facilities-legend__item[data-cat="uscg"] { color: #FF9A7A; }
.facilities-legend__item[data-cat="va"]   .facilities-legend__dot { background: #9BB8FF; }
.facilities-legend__item[data-cat="dod"]  .facilities-legend__dot { background: #E8B96A; }
.facilities-legend__item[data-cat="ihs"]  .facilities-legend__dot { background: #7DD3A8; }
.facilities-legend__item[data-cat="uscg"] .facilities-legend__dot { background: #FF9A7A; }

/* Pins, colored by category */
.facility-pin {
  fill: none;
  stroke-width: 1.1;
  opacity: 0.85;
}
.facility-pin--va   { stroke: #9BB8FF; }
.facility-pin--dod  { stroke: #E8B96A; }
.facility-pin--ihs  { stroke: #7DD3A8; }
.facility-pin--uscg { stroke: #FF9A7A; }
.facility-pin__core--va   { fill: #9BB8FF; filter: drop-shadow(0 0 5px #9BB8FF); }
.facility-pin__core--dod  { fill: #E8B96A; filter: drop-shadow(0 0 5px #E8B96A); }
.facility-pin__core--ihs  { fill: #7DD3A8; filter: drop-shadow(0 0 5px #7DD3A8); }
.facility-pin__core--uscg { fill: #FF9A7A; filter: drop-shadow(0 0 5px #FF9A7A); }

/* Four-column lists below the map */
.facilities-lists {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}
.facilities-col {
  min-width: 0;
}
.facilities-col__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.facilities-col__dot {
  width: 10px; height: 10px; border-radius: 50%;
  flex: 0 0 auto;
}
.facilities-col[data-cat="va"]   .facilities-col__dot { background: #9BB8FF; box-shadow: 0 0 8px #9BB8FF; }
.facilities-col[data-cat="dod"]  .facilities-col__dot { background: #E8B96A; box-shadow: 0 0 8px #E8B96A; }
.facilities-col[data-cat="ihs"]  .facilities-col__dot { background: #7DD3A8; box-shadow: 0 0 8px #7DD3A8; }
.facilities-col[data-cat="uscg"] .facilities-col__dot { background: #FF9A7A; box-shadow: 0 0 8px #FF9A7A; }
.facilities-col__head h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 0;
  flex: 1;
  line-height: 1.25;
}
.facilities-col__count {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.facilities-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.facility-row {
  display: block;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.facility-row:last-child { border-bottom: none; }
.facility-row__name {
  display: block;
  color: rgba(255,255,255,0.92);
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 500;
}
.facility-row__region {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  line-height: 1.35;
}

.facilities-footnote {
  margin: 48px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.5);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  line-height: 1.55;
  max-width: 780px;
}

@media (max-width: 1100px) {
  .facilities-lists { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}
@media (max-width: 600px) {
  .facilities-lists { grid-template-columns: 1fr; }
  .facilities-legend { gap: 14px 24px; padding: 14px 16px; }
}

/* ============================================================
   MOTION · COMMITMENTS — Kinetic promise band
   ============================================================ */
/* deep-navy (slightly bluer) so it reads as distinct from the
   adjacent cta-band (--ink) at the bottom of commitments.html. */
.promise-band {
  background: var(--deep-navy);
  color: var(--white);
  padding: 128px 0 120px;
  overflow: hidden;
  position: relative;
}
.promise-band__eyebrow {
  text-align: center;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.28em;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 56px;
}
.promise-marquee {
  white-space: nowrap;
  display: flex;
  gap: 0;
  animation: promiseSlide 38s linear infinite;
  will-change: transform;
}
.promise-marquee__item {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(80px, 12vw, 180px);
  line-height: 1;
  letter-spacing: -0.025em;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  color: rgba(255,255,255,0.92);
}
.promise-marquee__item em { font-style: italic; color: #9BB8FF; font-weight: 400; }
.promise-marquee__dot {
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-0.15em);
}

.promise-band__rows {
  margin-top: 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.promise-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.promise-row.is-in { opacity: 1; transform: translateY(0); }
.promise-row__num {
  font-family: var(--font-serif);
  font-size: 32px;
  color: rgba(255,255,255,0.4);
  font-variant-numeric: tabular-nums;
}
.promise-row__text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.2;
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.promise-row__text em { font-style: italic; color: #9BB8FF; font-weight: 400; }
.promise-row__check {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.promise-row.is-in .promise-row__check {
  background: #4ade80;
  border-color: #4ade80;
  transition: background 0.4s 0.2s var(--ease), border-color 0.4s 0.2s var(--ease);
}
.promise-row__check::after {
  content: "";
  width: 10px; height: 5px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg) translate(1px, -1px) scale(0);
  transform-origin: center;
  transition: transform 0.3s 0.5s var(--ease);
}
.promise-row.is-in .promise-row__check::after {
  transform: rotate(-45deg) translate(1px, -1px) scale(1);
}

@keyframes promiseSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .promise-marquee { animation: none; }
  .globe-pin__ring { animation: none; }
  .globe-feed__item { opacity: 1; transform: none; animation: none; }
}

@media (max-width: 900px) {
  .promise-row { grid-template-columns: 48px 1fr auto; gap: 20px; }
}

/* tint helper for section bg */
.section--tint { background: var(--soft-offwhite); }

/* ============================================================
   LEGAL PAGES (privacy / terms / sms-terms / accessibility / eeo)
   ============================================================ */
.legal { max-width: 820px; margin: 0 auto; }
.legal__meta {
  font-size: 13px; color: var(--slate); padding: 16px 20px;
  background: var(--soft-offwhite); border-left: 3px solid var(--accent);
  margin: 0 0 32px; line-height: 1.7;
}
.legal h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(24px, 2.2vw, 30px); letter-spacing: -0.01em;
  color: var(--ink); margin-top: 56px; margin-bottom: 16px;
  scroll-margin-top: 100px;
}
.legal h3 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 20px; color: var(--ink); margin-top: 32px; margin-bottom: 12px;
}
.legal p, .legal li { font-size: 16px; line-height: 1.7; color: var(--ink); }
.legal ul, .legal ol { padding-left: 22px; margin: 12px 0 20px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { text-decoration-thickness: 2px; }
.legal code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.92em; padding: 1px 6px; background: var(--soft-offwhite);
  border-radius: 3px; color: var(--ink);
}
.legal__footnote {
  margin-top: 64px; padding: 20px 24px; background: var(--soft-offwhite);
  border-radius: 6px; font-size: 13px; color: var(--slate); line-height: 1.6;
}

/* ============================================================
   POLICIES HUB
   ============================================================ */
.policy-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; margin-bottom: 64px;
}
.policy-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 32px; background: #fff;
  border: 1px solid #e6e6e6; border-radius: 4px;
  text-decoration: none; color: var(--ink);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.policy-card:hover, .policy-card:focus-visible {
  border-color: var(--accent); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 36, 114, 0.08);
}
.policy-card__num {
  font-family: var(--font-serif); font-size: 14px; font-weight: 500;
  color: var(--accent); letter-spacing: 0.04em;
}
.policy-card h3 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 24px; letter-spacing: -0.01em; margin: 0;
}
.policy-card p {
  font-size: 14px; line-height: 1.6; color: var(--slate); margin: 0; flex: 1;
}
.policy-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  letter-spacing: 0.02em;
}
.policy-card__cta .material-symbols-outlined { font-size: 16px; transition: transform .2s ease; }
.policy-card:hover .policy-card__cta .material-symbols-outlined { transform: translateX(4px); }

.policy-foot {
  max-width: 820px; padding: 40px 0; border-top: 1px solid #e6e6e6;
}
.policy-foot h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(28px, 2.6vw, 38px); letter-spacing: -0.01em;
  margin: 16px 0 16px;
}
.policy-foot p { font-size: 16px; line-height: 1.7; color: var(--slate); }
.policy-foot a { color: var(--accent); }

/* ============================================================
   FORM STATUS / VALIDATION (shared by contact + SMS forms)
   ============================================================ */
.form-status {
  margin: 16px 0 0; padding: 14px 18px;
  font-size: 14px; line-height: 1.5; border-radius: 4px;
  display: none;
}
.form-status.is-error {
  display: block; background: #fdecea; border-left: 3px solid #b3261e; color: #5b1311;
}
.form-status.is-success {
  display: block; background: #e8f3ec; border-left: 3px solid #1b5e20; color: #0e3a12;
}
.form-status.is-loading {
  display: block; background: var(--soft-offwhite); border-left: 3px solid var(--accent); color: var(--ink);
}
.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #b3261e !important; outline-color: #b3261e;
}
.form-field__error {
  display: none; font-size: 12px; color: #b3261e; margin-top: 6px;
}
.form-field input[aria-invalid="true"] ~ .form-field__error,
.form-field select[aria-invalid="true"] ~ .form-field__error,
.form-field textarea[aria-invalid="true"] ~ .form-field__error {
  display: block;
}
.btn[disabled], button[disabled] { opacity: 0.6; cursor: not-allowed; }

.hero__phone-fallback {
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}
.hero__phone-fallback a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.hero__phone-fallback a:hover {
  color: var(--accent);
  text-decoration-thickness: 2px;
}

.form-field__hint {
  display: block;
  font-size: 12px;
  color: var(--slate);
  line-height: 1.5;
  margin-top: 6px;
  max-width: 100%;
}
.form-field__hint a { color: var(--accent); }

.form-reassurance {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--slate);
  line-height: 1.55;
  max-width: 640px;
}

/* visually-hidden helper for ARIA live regions and skip links */
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   JOBS BOARD (live recruiting embed wrapped in Sterling chrome)
   ============================================================ */
.jobs-board__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: end; margin-bottom: 48px;
}
.jobs-board__head h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.015em;
  line-height: 1.05; color: var(--ink); margin: 16px 0 0;
}
.jobs-board__head h2 em { font-style: italic; color: var(--accent); }
.jobs-board__head p {
  font-size: 17px; line-height: 1.6; color: var(--slate);
  max-width: 480px; margin: 0;
}

.jobs-board__frame {
  position: relative;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 1000px;
}

.jobs-board__iframe {
  position: relative;
  z-index: 2;
  background: #fff;
}

.jobs-board__skeleton {
  position: absolute; inset: 0; z-index: 1;
  padding: 32px 28px;
  background: #fff;
  display: flex; flex-direction: column; gap: 20px;
  pointer-events: none;
}
.jobs-board__skeleton-label {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--slate); font-weight: 700; margin-bottom: 8px;
}
.jobs-board__skeleton-row {
  height: 64px; border-radius: 4px;
  background: linear-gradient(90deg,
    var(--soft-offwhite) 0%,
    #f4f4f4 50%,
    var(--soft-offwhite) 100%);
  background-size: 200% 100%;
  animation: jobs-skeleton-shimmer 1.6s ease-in-out infinite;
}
@keyframes jobs-skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.jobs-board__noscript {
  padding: 24px 28px; font-size: 14px; color: var(--ink);
  background: var(--soft-offwhite);
}
.jobs-board__noscript a { color: var(--accent); font-weight: 600; }

.jobs-board__foot {
  margin-top: 32px; padding: 24px 28px;
  background: var(--soft-offwhite); border-radius: 4px;
  font-size: 14px; color: var(--ink); line-height: 1.6;
}
.jobs-board__foot a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.jobs-board__altlink {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--soft-offwhite);
  border: 1px solid rgba(10,36,114,0.10);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
  text-align: center;
}
.jobs-board__altlink a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .jobs-board__head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .jobs-board__frame { min-height: 1000px; }
}
@media (max-width: 600px) {
  .jobs-board__altlink a { white-space: normal; }
}

/* dev-only placeholder shown when the embed origin is not whitelisted */
.jobs-board__frame--fallback { min-height: 0; border-color: var(--accent); }
.jobs-board__dev-fallback {
  padding: 56px 48px;
  background: var(--soft-offwhite);
  border-radius: 4px;
  position: relative; z-index: 3;
}
.jobs-board__dev-fallback__eyebrow {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 16px;
}
.jobs-board__dev-fallback h3 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.01em;
  line-height: 1.15; margin: 0 0 16px;
}
.jobs-board__dev-fallback p {
  font-size: 15px; line-height: 1.65; color: var(--slate);
  margin: 0 0 12px; max-width: 640px;
}
.jobs-board__dev-fallback p:last-child { margin-bottom: 0; }
.jobs-board__dev-fallback a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 600px) {
  .jobs-board__dev-fallback { padding: 36px 28px; }
}

/* ============================================================
   FAQ (about page — accessible details/summary pattern)
   ============================================================ */
.faq__head { margin-bottom: 48px; max-width: 820px; }
.faq__head h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(32px, 3vw, 44px); letter-spacing: -0.015em;
  line-height: 1.1; color: var(--ink); margin: 16px 0 0;
}
.faq__item {
  border-top: 1px solid #e6e6e6;
  padding: 0;
  max-width: 820px;
}
.faq__item:last-of-type { border-bottom: 1px solid #e6e6e6; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary h3 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px); letter-spacing: -0.005em;
  line-height: 1.35; color: var(--ink); margin: 0;
  flex: 1;
}
.faq__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 300; line-height: 1;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer {
  padding: 0 0 24px;
}
.faq__answer p {
  font-size: 16px; line-height: 1.7; color: var(--slate); margin: 0;
  max-width: 720px;
}
.faq__answer a {
  color: var(--accent); font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
}
.faq__item summary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px;
}

/* ============================================================
   MOBILE NAV (hamburger toggle + slide-in drawer)
   ============================================================ */

/* Hamburger button: hidden on desktop, shown on mobile */
.site-nav__toggle {
  display: none;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.site-nav__toggle:hover, .site-nav__toggle:focus-visible {
  background: var(--soft-offwhite);
  border-color: var(--accent);
}
.site-nav__toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.site-nav__toggle-bars {
  position: relative;
  display: inline-block;
  width: 20px; height: 14px;
}
.site-nav__toggle-bars span {
  position: absolute; left: 0; right: 0;
  height: 2px; border-radius: 1px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.15s ease, top 0.25s ease;
}
.site-nav__toggle-bars span:nth-child(1) { top: 0; }
.site-nav__toggle-bars span:nth-child(2) { top: 6px; }
.site-nav__toggle-bars span:nth-child(3) { top: 12px; }
.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bars span:nth-child(1) {
  top: 6px; transform: rotate(45deg);
}
.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bars span:nth-child(2) {
  opacity: 0;
}
.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bars span:nth-child(3) {
  top: 6px; transform: rotate(-45deg);
}

/* Drawer */
.mobile-drawer {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(10, 36, 114, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-drawer.is-open { opacity: 1; }
.mobile-drawer[hidden] { display: none; }

.mobile-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--paper, #fff);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.32, 0.72, 0.32, 1);
  box-shadow: -16px 0 48px rgba(10, 36, 114, 0.12);
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }

.mobile-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e6e6e6;
}
.mobile-drawer__brand {
  display: inline-flex; align-items: center; text-decoration: none;
}
.mobile-drawer__brand img {
  height: clamp(26px, 6vw, 32px); width: auto; display: block;
}
.mobile-drawer__close {
  width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer;
  font-size: 32px; line-height: 1; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.mobile-drawer__close:hover, .mobile-drawer__close:focus-visible {
  background: var(--soft-offwhite); color: var(--accent);
}
.mobile-drawer__close:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.mobile-drawer__nav {
  flex: 1; padding: 16px 24px;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer__link {
  display: block;
  font-family: var(--font-serif); font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.15s ease;
}
.mobile-drawer__link:hover, .mobile-drawer__link:focus-visible { color: var(--accent); }
.mobile-drawer__link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }
.mobile-drawer__link.is-active { color: var(--accent); font-style: italic; }

.mobile-drawer__actions {
  padding: 20px 24px 28px;
  border-top: 1px solid #e6e6e6;
  background: var(--soft-offwhite, #f7f7f4);
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-drawer__call {
  display: block;
  padding: 16px 18px;
  background: var(--accent, #0A2472);
  color: #fff !important;
  text-decoration: none;
  border-radius: 4px;
  font-family: var(--font-sans);
}
.mobile-drawer__call-label {
  display: block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}
.mobile-drawer__call-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}
.mobile-drawer__call-hours {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.mobile-drawer__cta { width: 100%; justify-content: center; text-align: center; }

/* Activate hamburger / drawer at the same breakpoint where .site-nav hides */
@media (max-width: 1100px) {
  .site-nav__toggle { display: inline-flex; }
}

/* When drawer is open, lock background scroll */
body.has-mobile-drawer-open {
  overflow: hidden;
  /* Prevent layout shift from disappearing scrollbar */
  padding-right: var(--scrollbar-w, 0);
}

/* ============================================================
   STICKY MOBILE BOTTOM CTA BAR (call / contact)
   ============================================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-top: 1px solid rgba(10, 36, 114, 0.14);
  padding: 8px 12px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
}
.mobile-bottom-bar__item {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px;
  font-size: 14px; font-weight: 600;
  color: var(--ink); text-decoration: none;
  border: 1px solid rgba(10, 36, 114, 0.18);
  border-radius: 4px;
  background: #fff;
  padding: 0 12px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.mobile-bottom-bar__item:hover, .mobile-bottom-bar__item:focus-visible {
  background: var(--soft-offwhite);
}
.mobile-bottom-bar__item--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.mobile-bottom-bar__item--primary:hover {
  background: #0a1f5b;
  color: #fff;
}
.mobile-bottom-bar__item .mobile-bottom-bar__ic { width: 20px; height: 20px; flex: none; }

@media (max-width: 768px) {
  .mobile-bottom-bar { display: flex; }
  /* Push the page bottom up to avoid content hidden behind the bar */
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
  /* But not while drawer is open (drawer covers the page anyway) */
  body.has-mobile-drawer-open .mobile-bottom-bar { display: none; }
}

/* Don't show bottom bar inside the drawer itself */
.mobile-drawer .mobile-bottom-bar { display: none; }

/* ============================================================
   MOBILE FORM FIXES (iOS auto-zoom prevention + tap targets)
   ============================================================ */
@media (max-width: 640px) {
  /* iOS Safari auto-zooms any input with font-size < 16px on focus.
     Force everything to at least 16px on small screens. */
  input, textarea, select {
    font-size: 16px !important;
  }
  .form-field label { font-size: 12px; } /* labels can stay smaller */
  .form-field__hint, .form-field__error { font-size: 13px; }

  /* Header phone link tap target boost */
  .site-header__phone {
    padding: 12px 14px;
    min-height: 44px;
  }

  /* Header CTA button — keep visible but slightly smaller */
  .site-header .btn--primary {
    padding: 12px 16px;
    font-size: 12px;
  }
}

/* At very small phones (320-380px), tighten the header so logo+toggle fit comfortably */
@media (max-width: 480px) {
  .site-header__phone {
    /* hide the phone-number text; the hamburger drawer has a big Call CTA */
    display: none;
  }
  .site-header__row { gap: 16px; }
  .site-header__cta { gap: 8px; }
}

/* ============================================================
   REDUCED-MOTION OVERRIDES (Section 508 / WCAG 2.1 AA - 2.3.3)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .credeng__scanner-line { display: none !important; }
  .mobile-drawer__panel { transition: none !important; }
}

