@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;520;620;700;780;820;850&family=Inter+Tight:wght@620;700;780;820&display=swap");

:root {
  font-family: "Inter", "Aptos", "Helvetica Neue", Arial, sans-serif;
}

:root {
  --ink: #171a17;
  --ink-2: #222a24;
  --paper: #ffffff;
  --paper-2: #ffffff;
  --line: rgba(23, 26, 23, 0.14);
  --muted: #676b66;
  --gold: #8f6d3e;
  --red: #6f2f3f;
  --green: #293f39;
  --blue: #253f56;
  --soft-gray: #f4f4f2;
  --mid-gray: #e9e9e5;
  --memory-bg: #f6f6f4;
  --education-bg: #f3f5f4;
  --current-bg: #f4f4f2;
  --archive-bg: #f4f4f2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Aptos", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: 0.001ms !important;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 92px auto minmax(250px, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  padding: 8px clamp(28px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-compact {
  padding-top: 6px;
  padding-bottom: 6px;
  box-shadow: 0 12px 32px rgba(23, 26, 23, 0.06);
}

.site-header.is-compact .brand img {
  width: 76px;
}

.brand img {
  width: 84px;
  height: auto;
  transition: width 220ms ease;
}

nav {
  min-width: 0;
  display: flex;
  justify-content: flex-start;
  gap: clamp(15px, 1.8vw, 24px);
  color: #343934;
  font-size: 13px;
  font-weight: 760;
}

.header-feature {
  position: relative;
  justify-self: end;
  min-width: 260px;
  max-width: 360px;
  padding: 10px 14px 11px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.header-feature::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  height: 2px;
  background: var(--gold);
}

.header-feature span {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.header-feature strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.1;
}

.header-feature small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.header-social {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.header-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: #343934;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.header-social a:hover {
  background: var(--soft-gray);
}

.top-current {
  position: sticky;
  top: 76px;
  z-index: 18;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 28px;
  padding: 4px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: var(--soft-gray);
  font-size: 13px;
  overflow: hidden;
}

.top-current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26%;
  height: 2px;
  background: var(--gold);
  animation: currentProgress 5s ease-in-out infinite;
}

.top-current span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-current strong {
  color: var(--ink);
}

.top-current p {
  margin: 0;
  color: var(--muted);
}

.top-current a {
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header.is-compact + .top-current {
  top: 66px;
}

.hero {
  min-height: clamp(520px, 68vh, 680px);
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: relative;
  min-height: clamp(500px, 68vh, 660px);
  overflow: hidden;
  background: #ffffff;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0.08) contrast(1.04);
  transform: scale(1.025);
  opacity: 0;
  transition: opacity 420ms ease;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-slides img.is-active {
  opacity: 1;
}

.hero-slides img:first-child {
  object-fit: cover;
  object-position: center 48%;
}

.hero-slides img:nth-child(2) {
  object-position: center 42%;
}

.hero-slides img:nth-child(4) {
  object-fit: contain;
  background: var(--soft-gray);
}

.hero-slides img:nth-child(3) {
  object-position: center 34%;
}

.hero-slides img.is-contain {
  object-fit: contain;
  object-position: center center;
  background: var(--soft-gray);
}

.hero-transition {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(244, 244, 242, 0.72), rgba(255, 255, 255, 0.18)),
    repeating-conic-gradient(from 45deg, rgba(143, 109, 62, 0.22) 0 25%, rgba(255, 255, 255, 0.52) 0 50%) 0 0 / 18px 18px;
  mix-blend-mode: normal;
  clip-path: inset(0 100% 0 0);
}

.hero-media.is-transitioning .hero-transition {
  animation: pixelWipe 720ms cubic-bezier(.65, 0, .2, 1);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(23,26,23,0.08), rgba(23,26,23,0.52));
}

.hero-note {
  position: absolute;
  right: 28px;
  bottom: clamp(64px, 8vh, 88px);
  z-index: 3;
  max-width: 245px;
  padding: 15px 16px;
  background: rgba(255, 250, 241, 0.92);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-note.is-changing {
  opacity: 0.12;
  transform: translateY(8px);
}

.hero-note span {
  display: block;
  max-width: 100%;
  font-family: "Inter Tight", "Inter", "Aptos", "Helvetica Neue", Arial, sans-serif;
  font-size: 38px;
  font-weight: 780;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.hero-note p {
  margin: 10px 0 0;
  color: #4d5048;
  font-size: 12px;
  font-weight: 680;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.7vw, 64px);
  overflow: hidden;
}

.hero-copy > .eyebrow,
.hero-copy h1,
.hero-copy > p:not(.eyebrow),
.hero-current,
.hero-actions,
.hero-paths {
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 700ms ease forwards;
}

.hero-copy h1 {
  animation-delay: 90ms;
}

.hero-copy > p:not(.eyebrow) {
  animation-delay: 170ms;
}

.hero-actions {
  animation-delay: 340ms;
}

.hero-paths {
  animation-delay: 430ms;
}

.hero-current {
  animation-delay: 250ms;
}

.memory-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}

.memory-lines span {
  position: absolute;
  display: block;
  width: 1px;
  height: 42%;
  background: rgba(255, 255, 255, 0.58);
  transform-origin: top;
  animation: linePulse 5.5s ease-in-out infinite;
}

.memory-lines span:nth-child(1) {
  left: 18%;
  top: 10%;
}

.memory-lines span:nth-child(2) {
  left: 40%;
  top: 24%;
  animation-delay: 0.7s;
}

.memory-lines span:nth-child(3) {
  left: 63%;
  top: 12%;
  animation-delay: 1.4s;
}

.memory-lines span:nth-child(4) {
  left: 82%;
  top: 30%;
  animation-delay: 2.1s;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Inter Tight", "Inter", "Aptos", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.018em;
}

h1 {
  max-width: 660px;
  font-size: clamp(36px, 4.15vw, 61px);
  line-height: 0.98;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 18px 0 0;
  color: #43483f;
  font-size: clamp(17px, 1.28vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-current {
  position: relative;
  max-width: 650px;
  display: grid;
  grid-template-columns: 16px 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(107, 38, 52, 0.18);
  background: var(--current-bg);
  overflow: hidden;
}

.hero-current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  height: 3px;
  background: var(--red);
  animation: currentProgress 5s ease-in-out infinite;
}

.hero-current p {
  margin: 0 0 2px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-current strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.hero-current small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hero-current a {
  font-size: 13px;
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(107, 38, 52, 0.24);
  animation: livePulse 2.2s ease-in-out infinite;
}

.hero-paths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 520px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-paths span {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding-right: 16px;
  color: #5f665e;
  font-size: 14px;
  font-weight: 820;
  border-right: 1px solid var(--line);
}

.hero-paths span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation: dotPulse 3.8s ease-in-out infinite;
}

.hero-paths span:last-child {
  border-right: 0;
}

.motion-toggle {
  width: max-content;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.system-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.system-index > :nth-child(1) {
  background: var(--memory-bg);
}

.system-index > :nth-child(2) {
  background: var(--current-bg);
}

.system-index > :nth-child(3) {
  background: var(--archive-bg);
}

.system-index > :nth-child(4) {
  background: #fff;
}

.system-index > a,
.system-index > article {
  min-height: 164px;
  display: block;
  padding: clamp(24px, 2.6vw, 36px);
  border-right: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.system-index > :last-child {
  border-right: 0;
}

.system-index span {
  color: var(--gold);
  font-size: 20px;
  font-weight: 780;
}

.system-index h2 {
  margin-top: 28px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.system-index p {
  max-width: 290px;
  color: var(--muted);
  font-size: 14px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  font-weight: 820;
}

.button.primary {
  background: var(--ink);
  color: var(--paper-2);
}

.button.ghost {
  background: transparent;
}

.current {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
  padding: clamp(54px, 7vw, 110px) clamp(18px, 5vw, 72px);
  background: var(--current-bg);
}

.current.split-current {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  background: #fff;
  border-top: 1px solid var(--line);
}

.current-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    #ffffff;
  border: 1px solid rgba(107, 38, 52, 0.16);
}

.current-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: contain;
  background: #ffffff;
}

.current-copy h2 {
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: 0.94;
}

.current-copy h3 {
  max-width: 720px;
  margin: 16px 0 24px;
  color: var(--green);
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.06;
}

.current-copy p:not(.eyebrow) {
  max-width: 720px;
  color: #41463f;
  font-size: 18px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 34px 0 24px;
  background: var(--line);
}

.meta-grid span {
  padding: 16px;
  background: var(--paper-2);
  color: var(--muted);
  font-size: 13px;
}

.meta-grid strong {
  color: var(--ink);
  font-size: 18px;
}

.doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.doc-links a {
  padding: 12px 14px;
  background: var(--red);
  color: var(--paper-2);
  font-weight: 790;
}

.mission {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mission article:nth-child(1) {
  background: var(--memory-bg);
}

.mission article:nth-child(2) {
  background: var(--education-bg);
}

.mission article:nth-child(3) {
  background: #fff;
}

.mission article {
  min-height: 136px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  padding: 22px clamp(18px, 2.5vw, 30px);
  border-right: 1px solid var(--line);
}

.mission article:last-child {
  border-right: 0;
}

.mission span {
  color: var(--gold);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.1;
}

.mission h2 {
  margin-top: 0;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.04;
}

.mission p {
  grid-column: 2;
  max-width: 360px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.program-section {
  padding: clamp(58px, 7vw, 108px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.audience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 7vw, 104px) clamp(18px, 5vw, 72px);
  background: var(--education-bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-intro h2 {
  max-width: 660px;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  align-self: start;
  background: var(--line);
}

.audience-grid article {
  min-height: 178px;
  padding: 24px;
  background: #fff;
}

.audience-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.audience-grid p {
  margin: 0;
  color: #41463f;
  font-size: 17px;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.02;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.program-card {
  grid-column: span 2;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border: 1px solid var(--line);
  overflow: hidden;
}

.program-card:nth-child(1) {
  background: var(--current-bg);
}

.program-card:nth-child(2) {
  background: #fff;
}

.program-card:nth-child(3) {
  background: var(--education-bg);
}

.program-card:nth-child(4) {
  background: var(--archive-bg);
}

.program-card:nth-child(5) {
  background: var(--memory-bg);
}

.program-card.large {
  grid-column: span 4;
}

.program-card > img,
.target-visual {
  width: 100%;
  height: 315px;
  object-fit: cover;
  background: #ded4c8;
}

.program-card.large > img {
  height: 410px;
  object-fit: contain;
  background: #ffffff;
}

.target-visual {
  display: grid;
  place-items: center;
  padding: 30px;
  background: #ffffff;
}

.target-visual img {
  width: min(88%, 420px);
  height: auto;
}

.program-card div:last-child {
  padding: 26px;
}

.program-card p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.02;
}

.program-card span {
  color: var(--muted);
  font-size: 16px;
}

.updates {
  padding: clamp(58px, 7vw, 104px) clamp(18px, 5vw, 72px);
  background: #ffffff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.section-heading.inverted h2 {
  color: var(--ink);
}

.update-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.update-grid article {
  min-height: 260px;
  padding: 28px;
  background: #ffffff;
}

.update-grid article:nth-child(1) {
  background: var(--current-bg);
}

.update-grid article:nth-child(2) {
  background: #fff;
}

.update-grid article:nth-child(3) {
  background: var(--archive-bg);
}

.tag {
  width: max-content;
  margin: 0 0 20px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.update-grid time {
  color: #d7bd95;
  font-size: 13px;
  font-weight: 780;
}

.update-grid h3 {
  margin: 22px 0 12px;
  font-size: 28px;
  line-height: 1.06;
}

.update-grid p {
  color: var(--muted);
}

.document-hub {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 7vw, 104px) clamp(18px, 5vw, 72px);
  background: var(--archive-bg);
  border-top: 1px solid var(--line);
}

.document-hub h2 {
  max-width: 680px;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1;
}

.document-list {
  align-self: start;
  border-top: 1px solid var(--line);
}

.document-list a {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 20px;
  font-weight: 760;
}

.document-list span {
  color: var(--gold);
  font-size: 18px;
}

.council-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.council-list div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.council-list span {
  color: var(--gold);
  font-size: 18px;
  font-weight: 760;
}

.council-list strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.council-list small {
  grid-column: 2;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  margin-top: -12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.footer-primary {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.8fr) minmax(220px, 0.8fr);
  gap: clamp(28px, 6vw, 92px);
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.footer-primary img {
  width: 96px;
  margin-bottom: 22px;
}

.footer-primary p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.footer-primary nav,
.footer-primary address {
  display: grid;
  gap: 10px;
  align-content: start;
  font-style: normal;
}

.footer-primary a,
.footer-primary address span {
  color: #343934;
  font-size: 15px;
  font-weight: 720;
}

.social-label {
  margin-top: 12px;
  color: var(--gold) !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  padding: 7px 9px;
  border: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--soft-gray);
}

.footer-newsletter h2 {
  max-width: 660px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.03;
}

.footer-newsletter form {
  display: grid;
  gap: 10px;
}

.footer-newsletter label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-newsletter form > div {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) auto;
  border: 1px solid var(--line);
  background: #ffffff;
}

.footer-newsletter input,
.footer-newsletter button {
  min-height: 52px;
  border: 0;
  font: inherit;
}

.footer-newsletter input {
  min-width: 0;
  padding: 0 16px;
  color: var(--ink);
}

.footer-newsletter button {
  padding: 0 20px;
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
  font-weight: 820;
}

.footer-newsletter form p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  max-width: 680px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.form-status.is-success {
  border-color: #8aa37e;
}

.form-status.is-error {
  border-color: #b05b52;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom a {
  font-weight: 720;
}

.content-page {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background: #ffffff;
}

.page-layout,
.archive-header {
  max-width: 1040px;
}

.archive-header {
  margin-bottom: clamp(20px, 2.4vw, 28px);
}

.page-header h1,
.archive-header h1 {
  max-width: 900px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
}

.archive-header > p:not(.eyebrow),
.page-lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: #43483f;
  font-size: clamp(18px, 1.5vw, 22px);
}

.entry-content {
  max-width: 820px;
  margin-top: 34px;
  color: #343934;
  font-size: 18px;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  margin: 0 0 1.2em;
}

.entry-content h2,
.entry-content h3 {
  margin: 1.7em 0 0.5em;
}

.entry-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 28px 0;
  background: #111;
  border: 1px solid var(--line);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.subpage-band {
  margin: clamp(34px, 5vw, 70px) clamp(-18px, -5vw, -72px) 0;
  padding: clamp(42px, 6vw, 84px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--soft-gray);
}

.subpage-band.is-white {
  background: #ffffff;
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.text-grid article {
  min-height: 220px;
  padding: 28px;
  background: #ffffff;
}

.text-grid h2,
.text-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1.04;
}

.text-grid p {
  margin: 0;
  color: var(--muted);
}

.anchor-card {
  scroll-margin-top: 112px;
}

.archive-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 clamp(18px, 2.5vw, 26px);
}

.archive-tools a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  background: #fff;
  color: #343934;
  font-size: 13px;
  font-weight: 820;
}

.document-finder {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(18px, 3vw, 34px);
  margin: 0 0 26px;
  align-items: start;
}

.document-featured,
.document-search-panel {
  border: 1px solid var(--line);
  background: var(--soft-gray);
  padding: clamp(20px, 3vw, 30px);
}

.document-featured h2 {
  max-width: 520px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
}

.document-feature-grid {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.document-feature-card {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.document-feature-card span,
.document-row-meta time,
.doc-group > summary strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.document-feature-card strong {
  font-size: 18px;
  line-height: 1.18;
}

.document-feature-card small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 820;
}

.document-search-panel label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.document-search-panel input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 16px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.document-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.document-filter-grid button,
.document-filter-grid a {
  min-height: 74px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.document-filter-grid button.is-active {
  border-color: rgba(143, 109, 62, 0.62);
  background: #fff9ee;
}

.document-filter-grid strong,
.document-filter-grid span {
  display: block;
}

.document-filter-grid strong {
  font-size: 15px;
  line-height: 1.2;
}

.document-filter-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.document-empty {
  margin: 14px 0 0;
  color: var(--red);
  font-weight: 720;
}

.doc-groups {
  display: grid;
  gap: 12px;
}

.doc-group {
  border: 1px solid var(--line);
  background: #ffffff;
}

.doc-group[hidden] {
  display: none;
}

.doc-group > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px clamp(18px, 3vw, 26px);
  cursor: pointer;
  list-style: none;
}

.doc-group > summary::-webkit-details-marker {
  display: none;
}

.doc-group > summary span {
  font-family: "Inter Tight", "Inter", "Aptos", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 720;
  line-height: 1.05;
}

.doc-group > summary::after {
  content: "+";
  color: var(--gold);
  font-size: 24px;
  font-weight: 760;
}

.doc-group[open] > summary::after {
  content: "-";
}

.doc-group > p {
  max-width: 780px;
  margin: -4px clamp(18px, 3vw, 26px) 18px;
  color: var(--muted);
}

.document-compact-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.document-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.25fr) minmax(220px, 0.45fr) minmax(220px, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px clamp(18px, 3vw, 26px);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.document-row:last-child {
  border-bottom: 0;
}

.document-row[hidden] {
  display: none;
}

.document-row-meta {
  display: grid;
  gap: 8px;
  align-content: start;
}

.document-row h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.22;
}

.document-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.document-row-action {
  justify-self: end;
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
}

.archive-list {
  display: grid;
  gap: 1px;
  margin-top: 0;
  background: var(--line);
}

.archive-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
}

.archive-row > div:first-child {
  display: grid;
  align-content: start;
  gap: 12px;
}

.archive-row time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.archive-row h3 {
  margin: 0;
  font-size: clamp(23px, 2.1vw, 34px);
  line-height: 1.08;
}

.original-title {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: "Inter", "Aptos", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.35;
}

.archive-row p {
  grid-column: 2;
  max-width: 760px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.status-pill {
  width: max-content;
  padding: 5px 8px;
  border: 1px solid rgba(143, 109, 62, 0.32);
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.program-detail-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(52px, 7vw, 98px) 0;
  border-top: 1px solid var(--line);
}

.program-detail-visual {
  position: sticky;
  top: 116px;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft-gray);
}

.program-detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.program-detail-visual.target-visual {
  min-height: 330px;
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
}

.program-detail-visual.target-visual img {
  width: min(86%, 460px);
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.program-detail-copy h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(36px, 4.2vw, 66px);
  line-height: 1;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
}

.fact-grid span {
  min-height: 90px;
  padding: 15px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.fact-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.detail-links {
  margin-top: 28px;
}

.memory-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.memory-gallery figure {
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
}

.memory-gallery figure:first-child {
  grid-row: span 2;
  min-height: 734px;
}

.memory-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.memory-gallery figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
}

.contact-panel {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--soft-gray);
}

.contact-panel a,
.contact-panel span {
  display: block;
  margin-top: 12px;
  color: #343934;
  font-size: 18px;
  font-weight: 760;
}

.form-preview {
  display: grid;
  gap: 12px;
}

.form-preview label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-preview input,
.form-preview textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
}

.form-preview textarea {
  min-height: 150px;
  padding-top: 14px;
}

.target-page {
  background: #fff;
}

.target-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  min-height: 560px;
  border-bottom: 1px solid var(--line);
}

.target-brand-panel {
  display: grid;
  align-content: center;
  gap: 34px;
  padding: clamp(28px, 5vw, 72px);
  background: radial-gradient(circle at 20% 20%, rgba(169, 200, 235, 0.34), transparent 34%), linear-gradient(180deg, #f6f7f7, #ffffff);
  border-right: 1px solid var(--line);
}

.target-brand-panel > img {
  width: min(100%, 430px);
  margin: 0 auto;
}

.eu-credit {
  display: grid;
  gap: 14px;
  max-width: 420px;
  padding: 18px;
  border: 1px solid rgba(37, 63, 86, 0.16);
  background: rgba(255, 255, 255, 0.82);
}

.eu-credit img {
  max-width: 280px;
  height: auto;
}

.eu-credit p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
}

.target-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 78px);
}

.target-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.8vw, 86px);
}

.target-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #3f4640;
  font-size: clamp(18px, 1.55vw, 23px);
}

.target-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.target-section {
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.target-facts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.target-facts span {
  min-height: 132px;
  padding: 20px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.target-facts strong {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 80px);
}

.two-column h2,
.target-section .section-heading h2 {
  max-width: 860px;
  font-size: clamp(34px, 4.5vw, 68px);
  line-height: 0.99;
}

.target-pillars,
.wp-timeline,
.target-doc-grid,
.partner-strip {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.target-pillars {
  grid-template-columns: repeat(4, 1fr);
}

.target-pillars article,
.wp-timeline article,
.target-doc-grid a,
.partner-strip span {
  background: #fff;
}

.target-pillars article {
  min-height: 260px;
  padding: 24px;
}

.target-pillars span,
.target-doc-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.target-pillars h3,
.wp-timeline h3 {
  margin: 34px 0 12px;
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.05;
}

.target-pillars p,
.wp-timeline p {
  margin: 0;
  color: var(--muted);
}

.wp-timeline {
  grid-template-columns: repeat(3, 1fr);
}

.wp-timeline article {
  min-height: 248px;
  padding: 24px;
}

.wp-timeline article span {
  display: inline-flex;
  width: max-content;
  padding: 5px 8px;
  border: 1px solid rgba(143, 109, 62, 0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.target-doc-grid {
  grid-template-columns: repeat(4, 1fr);
}

.target-doc-grid a {
  min-height: 172px;
  padding: 22px;
}

.target-doc-grid strong {
  display: block;
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.2;
}

.target-photo-strip {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
  gap: 12px;
  margin-top: 16px;
}

.target-photo-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.target-photo-strip img:first-child {
  height: 360px;
  grid-row: span 2;
}

.partner-strip {
  grid-template-columns: repeat(7, 1fr);
}

.partner-strip span {
  min-height: 110px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: #343934;
  font-size: 13px;
  font-weight: 760;
}

.target-logo-strip span {
  min-height: 138px;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.target-logo-strip img {
  max-width: 168px;
  max-height: 58px;
  object-fit: contain;
}

.target-logo-strip p {
  margin: 0;
}

.target-disclaimer {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 72px);
  background: #f3f5f7;
  border-bottom: 1px solid var(--line);
}

.target-disclaimer > * {
  min-width: 0;
}

.target-disclaimer img {
  width: 100%;
  max-width: 420px;
}

.target-disclaimer p {
  margin: 0;
  color: #3f4640;
  font-size: 14px;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 74px 1fr;
    gap: 8px;
    padding: 8px 18px;
  }

  .brand img {
    width: 84px;
  }

  nav {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: hidden;
    padding-bottom: 2px;
    gap: 7px 14px;
    line-height: 1.1;
    white-space: normal;
    scrollbar-width: none;
  }

  .header-social {
    display: none;
  }

  .header-feature {
    display: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  .top-current {
    top: 98px;
    grid-template-columns: auto 1fr auto;
    min-height: 34px;
  }

  .top-current p {
    display: none;
  }

  .hero,
  .current,
  .mission,
  .system-index,
  .audience,
  .document-hub,
  .update-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 360px;
    order: 2;
  }

  .hero-slides img {
    animation: none !important;
    transform: none !important;
  }

  .hero-copy {
    order: 1;
    padding: 34px 24px 28px;
  }


  .mission article {
    min-height: auto;
    grid-template-columns: 36px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .system-index > a,
  .system-index > article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card,
  .program-card.large {
    grid-column: span 1;
    min-height: auto;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .footer-primary {
    grid-template-columns: 1fr;
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
  }

  .text-grid,
  .contact-grid,
  .memory-gallery,
  .document-finder,
  .program-detail-section,
  .archive-row,
  .target-hero,
  .two-column,
  .target-facts,
  .target-pillars,
  .wp-timeline,
  .target-doc-grid,
  .partner-strip,
  .target-disclaimer,
  .target-photo-strip {
    grid-template-columns: 1fr;
  }

  .subpage-band {
    margin-right: 0;
    margin-left: 0;
  }

  .target-brand-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .target-facts span,
  .target-pillars article,
  .wp-timeline article,
  .target-doc-grid a,
  .partner-strip span {
    min-height: auto;
  }

  .target-photo-strip img,
  .target-photo-strip img:first-child {
    height: 280px;
    grid-row: auto;
  }

  .target-disclaimer img {
    max-width: 100%;
  }

  .program-detail-visual {
    position: relative;
    top: auto;
    min-height: 300px;
  }

  .program-detail-visual img {
    min-height: 300px;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }

  .archive-row p {
    grid-column: 1;
    margin-top: 0;
  }

  .document-filter-grid,
  .document-row {
    grid-template-columns: 1fr;
  }

  .document-row-action {
    justify-self: start;
  }

  .memory-gallery figure,
  .memory-gallery figure:first-child {
    grid-row: auto;
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 6px 18px 7px;
  }

  .brand img {
    width: 70px;
  }

  nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 6px 8px;
    font-size: 11px;
  }

  .top-current {
    top: 91px;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    min-height: 34px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .top-current span {
    grid-column: auto;
    font-size: 10px;
  }

  .top-current strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .top-current a {
    font-size: 12px;
    white-space: nowrap;
  }

  h1 {
    font-size: 30px;
    line-height: 1.05;
  }

  .content-page {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .archive-header {
    margin-bottom: 18px;
  }

  .archive-header h1 {
    font-size: 30px;
    line-height: 1.06;
    max-width: calc(100vw - 36px);
    overflow-wrap: break-word;
  }

  .archive-header > p:not(.eyebrow),
  .page-lead {
    max-width: calc(100vw - 36px);
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  .archive-tools {
    gap: 8px;
    margin-bottom: 18px;
  }

  .archive-tools a {
    padding: 9px 11px;
    font-size: 12px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }


  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-current {
    grid-template-columns: 14px 1fr;
  }

  .hero-current a {
    grid-column: 2;
    width: max-content;
  }

  .hero-paths {
    grid-template-columns: 1fr 1fr;
  }

  .hero-paths span:nth-child(2) {
    border-right: 0;
  }

  .hero-paths span {
    min-height: 58px;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 315px;
  }

  .hero-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 12px 14px;
  }

  .hero-note span {
    font-size: 30px;
  }

  .hero-note p {
    margin-top: 6px;
    font-size: 12px;
  }

  .hero-paths {
    display: none;
  }

  .motion-toggle {
    margin-top: 12px;
  }

  .system-index > a,
  .system-index > article,
  .mission article {
    padding: 18px 22px;
  }

  .system-index h2,
  .mission h2 {
    margin-top: 0;
  }

  .current-copy h2 {
    font-size: 40px;
  }

  .current-copy h3 {
    font-size: 25px;
  }

  .current {
    padding: 42px 18px;
  }

  .meta-grid {
    grid-template-columns: 1fr;
  }

  .program-card > img,
  .program-card.large > img,
  .target-visual,
  .current-visual,
  .current-visual img {
    height: 280px;
    min-height: 280px;
  }

  .program-section,
  .updates,
  .audience,
  .document-hub {
    padding: 46px 18px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .program-card div:last-child,
  .update-grid article {
    padding: 22px;
  }

  .update-grid h3 {
    font-size: 24px;
  }

  .audience-intro h2,
  .document-hub h2 {
    font-size: 34px;
  }

  .document-list a {
    grid-template-columns: 42px 1fr;
    font-size: 17px;
  }

  .footer-primary {
    padding: 38px 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px;
  }

  .footer-newsletter {
    padding: 34px 18px;
  }

  .footer-newsletter form > div {
    grid-template-columns: 1fr;
  }

  .footer-newsletter button {
    width: 100%;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.025) translate3d(-0.6%, -0.4%, 0);
  }
  to {
    transform: scale(1.075) translate3d(1.1%, 0.7%, 0);
  }
}

@keyframes floatNote {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dotPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(168, 123, 66, 0);
  }
  45% {
    box-shadow: 0 0 0 7px rgba(168, 123, 66, 0.14);
  }
}

@keyframes linePulse {
  0%, 100% {
    transform: scaleY(0.28);
    opacity: 0.2;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.62;
  }
}

@keyframes livePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(107, 38, 52, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(107, 38, 52, 0);
  }
}

@keyframes currentProgress {
  0%, 100% {
    width: 22%;
    opacity: 0.62;
  }
  50% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes pixelWipe {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  18% {
    opacity: 0.78;
  }
  52% {
    opacity: 0.68;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
