/* =========================================================================
   Measurement Incorporated — 2026 site design system
   Brand: navy #00467F + gold #F7BC60
   ========================================================================= */

/* ---------- Fonts ---------- */
/* Fraunces (display serif) + Inter (UI/body) loaded via <link> in head */

/* ---------- Tokens ---------- */
:root {
  --navy-950: #001c33;
  --navy-900: #002a4e;
  --navy-800: #003a6b;
  --navy:     #00467F; /* brand primary */
  --navy-600: #0a63ac;
  --navy-500: #1a7fd0;

  --gold:     #f7bc60; /* brand accent */
  --gold-400: #ffd083;
  --gold-600: #d99a2b; /* accessible on white */

  --ink:      #14202c;
  --slate-700:#37475a;
  --slate-600:#4d5f73;
  --slate-500:#66788c;
  --slate-400:#8b9bad;

  --line:     #e3eaf2;
  --line-soft:#eef3f9;

  --bg:       #ffffff;
  --bg-soft:  #f5f8fc;
  --bg-softer:#eef3fa;

  --r-xs: 8px;
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0,42,78,.06), 0 1px 3px rgba(0,42,78,.05);
  --shadow:    0 6px 20px -8px rgba(0,42,78,.18), 0 2px 6px rgba(0,42,78,.06);
  --shadow-lg: 0 24px 50px -20px rgba(0,42,78,.35), 0 8px 24px -12px rgba(0,42,78,.18);

  --container: 1180px;
  --prose: 760px;

  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--navy-600); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.08rem; font-weight: 600; font-family: var(--font-ui); color: var(--navy-800); }
p  { margin: 0 0 1.1em; }

::selection { background: var(--gold); color: var(--navy-950); }

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

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.container-narrow { max-width: 880px; }

.section { padding-block: clamp(56px, 8vw, 104px); }
.section-sm { padding-block: clamp(40px, 5vw, 64px); }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy-900); color: #dce7f2; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-ui);
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-navy .eyebrow { color: var(--gold); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--slate-600); line-height: 1.6; }

.grid { display: grid; gap: clamp(20px, 2.4vw, 30px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-ui); font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .92em 1.6em; border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 10px 24px -10px rgba(0,70,127,.7); }
.btn-primary:hover { background: var(--navy-800); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(0,70,127,.75); }
.btn-gold { background: var(--gold); color: var(--navy-950); box-shadow: 0 10px 24px -10px rgba(217,154,43,.7); }
.btn-gold:hover { background: var(--gold-400); color: var(--navy-950); transform: translateY(-2px); }
.btn-outline { border-color: var(--line); color: var(--navy); background: #fff; }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.btn-ghost-light { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.06); }
.btn-ghost-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.14); transform: translateY(-2px); }

.arrow-link {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 600; color: var(--navy);
}
.arrow-link svg { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -16px rgba(0,42,78,.4);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a:not(.btn) {
  font-family: var(--font-ui); font-weight: 500; font-size: .98rem;
  color: var(--slate-700); padding: .55em .85em; border-radius: var(--r-xs);
  position: relative;
}
.main-nav a:not(.btn):hover { color: var(--navy); background: var(--bg-soft); }
.main-nav a:not(.btn).active { color: var(--navy); }
.main-nav a:not(.btn).active::after {
  content: ""; position: absolute; left: .85em; right: .85em; bottom: .2em; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 14px; }
.main-nav > .btn { display: none; } /* contact btn lives in header-actions on desktop */

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  border-radius: var(--r-xs); color: var(--navy);
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px auto; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px clamp(20px,5vw,40px) 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .28s var(--ease), opacity .22s var(--ease), visibility .22s;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a:not(.btn) { padding: .95em .4em; font-size: 1.08rem; border-bottom: 1px solid var(--line-soft); }
  .main-nav a:not(.btn).active::after { display: none; }
  .main-nav a:not(.btn).active { color: var(--navy); font-weight: 600; }
  .main-nav > .btn { display: inline-flex; margin-top: 18px; }
  .main-nav > .btn.active::after { display: none; }
  .header-actions .btn:not(.nav-toggle) { display: none; }
}

/* =========================================================================
   Hero — homepage
   ========================================================================= */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--navy-900);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(0,28,51,.94) 0%, rgba(0,42,78,.86) 42%, rgba(0,58,107,.5) 74%, rgba(0,58,107,.28) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding-block: clamp(90px, 13vw, 168px);
  max-width: 660px;
}
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.4vw, 4rem); letter-spacing: -.02em; margin-bottom: .35em; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero-sub { font-size: clamp(1.08rem, 1.8vw, 1.3rem); color: #cfdcea; max-width: 560px; margin-bottom: 2em; line-height: 1.6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* stat strip under hero */
.hero-stats {
  position: relative; z-index: 2; background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stats .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-stat { padding: clamp(22px,3vw,34px) 20px; text-align: center; border-left: 1px solid rgba(255,255,255,.1); }
.hero-stat:first-child { border-left: 0; }
.hero-stat .num { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: .35em; }
.hero-stat .label { font-size: .82rem; color: #b9cadd; letter-spacing: .04em; line-height: 1.4; }

@media (max-width: 560px) {
  .hero-stats .container { grid-template-columns: 1fr; }
  .hero-stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .hero-stat:first-child { border-top: 0; }
}

/* =========================================================================
   Interior page hero
   ========================================================================= */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 140% at 88% -10%, rgba(247,188,96,.16), transparent 55%),
    linear-gradient(120deg, var(--navy-950), var(--navy-800) 65%, var(--navy) 100%);
  color: #fff;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; opacity: .5; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 40%);
  mask-image: linear-gradient(90deg, transparent, #000 40%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-inner { padding-block: clamp(64px, 9vw, 118px); max-width: 780px; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero p { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: #cbdaea; margin: 0; max-width: 680px; }

.breadcrumbs { position: relative; z-index: 1; font-size: .85rem; color: #9fb6cd; margin-bottom: 1.4rem; }
.breadcrumbs a { color: #cbdaea; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { margin: 0 .5em; opacity: .5; }

/* =========================================================================
   Cards
   ========================================================================= */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-card { display: flex; flex-direction: column; height: 100%; }
.service-icon {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy), var(--navy-600));
  color: var(--gold); margin-bottom: 22px; box-shadow: 0 12px 24px -12px rgba(0,70,127,.6);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: .5em; color: var(--navy-900); }
.service-card p { color: var(--slate-600); margin-bottom: 1.4em; }
.service-card .arrow-link { margin-top: auto; }

/* feature list (checkmarks) */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .8em; }
.check-list li { position: relative; padding-left: 2em; color: var(--slate-700); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .18em; width: 1.3em; height: 1.3em;
  border-radius: 50%; background: var(--bg-softer);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300467F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: .8em; background-repeat: no-repeat; background-position: center;
}

/* =========================================================================
   Stats band
   ========================================================================= */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(20px,3vw,40px); text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600; color: var(--gold); line-height: 1; }
.stat .label { margin-top: .5em; font-size: .95rem; color: #bcccde; }

/* =========================================================================
   CTA band
   ========================================================================= */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--navy-900), var(--navy) 70%, var(--navy-600));
  border-radius: var(--r-lg); color: #fff;
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(247,188,96,.28), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cbdaea; max-width: 560px; margin-inline: auto; margin-bottom: 1.8em; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   Prose (content pages)
   ========================================================================= */
.prose { max-width: var(--prose); overflow-wrap: break-word; }
.prose-wide { max-width: 960px; }
.ref-list p, .ref-list a { overflow-wrap: break-word; }
.prose > :first-child { margin-top: 0; }
.prose h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.2em; margin-bottom: .6em;
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 1.3rem; margin-top: 1.8em; margin-bottom: .5em; color: var(--navy-800); }
.prose h4 { margin-top: 1.6em; margin-bottom: .4em; }
.prose p, .prose li { color: var(--slate-700); }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose ul li::marker { color: var(--gold-600); }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(10,99,172,.35); }
.prose a:hover { text-decoration-color: currentColor; }
.prose strong { color: var(--navy-900); }
.prose em { color: inherit; }
.prose blockquote {
  margin: 1.6em 0; padding: 1.2em 1.6em; border-left: 4px solid var(--gold);
  background: var(--bg-soft); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--slate-700); font-style: italic;
}
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.5em 0; }
.prose img { border-radius: var(--r-sm); margin: 1.5em 0; }

/* reference / citation lists */
.ref-list p, .prose .ref { padding-left: 1.6em; text-indent: -1.6em; font-size: .98rem; line-height: 1.55; color: var(--slate-700); }

/* =========================================================================
   Tables
   ========================================================================= */
.table-wrap { overflow-x: auto; margin: 1.6em 0; border: 1px solid var(--line); border-radius: var(--r-sm); -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; font-size: .96rem; }
thead th {
  background: var(--navy-900); color: #fff; text-align: left; font-weight: 600;
  padding: 14px 18px; font-family: var(--font-ui); letter-spacing: .01em;
  position: sticky; top: 0;
}
tbody td { padding: 13px 18px; border-top: 1px solid var(--line); color: var(--slate-700); vertical-align: top; }
tbody tr:nth-child(even) { background: var(--bg-soft); }
tbody tr:hover { background: var(--bg-softer); }

/* =========================================================================
   Accordion (leadership bios) — native details/summary
   ========================================================================= */
.accordion { display: grid; gap: 12px; margin: 1.5em 0; }
.accordion details {
  border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff;
  overflow: hidden; transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.accordion details[open] { box-shadow: var(--shadow); border-color: transparent; }
.accordion summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; color: var(--navy-900); font-size: 1.05rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .chev {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-softer);
  display: grid; place-items: center; color: var(--navy); transition: transform .25s var(--ease), background .2s;
}
.accordion summary .chev svg { width: 15px; height: 15px; }
.accordion details[open] summary .chev { transform: rotate(180deg); background: var(--gold); }
.accordion summary:hover { color: var(--navy); }
.accordion summary .role { display: block; font-weight: 500; font-size: .86rem; color: var(--slate-500); margin-top: 2px; }
.accordion .acc-body { padding: 0 24px 22px; color: var(--slate-700); }
.accordion .acc-body > :first-child { margin-top: 0; }
.accordion .acc-body p:last-child { margin-bottom: 0; }

/* =========================================================================
   Leadership exec cards
   ========================================================================= */
.exec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2vw, 26px); margin: 1.5em 0; }
.exec-card {
  border: 1px solid var(--line); border-top: 4px solid var(--gold); border-radius: var(--r-sm);
  padding: 28px 30px; background: #fff;
}
.exec-card h3 { color: var(--navy-900); margin-bottom: .15em; font-size: 1.2rem; }
.exec-card .exec-title { color: var(--gold-600); font-family: var(--font-ui); font-weight: 600; font-size: .9rem; letter-spacing: .02em; margin-bottom: 1em; }
.exec-card p { font-size: .96rem; color: var(--slate-600); }
.exec-card p:last-child { margin-bottom: 0; }

/* =========================================================================
   Award chips
   ========================================================================= */
.award-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; margin: 1.5em 0; list-style: none; padding: 0; }
.award-grid li {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-sm);
  font-size: .95rem; color: var(--slate-700); line-height: 1.45; margin: 0;
}
.award-grid li::before {
  content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2l2.4 4.9 5.4.8-3.9 3.8.9 5.4-4.8-2.5-4.8 2.5.9-5.4L4.2 7.7l5.4-.8z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2l2.4 4.9 5.4.8-3.9 3.8.9 5.4-4.8-2.5-4.8 2.5.9-5.4L4.2 7.7l5.4-.8z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* =========================================================================
   Download / file cards (white papers)
   ========================================================================= */
.paper { display: grid; gap: 4px; padding: 26px 28px; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
.paper:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.paper h3 { margin: 0 0 .1em; font-size: 1.2rem; }
.paper .byline { font-family: var(--font-ui); font-size: .88rem; color: var(--slate-500); margin-bottom: .8em; }
.paper .excerpt { font-style: italic; color: var(--slate-600); margin-bottom: 1.2em; }
.file-link { display: inline-flex; align-items: center; gap: .55em; font-weight: 600; color: var(--navy); font-size: .95rem; }
.file-link svg { width: 1.15em; height: 1.15em; color: var(--gold-600); }
.file-link .size { color: var(--slate-400); font-weight: 400; font-size: .85em; }
.paper-stack { display: grid; gap: 16px; }

/* info / callout box */
.callout {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--navy);
  border-radius: var(--r-sm); padding: 24px 26px; margin: 1.6em 0;
}
.callout .callout-num { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; }

/* year heading in reference lists */
.year-head { font-family: var(--font-ui); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); margin: 2em 0 .8em; padding-bottom: .4em; border-bottom: 1px solid var(--line); }

/* locations */
.location-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(24px,3vw,44px); align-items: start; margin: 1.5em 0; }
.location-list h3 { margin-top: 1.4em; }
.location-list h3:first-child { margin-top: 0; }
.location-list address { font-style: normal; color: var(--slate-600); line-height: 1.6; margin-bottom: .3em; }
.location-media iframe { width: 100%; border: 0; border-radius: var(--r-sm); }
.location-media img { border-radius: var(--r-sm); margin-bottom: 16px; }

/* =========================================================================
   Highlights / news list
   ========================================================================= */
.news-list { display: grid; gap: 0; }
.news-item { padding: 30px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 150px 1fr; gap: 30px; }
.news-item:first-child { padding-top: 0; }
.news-item .news-date { font-family: var(--font-ui); font-size: .88rem; color: var(--slate-500); font-weight: 500; padding-top: .3em; }
.news-item h3 { margin-bottom: .4em; }
.news-item h3 a { color: var(--navy-900); text-decoration: none; }
.news-item h3 a:hover { color: var(--navy); }
.news-item p { color: var(--slate-600); margin-bottom: .8em; }
@media (max-width: 640px) { .news-item { grid-template-columns: 1fr; gap: 8px; } }

/* recent highlight card (home) */
.highlight-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.highlight-card .hc-body { padding: clamp(30px,4vw,50px); display: flex; flex-direction: column; justify-content: center; }
.highlight-card .hc-side { background: linear-gradient(150deg, var(--navy-800), var(--navy)); color: #fff; padding: clamp(30px,4vw,50px); display: flex; flex-direction: column; justify-content: center; }
.highlight-card .hc-side .eyebrow { color: var(--gold); }
.highlight-card .hc-side p { color: #cbdaea; }
@media (max-width: 760px) { .highlight-card { grid-template-columns: 1fr; } }

/* =========================================================================
   Job listings (careers)
   ========================================================================= */
.job-list { display: grid; gap: 16px; margin-top: 1.5em; }
.job-card {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 28px; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff;
  transition: box-shadow .2s var(--ease), transform .2s var(--ease), border-color .2s;
}
.job-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
.job-card h3 { margin: 0 0 .3em; font-size: 1.2rem; }
.job-card p { margin: 0; color: var(--slate-600); font-size: .95rem; }
.job-card .job-cta { flex-shrink: 0; }
.empty-note { color: var(--slate-500); font-size: 1.1rem; background: var(--bg-soft); border: 1px dashed var(--line); border-radius: var(--r-sm); padding: 40px; text-align: center; }
@media (max-width: 640px) { .job-card { flex-direction: column; align-items: flex-start; } }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--navy-950); color: #a9c0d6; padding-top: clamp(56px, 7vw, 84px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: clamp(30px, 4vw, 56px); padding-bottom: 48px; }
.footer-brand img { height: 30px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { color: #90a8bf; font-size: .95rem; max-width: 300px; }
.site-footer h4 { color: #fff; font-family: var(--font-ui); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.2em; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .7em; }
.footer-links a { color: #a9c0d6; font-size: .96rem; }
.footer-links a:hover { color: #fff; }
.site-footer address { font-style: normal; color: #a9c0d6; line-height: 1.7; font-size: .95rem; }
.site-footer address a { color: #a9c0d6; }
.site-footer address a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #cddceb; transition: background .2s var(--ease), transform .2s var(--ease), color .2s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-950); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .88rem; color: #7f97ae;
}
.footer-bottom a { color: #7f97ae; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Responsive grids
   ========================================================================= */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .exec-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* =========================================================================
   Standalone product legal pages (miwrite / utah-compose privacy & terms)
   ========================================================================= */
.legal-back { display: inline-flex; align-items: center; gap: .45em; font-family: var(--font-ui); font-weight: 500; font-size: .95rem; color: var(--slate-600); }
.legal-back svg { width: 1.05em; height: 1.05em; }
.legal-back:hover { color: var(--navy); }
@media (max-width: 560px) { .legal-back { display: none; } }
.legal-doc { max-width: 820px; }
.legal-doc > h1:first-child { margin-bottom: .6em; padding-bottom: .5em; border-bottom: 1px solid var(--line); }
.legal-doc h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.legal-footer { padding-top: clamp(32px, 4vw, 48px); }
.legal-footer .footer-bottom { border-top: 0; }

/* skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: var(--r-xs);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
