:root {
  --black: #111111;
  --charcoal: #1A1A1A;
  --navy: #0D1B2A;
  --blue: #132238;
  --slate: #415A77;
  --gold: #D4A017;
  --gold2: #C89B3C;
  --paper: #F5F5F2;
  --ink: #181818;
  --muted: #aeb6c2;
  --line: rgba(255,255,255,.13);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--black);
  font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,27,42,.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--gold); font-weight: 800; letter-spacing: .16em; }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 18px; font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; color: #d8dde5; }
.nav-links a:hover { color: var(--gold); }
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
}
.hero.compact { min-height: 74vh; }
.home-hero { min-height: calc(100vh - 72px); }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,.88), rgba(13,27,42,.55) 48%, rgba(17,17,17,.35)), linear-gradient(0deg, rgba(17,17,17,.94), transparent 48%);
  z-index: -1;
}
.home-hero::before {
  background:
    linear-gradient(90deg, rgba(17,17,17,.92), rgba(13,27,42,.62) 48%, rgba(17,17,17,.18)),
    linear-gradient(0deg, rgba(17,17,17,.96), transparent 54%);
}
.hero img.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: saturate(.82) contrast(1.08); }
.home-hero img.hero-img { object-position: center 36%; animation: slowFrame 18s ease-in-out infinite alternate; }
.hero-content { padding: 92px 0 58px; max-width: 940px; }
.eyebrow, .section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 800;
}
h1, h2, h3 { margin: 0; line-height: 1.02; font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 { font-size: clamp(3rem, 7vw, 6.7rem); max-width: 1040px; letter-spacing: -.045em; }
h2 { font-size: clamp(2.1rem, 4vw, 4.2rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
.lead { max-width: 720px; color: #d7dde6; font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 20px;
  border: 1px solid var(--gold2);
  color: var(--paper);
  background: rgba(200,155,60,.12);
  font-weight: 800;
  letter-spacing: .03em;
}
.btn.primary { background: var(--gold); color: #151515; border-color: var(--gold); }
.btn-primary { background: var(--gold); color: #151515; border-color: var(--gold); }
.btn-outline { background: rgba(200,155,60,.08); color: var(--paper); border-color: rgba(200,155,60,.72); }
section { padding: 88px 0; }
.content-section { padding: 88px 0; }
.page-header {
  min-height: 62vh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  padding: 92px 0 58px;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,.88), rgba(13,27,42,.55) 48%, rgba(17,17,17,.35)), linear-gradient(0deg, rgba(17,17,17,.94), transparent 48%);
  z-index: -1;
}
.page-header h1 { max-width: 1040px; }
.page-header p { max-width: 760px; color: #d7dde6; font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
.tagline {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 800;
}
.subtitle { max-width: 720px; color: #d7dde6; font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
.divider,
.divider-center {
  width: 74px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0 22px;
}
.divider-center { margin-left: auto; margin-right: auto; }
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 18px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.featured-card,
.highlight-box,
.policy-content,
blockquote {
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.045);
  padding: 28px;
}
blockquote {
  margin: 24px 0;
  border-left: 3px solid var(--gold);
  color: #d8dde5;
  font-family: Georgia, "Times New Roman", serif;
}
.paper .featured-card,
.paper .highlight-box,
.paper .policy-content,
.paper blockquote {
  background: #fff;
  border-color: #dad8cf;
  color: #4d535a;
}
.photo-hover img { transition: transform .8s ease, filter .8s ease; }
.photo-hover:hover img { transform: scale(1.045); filter: saturate(1) contrast(1.08); }
.paper { background: var(--paper); color: var(--ink); }
.paper .lead, .paper .muted, .paper p { color: #4d535a; }
.muted { color: var(--muted); }
.section-head { display: grid; grid-template-columns: minmax(0, .9fr) minmax(260px, .6fr); gap: 44px; align-items: end; margin-bottom: 38px; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: linear-gradient(135deg, rgba(19,34,56,.92), rgba(17,17,17,.96)); }
.metric { min-height: 132px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric strong { display: block; color: var(--gold); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; font-family: Georgia, serif; font-weight: 500; }
.metric span { display: block; margin-top: 12px; color: #d9dee7; text-transform: uppercase; letter-spacing: .08em; font-size: .76rem; }
.cards, .projects, .records { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capabilities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); }
.capability, .card, .record-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.11);
  padding: 28px;
  min-height: 210px;
}
.paper .card, .paper .record-card { background: #fff; border-color: #dad8cf; }
.capability img, .card img.cover { width: 100%; height: 250px; object-fit: cover; margin: -28px -28px 24px; max-width: calc(100% + 56px); }
.capability, .card, .record-card, .metric, .system-node, .tag { transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease; }
.link-card { cursor: pointer; }
.link-card:focus-visible { outline: 3px solid rgba(212,160,23,.72); outline-offset: 4px; }
.link-card .card-link-label { display: inline-flex; margin-top: 18px; color: var(--gold); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; }
.capability:hover, .card:hover, .record-card:hover, .metric:hover, .system-node:hover { transform: translateY(-6px); border-color: rgba(212,160,23,.42); box-shadow: 0 18px 38px rgba(0,0,0,.22); }
.capability img, .card img.cover, .photo-band img, .un-photo { transition: transform .8s ease, filter .8s ease; }
.capability:hover img, .card:hover img.cover, .photo-band img:hover, .un-photo:hover { transform: scale(1.045); filter: saturate(1) contrast(1.08); }
.capability h3, .card h3, .record-card h3 { margin-bottom: 12px; }
.capability p, .card p, .record-card p { margin: 0; color: #c8d0db; }
.paper .card p, .paper .record-card p { color: #4d535a; }
.standards-about-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid #dad8cf;
}
.standards-about-callout h3 {
  max-width: 760px;
  font-size: clamp(1.35rem, 2.4vw, 2.35rem);
  color: var(--ink);
}
.photo-band { display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px; background: var(--black); padding: 6px; }
.photo-band img { height: 280px; width: 100%; object-fit: cover; filter: saturate(.86) contrast(1.05); animation: riseIn .8s ease both; }
.photo-band img:nth-child(2n) { height: 340px; }
.photo-band img:nth-child(2) { animation-delay: .06s; }
.photo-band img:nth-child(3) { animation-delay: .12s; }
.photo-band img:nth-child(4) { animation-delay: .18s; }
.photo-band img:nth-child(5) { animation-delay: .24s; }
.photo-band img:nth-child(6) { animation-delay: .3s; }
.photo-band img:nth-child(7) { animation-delay: .36s; }
.photo-band img:nth-child(8) { animation-delay: .42s; }
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 20px; }
.gallery img { height: 130px; width: 100%; object-fit: cover; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.tag { border: 1px solid rgba(212,160,23,.38); color: var(--gold); padding: 6px 10px; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.tag:hover, .interactive-fact:hover { transform: translateY(-3px); border-color: rgba(212,160,23,.68); background: rgba(212,160,23,.16); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.systems { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.system-node { border: 1px solid rgba(212,160,23,.34); min-height: 112px; display: grid; place-items: center; text-align: center; padding: 18px; background: linear-gradient(145deg, rgba(65,90,119,.25), rgba(255,255,255,.03)); font-weight: 800; color: inherit; text-decoration: none; }
.sample-panel { border: 1px solid rgba(212,160,23,.24); background: rgba(255,255,255,.05); padding: 22px; }
.paper .sample-panel { background: #fff; border-color: #dad8cf; }
.sample-panel h3 { margin-bottom: 10px; }
.sample-panel p { color: #4d535a; }
.locked-preview { margin-top: 14px; padding: 16px; border: 1px dashed rgba(212,160,23,.5); background: rgba(13,27,42,.06); filter: blur(2.5px); user-select: none; }
.locked-preview strong { display: block; margin-bottom: 8px; color: var(--ink); }
.curriculum-sheet { max-width: 880px; margin: 0 auto; border: 1px solid #d7d2c5; background: #fff; box-shadow: 0 24px 70px rgba(13,27,42,.12); }
.curriculum-title-page { min-height: 420px; display: grid; align-content: center; gap: 16px; padding: clamp(34px, 7vw, 74px); border-bottom: 1px solid #e3ded3; text-align: center; }
.curriculum-title-page h3 { font-family: Georgia, serif; font-size: clamp(2rem, 5vw, 4.4rem); line-height: .98; color: var(--ink); }
.curriculum-title-page p { color: #4d535a; }
.sheet-note { max-width: 560px; margin: 0 auto; font-size: .92rem; }
.week-sample { padding: clamp(28px, 5vw, 54px); border-bottom: 1px solid #e3ded3; }
.week-sample h3 { margin: 8px 0 18px; font-size: clamp(1.6rem, 3vw, 2.6rem); }
.week-sample p { color: #4d535a; margin-bottom: 14px; }
.redacted-curriculum { padding: clamp(24px, 4vw, 40px); display: grid; gap: 14px; background: #f5f2ea; position: relative; overflow: hidden; }
.redacted-curriculum::after { content: "Protected after Week 1"; position: absolute; inset: 0; display: grid; place-items: center; font-family: Georgia, serif; font-size: clamp(1.8rem, 5vw, 4rem); color: rgba(13,27,42,.82); background: rgba(245,242,234,.62); backdrop-filter: blur(5px); }
.redacted-curriculum div { padding: 18px; border: 1px solid #d8d0c0; background: rgba(255,255,255,.86); filter: blur(3.5px); user-select: none; }
.redacted-curriculum strong { display: block; color: var(--ink); margin-bottom: 6px; }
.redacted-curriculum span { color: #4d535a; }
.un-feature { background: linear-gradient(135deg, var(--navy), var(--charcoal)); overflow: hidden; }
.un-feature-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr); gap: 42px; align-items: center; }
.un-photo-stack { display: grid; grid-template-columns: .8fr 1fr; grid-template-rows: 90px 320px 90px; gap: 12px; }
.un-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 60px rgba(0,0,0,.34);
  filter: saturate(.9) contrast(1.06);
}
.un-photo.large { grid-column: 1 / 3; grid-row: 1 / 3; }
.un-photo:not(.large) { grid-column: 2; grid-row: 2 / 4; z-index: 2; }
.map-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.location { min-height: 180px; padding: 22px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.045); display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.location::before { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(17,17,17,.88), rgba(17,17,17,.12)); z-index:0; }
.location img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-1; }
.location * { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr); gap: 42px; align-items: start; }
.contact-form {
  display: grid;
  gap: 12px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(145deg, rgba(19,34,56,.9), rgba(255,255,255,.04));
}
.contact-form label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(17,17,17,.62);
  color: var(--paper);
  padding: 12px 14px;
  font: inherit;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: 2px solid rgba(212,160,23,.45); border-color: var(--gold); }
.hidden-field { display: none; }
.photo-stack-single { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.photo-stack-single img { height: 260px; width: 100%; object-fit: cover; border: 1px solid rgba(255,255,255,.13); }
.cta { min-height: 48vh; display: grid; place-items: center; text-align: center; background: linear-gradient(rgba(13,27,42,.82), rgba(17,17,17,.94)), url("images/peac-delegation-2025.jpg") center/cover; }
.footer { border-top: 1px solid var(--line); padding: 38px 0; color: #b8c0ca; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-directory {
  width: min(1180px, calc(100% - 40px));
  margin: 30px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.footer-directory h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .78rem;
  font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-directory a {
  display: block;
  padding: 4px 0;
  color: #d8dde5;
  font-size: .86rem;
}
.footer-directory a:hover { color: var(--gold); }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; align-items: start; }
.bio-card { background: #fff; border: 1px solid #dad8cf; color: #111; padding: clamp(24px, 4vw, 38px); }
.bio-card h2,
.bio-card h3,
.bio-card p,
.bio-card a,
.bio-card .lead,
.bio-card .section-label,
.bio-card .bio-meta { color: #111; }
.bio-card p { color: #111; }
.bio-card .lead { color: #111; }
.bio-card h2 { font-size: clamp(1.55rem, 2.4vw, 2.35rem); letter-spacing: -.02em; }
.bio-card .tag { color: #111; background: rgba(212,160,23,.16); border-color: rgba(17,17,17,.36); }
.bio-card .system-node { color: #111; background: #f8f6ef; border-color: #9b8c62; }
.bio-card .btn { color: #111; background: #fffaf0; border-color: #9b8c62; }
.bio-card .btn.primary { color: #111; background: var(--gold); border-color: var(--gold); }
.bio-card img,
.team-photo-placeholder { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; margin-bottom: 22px; }
.bio-card img.portrait-headshot { aspect-ratio: 4 / 5; object-position: center top; }
.team-photo-placeholder { background: #111; border: 1px solid #111; }
.bio-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.standards-page {
  background: var(--paper);
  color: var(--ink);
}
.standards-hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #101010;
}
.standards-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,13,13,.92), rgba(13,27,42,.54) 52%, rgba(13,13,13,.2)),
    linear-gradient(0deg, rgba(13,13,13,.95), rgba(13,13,13,.12) 58%);
  z-index: -1;
}
.standards-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .82;
}
.standards-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  filter: grayscale(.18) saturate(.78) contrast(1.08);
  animation: slowFrame 18s ease-in-out infinite alternate;
}
.standards-hero-content {
  max-width: 1040px;
  padding: 96px 0 64px;
}
.standards-hero h1 {
  max-width: 980px;
}
.standards-intro {
  border-bottom: 1px solid #d8d2c3;
}
.standards-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .7fr);
  gap: 46px;
  align-items: end;
}
.standards-intro h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}
.standards-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #d8d2c3;
}
.standard-block {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: clamp(22px, 5vw, 70px);
  padding: clamp(34px, 6vw, 76px) 0;
  border-bottom: 1px solid #d8d2c3;
}
.standard-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 4vw, 3.5rem);
  line-height: 1;
}
.standard-copy {
  max-width: 850px;
}
.standard-copy h2 {
  color: #111;
  margin-bottom: 22px;
}
.standard-copy p {
  color: #33383d;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  margin: 0 0 18px;
}
.standard-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.standard-copy li {
  position: relative;
  padding-left: 20px;
  color: #2b3035;
}
.standard-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.institutional-commitment {
  background: #fff;
  margin: 28px 0 0;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid #d8d2c3;
}
.standards-actions {
  background: #111;
  color: var(--paper);
  border-top: 1px solid rgba(212,160,23,.36);
}
.standards-actions-inner {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: center;
}
.standards-actions h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}
.standards-page .footer {
  background: #111;
}
@keyframes slowFrame {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, 1%, 0); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .section-head, .cards, .projects, .records, .capabilities, .map-grid, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .photo-band { grid-template-columns: repeat(4, 1fr); }
  .systems { grid-template-columns: 1fr 1fr; }
  .un-feature-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-directory { grid-template-columns: 1fr 1fr; }
  .standards-intro-grid, .standards-actions-inner { grid-template-columns: 1fr; }
  .standard-block { grid-template-columns: 1fr; gap: 16px; }
  .standards-about-callout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wrap, .narrow { width: min(100% - 28px, 1180px); }
  .nav-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-links { justify-content: flex-start; font-size: .66rem; gap: 10px 12px; }
  .hero, .hero.compact { min-height: 78vh; }
  .section-head, .cards, .projects, .records, .capabilities, .map-grid, .metrics, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .photo-band { grid-template-columns: 1fr 1fr; }
  .photo-band img, .photo-band img:nth-child(2n) { height: 190px; }
  .gallery { grid-template-columns: 1fr 1fr 1fr; }
  .un-photo-stack { grid-template-rows: 70px 230px 70px; }
  .photo-stack-single { grid-template-columns: 1fr; }
  .photo-stack-single img { height: 210px; }
  .footer-directory { width: min(100% - 28px, 1180px); grid-template-columns: 1fr; }
  .standard-copy ul { grid-template-columns: 1fr; }
  .standards-hero { min-height: 76vh; }
  .institutional-commitment { margin-top: 14px; }
  section { padding: 58px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
