/* ============================================================
   Salud - COM (UD-COM) site stylesheet
   Brand: UD navy #0c2340, Pantone 287 #003087, white, body #666
   Type: Montserrat (headings), Source Sans 3 (body)
   ============================================================ */

:root {
  --navy: #0c2340;
  --pantone-287: #003087;
  --paper: #ffffff;
  --paper-2: #f5f7fb;
  --rule: #d6dbe4;
  --rule-soft: #e8ecf2;
  --body: #666666;
  --muted: #8a8f9a;
  --accent: #003087;
  --accent-soft: #e6ecf6;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--body);
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0;
}
img { max-width: 100%; display: block; }
a { color: var(--pantone-287); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Header / Top Nav ---------- */
.site-header { background: var(--paper); border-bottom: 1px solid var(--rule); }
.utility-bar {
  background: var(--navy);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.utility-bar .wrap {
  max-width: 1920px; margin: 0 auto;
  padding: 9px 32px;
  display: flex; justify-content: flex-end; gap: 22px; align-items: center;
}
.utility-bar .sep { opacity: 0.4; }
.utility-bar a { color: #fff; opacity: 0.85; }
.utility-bar a:hover { opacity: 1; text-decoration: none; }

.nav-row {
  max-width: 1920px; margin: 0 auto;
  padding: 22px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 16px; }
.brand-mark { width: 64px; height: 64px; flex: 0 0 64px; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { line-height: 1.18; }
.brand-text .a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2px;
  color: var(--navy);
  text-transform: uppercase;
}
.brand-text .b {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: var(--body);
  letter-spacing: 0.4px;
  margin-top: 3px;
}

.primary-nav { display: flex; gap: 30px; align-items: center; }
.primary-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--navy);
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}
.primary-nav a:hover { text-decoration: none; border-bottom-color: var(--rule); }
.primary-nav a.active { border-bottom-color: var(--pantone-287); }

/* ---------- Page wrap ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}
.page-hero .wrap {
  padding-top: 56px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
.page-hero .breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--pantone-287);
  margin-bottom: 14px;
}
.page-hero .breadcrumb a { color: var(--pantone-287); }
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--navy);
}
.page-hero .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--body);
  max-width: 580px;
}
.page-hero figure { margin: 0; }
.page-hero figure img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-bottom: 4px solid var(--pantone-287);
}

/* ---------- Section building blocks ---------- */
section.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--rule);
}
section.section.alt { background: var(--paper-2); }
section.section.navy { background: var(--navy); color: rgba(255,255,255,0.85); border-bottom: 0; }
section.section.navy h2, section.section.navy h3 { color: #fff; }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pantone-287);
  margin-bottom: 18px;
}
.section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 18px;
}
.section h2 .accent { color: var(--pantone-287); }
.section p { font-size: 17px; line-height: 1.65; color: var(--body); margin: 0 0 16px; max-width: 720px; }
.section.navy p { color: rgba(255,255,255,0.78); }

.section .lede-big {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--navy);
  max-width: 940px;
}
.section .lede-big .accent { color: var(--pantone-287); }

/* Two-col layouts */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split.left-wide { grid-template-columns: 1.2fr 1fr; }
.split.right-wide { grid-template-columns: 1fr 1.2fr; }
.split.dean { grid-template-columns: 300px 1fr; gap: 40px; }
.split img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split.landscape img { aspect-ratio: 4/3; }

/* Card grids */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--pantone-287);
  padding: 26px 24px 22px;
  background: var(--paper);
  display: flex; flex-direction: column;
  transition: box-shadow .2s ease;
}
.card:hover { box-shadow: 0 8px 24px -10px rgba(12,35,64,0.18); }
.card .num {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 11px; color: var(--pantone-287);
  letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 12px;
}
.card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 22px; color: var(--navy); margin: 0 0 12px;
}
.card .body { flex: 1; color: var(--body); font-size: 15.5px; line-height: 1.6; }
.card .link {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 11.5px; text-transform: uppercase; letter-spacing: 1.5px;
  border-top: 1px solid var(--rule);
  padding-top: 14px; margin-top: 18px;
  color: var(--pantone-287);
}

/* Pill / button */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 13px 22px;
  border: 1.5px solid var(--pantone-287);
  color: var(--pantone-287);
  background: transparent;
  transition: all .15s ease;
}
.btn:hover { background: var(--pantone-287); color: #fff; text-decoration: none; }
.btn.solid { background: var(--pantone-287); color: #fff; }
.btn.solid:hover { background: var(--navy); border-color: var(--navy); }
.btn.on-navy { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn.on-navy:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* News list (text rows) */
.news-list .row {
  display: grid; grid-template-columns: 130px 1fr 30px; gap: 24px;
  padding: 22px 0; border-top: 1px solid var(--rule);
  align-items: baseline;
}
.news-list .row:last-child { border-bottom: 1px solid var(--rule); }
.news-list .row:hover { cursor: pointer; }
.news-list .row:hover .head { color: var(--pantone-287); }
.news-list .date {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 11.5px; color: var(--pantone-287);
  letter-spacing: 1.3px; text-transform: uppercase;
}
.news-list .head {
  font-family: 'Montserrat', sans-serif; font-weight: 500;
  font-size: 19px; line-height: 1.35; color: var(--navy);
  transition: color .15s ease;
}
.news-list .arr { font-size: 18px; color: var(--pantone-287); text-align: right; }

/* News cards (with photo) */
.news-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.news-card .ph { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 16px; }
.news-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .ph img { transform: scale(1.04); }
.news-card .meta {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 10.5px; color: var(--pantone-287);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px;
}
.news-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 20px; line-height: 1.3; color: var(--navy); margin: 0 0 8px;
}
.news-card p { font-size: 15px; color: var(--body); margin: 0; }

/* Join us / CTA bands */
.cta-band { background: var(--navy); color: #fff; padding: 64px 0; }
.cta-band h2 { color: #fff; font-size: 38px; }
.cta-band h2 .accent { color: #7fa3d4; }
.cta-band .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.cta-band .grid p { color: rgba(255,255,255,0.78); max-width: 440px; }
.cta-lines { }
.cta-lines a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.2);
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase;
  color: #fff;
}
.cta-lines a:hover { color: #7fa3d4; text-decoration: none; }
.cta-lines a:last-child { border-bottom: 1px solid rgba(255,255,255,0.2); }
.cta-lines a .arr { color: #7fa3d4; font-family: 'Source Sans 3', sans-serif; font-weight: 400; font-size: 18px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  border-top: 1px solid #7fa3d4;
  padding: 56px 0 28px;
}
.site-footer .wrap { padding-top: 0; padding-bottom: 0; }
.site-footer .ftr-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.site-footer .ftr-brand img {
  width: 52px; height: 52px; object-fit: contain;
 
}
.site-footer .ftr-brand .t {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  color: #fff; font-size: 14px; line-height: 1.2;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.site-footer .ftr-brand .t small {
  display: block; font-weight: 400; font-size: 12px;
  text-transform: none; letter-spacing: 0.3px; opacity: 0.7; margin-top: 4px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 32px;
}
.site-footer h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 11.5px; text-transform: uppercase;
  letter-spacing: 1.6px; color: #fff;
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a { color: rgba(255,255,255,0.78); font-size: 14px; }
.site-footer ul a:hover { color: #fff; text-decoration: none; }
.accred-box {
  border: 1px solid rgba(255,255,255,0.25);
  border-left: 3px solid var(--pantone-287);
  padding: 14px 16px; margin-top: 18px;
  background: rgba(255,255,255,0.04);
}
.accred-box .title {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px;
  color: #fff; margin-bottom: 6px;
}
.accred-box .body { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.55; }
.socials { display: flex; gap: 8px; margin-top: 12px; }
.socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 11px;
}
.socials a:hover { background: #fff; color: var(--navy); text-decoration: none; }
.legalese {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}
.legalese a { color: rgba(255,255,255,0.85); }
.legalese .copy { text-align: right; white-space: nowrap; }

/* ---------- Hero (Home only) ---------- */
.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
}
.home-hero .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
	max-width: 1920px;
	margin: auto;
}
.home-hero .text {
  padding: 84px 56px 72px 32px;
  max-width: 720px;
	margin-top: 180px;
}
.home-hero .kicker {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pantone-287);
  margin-bottom: 22px;
}
.home-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 22px;
}
.home-hero h1 .accent { color: var(--pantone-287); }
.home-hero .lede { font-size: 19px; line-height: 1.55; color: var(--body); max-width: 560px; }
.home-hero .image {
  position: relative;
  min-height: 760px;
	margin: 40px;
}
.home-hero .image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.home-hero .image::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 6px; background: var(--pantone-287);
}

/* Home mission block */
.home-mission { padding: 72px 0; border-bottom: 1px solid var(--rule); background-color: var(--navy); }
.home-mission .statement {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--paper);
  max-width: 980px;
}
.home-mission .statement .accent { color: var(--paper); }

/* Home dean section */
.home-dean { padding: 72px 0; background: var(--paper-2); border-bottom: 1px solid var(--rule); }
.home-dean .grid { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; }
.home-dean .portrait { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.home-dean h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 34px; line-height: 1.2; letter-spacing: -0.01em; color: var(--navy);
  margin: 0 0 16px;
}
.home-dean h2 em { font-style: normal; color: var(--pantone-287); }
.home-dean .body { font-size: 17px; line-height: 1.65; color: var(--body); margin-bottom: 22px; max-width: 660px; }
.home-dean .sig {
  margin-top: 22px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  color: var(--navy); font-size: 14px;
}
.home-dean .sig small {
  display: block; font-weight: 500; color: var(--body); font-size: 13px; margin-top: 2px;
}

/* Home 3 cards + News */
.home-trio { padding: 72px 0; border-bottom: 1px solid var(--rule); }
.home-news { padding: 72px 0; border-bottom: 1px solid var(--rule); }
.home-news .grid { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; }
.home-news h2 { font-size: 44px; line-height: 1.05; margin: 0 0 12px; }
.home-news h2 .accent { color: var(--pantone-287); }

/* ---------- Accordion (team bios + FAQ) ---------- */
.acc-item { border-top: 1px solid var(--rule); }
.acc-item:last-child { border-bottom: 1px solid var(--rule); }
.acc-trigger {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  cursor: pointer; background: none; border: none; width: 100%;
  text-align: left; color: var(--navy); font-family: 'Montserrat', sans-serif;
}
.acc-trigger .ttl { font-weight: 600; font-size: 19px; }
.acc-trigger .sub { font-size: 13.5px; color: var(--body); font-weight: 500; }
.acc-trigger .icn {
  width: 28px; height: 28px; border: 1.5px solid var(--pantone-287);
  border-radius: 50%; flex: 0 0 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pantone-287); font-weight: 600; font-size: 18px;
  transition: all .2s ease;
}
.acc-item.open .acc-trigger .icn { background: var(--pantone-287); color: #fff; transform: rotate(45deg); }
.acc-panel {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease;
  padding: 0 0 0 0;
}
.acc-item.open .acc-panel { max-height: 1200px; padding: 0 0 26px; }
.acc-panel p { font-size: 16px; line-height: 1.65; color: var(--body); margin: 0 0 14px; }
.acc-panel p:last-child { margin: 0; }

/* Team grid (clickable cards that expand below) */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card {
  cursor: pointer;
  border: 1px solid var(--rule);
  background: var(--paper);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.team-card:hover { box-shadow: 0 8px 24px -10px rgba(12,35,64,0.2); border-color: var(--pantone-287); }
.team-card.active { border-color: var(--pantone-287); box-shadow: 0 10px 30px -10px rgba(0,48,135,0.3); }
.team-card .ph { aspect-ratio: 4/5; overflow: hidden; }
.team-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.team-card .meta { padding: 18px 20px 22px; }
.team-card .name {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 18px; color: var(--navy); margin: 0 0 4px;
}
.team-card .title {
  font-family: 'Source Sans 3', sans-serif; font-style: italic;
  font-size: 14.5px; color: var(--body);
}
.team-card .read {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--pantone-287); margin-top: 12px;
}
.team-bio-panel {
  margin-top: 32px;
  background: var(--paper-2);
  border-left: 4px solid var(--pantone-287);
  padding: 36px 40px;
  display: none;
}
.team-bio-panel.open { display: grid; grid-template-columns: 180px 1fr; gap: 36px; }
.team-bio-panel .ph { aspect-ratio: 4/5; overflow: hidden; }
.team-bio-panel .ph img { width: 100%; height: 100%; object-fit: cover; }
.team-bio-panel .body h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 26px; color: var(--navy); margin: 0 0 4px;
}
.team-bio-panel .body .role {
  font-family: 'Montserrat', sans-serif; font-weight: 500;
  color: var(--pantone-287); font-size: 13px;
  letter-spacing: 1.3px; text-transform: uppercase; margin-bottom: 16px;
}
.team-bio-panel .body p { font-size: 16px; line-height: 1.65; color: var(--body); margin: 0 0 14px; }

/* Timeline (Accreditation) */
.timeline { position: relative; padding-left: 0; }
.timeline .step {
  display: grid; grid-template-columns: 160px 32px 1fr; gap: 22px;
  padding: 24px 0; border-top: 1px solid var(--rule); align-items: start;
}
.timeline .step:last-child { border-bottom: 1px solid var(--rule); }
.timeline .step .when {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 12.5px; color: var(--pantone-287);
  letter-spacing: 1.5px; text-transform: uppercase;
  padding-top: 4px;
}
.timeline .step .dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--pantone-287);
  margin: 6px auto 0;
}
.timeline .step.done .dot { background: var(--pantone-287); }
.timeline .step.future .dot { border-color: var(--rule); }
.timeline .step.future .when { color: var(--muted); }
.timeline .step h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 19px; color: var(--navy); margin: 0 0 6px;
}
.timeline .step p { font-size: 15.5px; color: var(--body); margin: 0; }

/* Status callout (Accreditation page) */
.status-callout {
  border: 1px solid var(--rule);
  border-left: 6px solid var(--pantone-287);
  background: var(--paper-2);
  padding: 32px 36px;
  margin-bottom: 48px;
}
.status-callout .pill {
  display: inline-block;
  background: var(--pantone-287); color: #fff;
  padding: 6px 12px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  margin-bottom: 14px;
}
.status-callout h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 26px; color: var(--navy); margin: 0 0 10px;
}
.status-callout p { font-size: 16px; color: var(--body); line-height: 1.65; margin: 0; max-width: 900px; }

/* Document list (Reports) */
.doc-list { }
.doc-list .doc {
  display: grid; grid-template-columns: 48px 1fr auto; gap: 22px;
  padding: 22px 0; border-top: 1px solid var(--rule); align-items: center;
}
.doc-list .doc:last-child { border-bottom: 1px solid var(--rule); }
.doc-list .doc .icn {
  width: 48px; height: 60px;
  border: 1.5px solid var(--pantone-287);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 10px; color: var(--pantone-287); letter-spacing: 1px;
  position: relative;
}
.doc-list .doc .icn::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 12px; height: 12px;
  background: var(--paper);
  border-left: 1.5px solid var(--pantone-287);
  border-bottom: 1.5px solid var(--pantone-287);
}
.doc-list .doc .info h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 18px; color: var(--navy); margin: 0 0 4px;
}
.doc-list .doc .info .meta {
  font-family: 'Montserrat', sans-serif; font-weight: 500;
  font-size: 11.5px; color: var(--muted);
  letter-spacing: 1.2px; text-transform: uppercase;
}
.doc-list .doc .dl {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 11.5px; letter-spacing: 1.3px; text-transform: uppercase;
  color: var(--pantone-287);
  padding: 10px 16px; border: 1.5px solid var(--pantone-287);
}
.doc-list .doc .dl:hover { background: var(--pantone-287); color: #fff; text-decoration: none; }

/* Filter chips (News) */
.filter-row {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  margin-bottom: 32px;
}
.filter-row .label {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-right: 8px;
}
.chip {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 8px 14px; border: 1.5px solid var(--rule);
  color: var(--navy); cursor: pointer; background: transparent;
  transition: all .15s ease;
}
.chip:hover { border-color: var(--pantone-287); color: var(--pantone-287); }
.chip.active { background: var(--pantone-287); color: #fff; border-color: var(--pantone-287); }

/* Featured news lead */
.news-lead {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 0;
  border: 1px solid var(--rule);
  background: var(--paper);
  margin-bottom: 56px;
  overflow: hidden;
}
.news-lead .ph { min-height: 420px; }
.news-lead .ph img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.news-lead .body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.news-lead .featured-tag {
  display: inline-block; align-self: flex-start;
  background: var(--pantone-287); color: #fff;
  padding: 6px 12px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 18px;
}
.news-lead .meta {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 11.5px; color: var(--muted);
  letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 12px;
}
.news-lead h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 36px; line-height: 1.15; color: var(--navy); margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.news-lead p { font-size: 16.5px; color: var(--body); line-height: 1.6; margin: 0 0 22px; max-width: 560px; }

/* Research pillars */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--rule); }
.pillar {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.pillar:nth-child(2n) { border-right: none; }
.pillar:nth-last-child(-n+2) { border-bottom: none; }
.pillar .num {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 11px; color: var(--pantone-287);
  letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 14px;
}
.pillar h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 24px; color: var(--navy); margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.pillar p { color: var(--body); font-size: 15.5px; line-height: 1.6; margin: 0; }

/* Values grid (About) */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value {
  padding: 22px 0 0; border-top: 3px solid var(--pantone-287);
}
.value .lbl {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 11px; color: var(--muted);
  letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 10px;
}
.value h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 22px; color: var(--navy); margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.value p { font-size: 15px; color: var(--body); margin: 0; line-height: 1.55; }

/* Quote block */
.pull-quote {
  border-left: 4px solid var(--pantone-287);
  padding: 8px 0 8px 28px;
  margin: 32px 0;
}
.pull-quote p {
  font-family: 'Montserrat', sans-serif; font-weight: 500;
  font-style: italic; font-size: 22px;
  line-height: 1.4; color: var(--navy); margin: 0 0 12px;
}
.pull-quote .cite {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 11.5px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--pantone-287);
}

/* Inline disclosure */
.disclosure-note {
  border: 1px solid var(--rule);
  padding: 18px 22px;
  background: var(--paper-2);
  font-size: 14.5px; color: var(--body); line-height: 1.6;
  margin: 28px 0;
}
.disclosure-note strong { color: var(--navy); font-family: 'Montserrat', sans-serif; }

/* Responsive trim — keep things sane below 1024px */
@media (max-width: 1024px) {
  .home-hero .grid { grid-template-columns: 1fr; }
  .home-hero .text { padding: 56px 24px; }
  .home-hero h1 { font-size: 44px; }
  .home-hero .image { min-height: 320px; }
  .nav-row { padding: 18px 20px; flex-wrap: wrap; gap: 14px; }
  .primary-nav { width: 100%; gap: 18px; flex-wrap: wrap; }
  .wrap { padding-left: 20px; padding-right: 20px; }
  .split, .split.dean, .split.left-wide, .split.right-wide,
  .home-dean .grid, .home-news .grid, .cta-band .grid, .news-lead { grid-template-columns: 1fr; }
  .news-lead .ph, .news-lead .ph img { min-height: 280px; }
  .cards-3, .cards-4, .news-cards, .team-grid, .values, .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--rule); }
  .pillar:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero .wrap { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 40px; }
  .team-bio-panel.open { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cards-3, .cards-4, .news-cards, .team-grid, .values, .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .home-hero h1 { font-size: 36px; }
  .section h2 { font-size: 30px; }
  .home-mission .statement, .section .lede-big { font-size: 22px; }
  .utility-bar .wrap { padding: 8px 16px; flex-wrap: wrap; gap: 12px; justify-content: center; }
  .legalese { grid-template-columns: 1fr; }
  .legalese .copy { text-align: left; }
  .timeline .step { grid-template-columns: 100px 24px 1fr; gap: 14px; }
  .doc-list .doc { grid-template-columns: 40px 1fr; }
  .doc-list .doc .dl { grid-column: 1 / -1; justify-self: start; margin-top: 8px; }
}
