:root {
  color-scheme: dark;
  --bg: #06070a;
  --bg-soft: #0b0e14;
  --bg-panel: rgba(18, 23, 32, 0.72);
  --bg-panel-strong: rgba(22, 28, 38, 0.9);
  --text: #f5f7fb;
  --muted: #a8b0bd;
  --muted-strong: #d4dae3;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --red: #ef1028;
  --red-strong: #ff233b;
  --red-deep: #8e0714;
  --steel: #657184;
  --amber: #d5aa58;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --container: 1180px;
  --header-height: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #08090d 0%, #050609 42%, #08090d 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(239, 16, 40, 0.7);
  color: #fff;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 18px 0 auto 0;
  z-index: 100;
  width: min(1240px, calc(100% - 32px));
  min-height: var(--header-height);
  margin-inline: auto;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(8, 10, 15, 0.66);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}

.site-header.has-scrolled {
  background: rgba(8, 10, 15, 0.88);
  border-color: rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
  font-weight: 800;
  color: #fff;
}

.brand img {
  width: 220px;
  height: 50px;
  object-fit: contain;
}

.brand span {
  max-width: 230px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--muted-strong);
  font-size: 0.93rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  box-shadow: 0 16px 34px rgba(239, 16, 40, 0.2);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: linear-gradient(135deg, var(--red-strong), var(--red-deep));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-home {
  min-height: 96svh;
  padding: 142px 0 140px;
}

.page-hero {
  min-height: 620px;
  padding: 150px 0 110px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.95) 0%, rgba(5, 6, 9, 0.72) 42%, rgba(5, 6, 9, 0.24) 100%),
    linear-gradient(180deg, rgba(5, 6, 9, 0.22) 0%, rgba(5, 6, 9, 0.76) 100%);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 280px;
  background: linear-gradient(180deg, rgba(6, 7, 10, 0), var(--bg));
}

.hero-content,
.page-hero-content {
  max-width: 820px;
}

.hero-logo-wrap {
  margin-bottom: 22px;
}

.hero-logo {
  width: 330px;
  filter: drop-shadow(0 18px 48px rgba(239, 16, 40, 0.26));
}

.eyebrow {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 4.25rem;
  font-weight: 900;
}

.page-hero h1 {
  font-size: 3.6rem;
}

h2 {
  margin-bottom: 22px;
  font-size: 2.55rem;
  font-weight: 860;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-lead,
.page-hero-content p,
.section-copy p,
.editorial-band p,
.glass-panel p,
.value-card p,
.process-card p,
.timeline-item p,
.update-card p {
  color: var(--muted-strong);
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 34px;
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  box-shadow: 0 18px 42px rgba(239, 16, 40, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--red-strong), var(--red-deep));
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
  color: #fff;
  backdrop-filter: blur(14px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.status-strip {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted-strong);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.status-strip strong {
  color: #fff;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(239, 16, 40, 0.17), 0 0 24px rgba(239, 16, 40, 0.86);
}

.stat-band {
  position: relative;
  z-index: 3;
  margin-top: -72px;
  padding-bottom: 28px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-card,
.glass-panel,
.value-card,
.process-card,
.timeline-item,
.update-card,
.gallery-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.stat-card {
  min-height: 132px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-number {
  color: #fff;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 920;
}

.stat-label {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--bg);
}

.section-muted {
  background:
    linear-gradient(135deg, rgba(239, 16, 40, 0.07), rgba(101, 113, 132, 0.08)),
    #0a0d13;
}

.section-visual {
  background: #080a0f;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.section-copy {
  max-width: 720px;
}

.section-copy p {
  font-size: 1.04rem;
}

.glass-panel {
  padding: 30px;
}

.highlight-panel {
  border-top: 3px solid var(--red);
}

.check-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 14px 0;
  color: var(--muted-strong);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: #fff;
  font-weight: 850;
  border-bottom: 2px solid var(--red);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

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

.image-feature {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0e121a;
  box-shadow: var(--shadow);
}

.image-feature img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.image-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 9, 0.05) 30%, rgba(5, 6, 9, 0.92) 100%);
}

.image-feature:hover img {
  transform: scale(1.045);
}

.image-feature div {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 2;
}

.image-feature span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: var(--radius);
  background: rgba(239, 16, 40, 0.78);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.image-feature h3 {
  margin: 0;
  font-size: 1.22rem;
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.editorial-band h2 {
  margin-bottom: 0;
  font-size: 2.1rem;
}

.editorial-band p {
  margin-bottom: 0;
}

.page-hero-content {
  padding-top: 32px;
}

.page-hero-content p {
  max-width: 680px;
  font-size: 1.1rem;
}

.mission-grid,
.status-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

.panel-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red-strong);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.value-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-grid.compact {
  grid-template-columns: repeat(2, 1fr);
}

.value-card,
.process-card,
.update-card {
  padding: 24px;
}

.value-card {
  min-height: 210px;
}

.process-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red-strong);
  font-size: 0.92rem;
  font-weight: 920;
}

.process-card {
  min-height: 260px;
}

.compliance-layout,
.updates-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 38px;
  align-items: start;
}

.contact-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: var(--muted-strong);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-list a {
  color: #fff;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  outline: none;
}

.gallery-masonry {
  columns: 3 290px;
  column-gap: 18px;
}

.gallery-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  break-inside: avoid;
  transition: opacity 240ms ease, transform 240ms ease;
}

.gallery-card[data-hidden="true"] {
  display: none;
}

.gallery-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.gallery-zoom img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 600ms var(--ease), filter 260ms ease;
}

.gallery-card.tall img {
  aspect-ratio: 4 / 5;
}

.gallery-card.wide img {
  aspect-ratio: 16 / 10;
}

.gallery-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.gallery-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 10, 15, 0.72);
  color: #fff;
  font-size: 0.91rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 78vh;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
}

.lightbox p {
  margin: 16px 0 0;
  color: #fff;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin-left: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--red), rgba(255, 255, 255, 0.16));
}

.timeline-item {
  position: relative;
  padding: 26px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 32px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(239, 16, 40, 0.17);
}

.timeline-item span,
.update-card time {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--red-strong);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.update-list {
  display: grid;
  gap: 16px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row-full {
  grid-column: 1 / -1;
}

label {
  color: #fff;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

select option {
  color: #08090d;
}

textarea {
  resize: vertical;
  min-height: 170px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(239, 16, 40, 0.16);
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 2px;
  align-items: start;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--red);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted-strong);
  font-weight: 750;
}

.form-status.is-success {
  color: #ffffff;
}

.contact-aside {
  display: grid;
  gap: 18px;
}

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

.social-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 800;
}

.site-footer {
  padding: 58px 0;
  background: #050608;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.footer-logo {
  width: 150px;
  margin-bottom: 16px;
}

.site-footer p,
.footer-disclaimer p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer nav a {
  color: var(--muted-strong);
  font-weight: 750;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-disclaimer {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.footer-disclaimer strong {
  display: block;
  margin-bottom: 7px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

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

@media (max-width: 1080px) {
  .site-header {
    width: min(960px, calc(100% - 24px));
  }

  .nav-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 106px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 10, 15, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 46px;
    padding-inline: 14px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  h1 {
    font-size: 3.35rem;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .stat-grid,
  .feature-grid,
  .value-grid,
  .process-grid,
  .status-overview,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .compliance-layout,
  .updates-grid,
  .contact-layout,
  .editorial-band {
    grid-template-columns: 1fr;
  }

  .editorial-band .button {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    inset: 10px 0 auto 0;
    width: calc(100% - 18px);
    min-height: 64px;
    padding: 9px;
  }

  .brand img {
    width: 80px;
    height: 30px;
  }

  .brand span {
    max-width: 150px;
    font-size: 0.93rem;
  }

  .site-nav {
    top: 82px;
    left: 9px;
    right: 9px;
  }

  .hero-home {
    min-height: 94svh;
    padding: 118px 0 112px;
  }

  .page-hero {
    min-height: 540px;
    padding: 118px 0 82px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(5, 6, 9, 0.96), rgba(5, 6, 9, 0.65)),
      linear-gradient(180deg, rgba(5, 6, 9, 0.24), rgba(5, 6, 9, 0.82));
  }

  .hero-logo {
    width: 235px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-lead,
  .page-hero-content p {
    font-size: 1rem;
  }

  .status-strip {
    display: grid;
    grid-template-columns: 14px 1fr;
    align-items: center;
  }

  .status-strip span:last-child {
    grid-column: 2;
  }

  .section {
    padding: 76px 0;
  }

  .stat-band {
    margin-top: -48px;
  }

  .stat-grid,
  .feature-grid,
  .value-grid,
  .value-grid.compact,
  .process-grid,
  .mission-grid,
  .status-overview,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .image-feature,
  .image-feature img {
    min-height: 360px;
  }

  .glass-panel,
  .value-card,
  .process-card,
  .update-card,
  .editorial-band {
    padding: 22px;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .gallery-masonry {
    columns: 1;
  }

  .timeline {
    margin-left: 16px;
  }

  .timeline::before {
    left: -16px;
  }

  .timeline-item::before {
    left: -28px;
  }
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }

  h1 {
    font-size: 2.25rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}
