:root {
  --ink: #141617;
  --muted: #61686d;
  --line: #d9dedb;
  --paper: #f7f8f4;
  --white: #ffffff;
  --signal: #e6402d;
  --signal-dark: #b62c20;
  --rail: #203b3f;
  --mint: #84b79d;
  --sun: #f3bb47;
  --steel: #dfe6e4;
  --shadow: 0 24px 80px rgba(20, 22, 23, 0.16);
  --radius: 8px;
  --max: 1220px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

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

.site-shell {
  overflow: clip;
  min-height: 100vh;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(12, 16, 17, 0.36);
  backdrop-filter: blur(18px);
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  animation: header-drop 680ms var(--ease-out) both;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 520ms var(--ease-out),
    opacity 520ms ease;
}

.site-header.is-scrolled {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(12, 16, 17, 0.82);
  box-shadow: 0 18px 50px rgba(20, 22, 23, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 118px;
  text-transform: uppercase;
}

.brand.has-logo {
  min-width: 156px;
}

.brand.has-logo > span:last-child {
  display: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signal), var(--sun));
  font-weight: 900;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark.has-logo {
  width: 148px;
  height: 42px;
  border-radius: 0;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: currentColor;
  font-size: 0.66rem;
  font-weight: 700;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 32px);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  opacity: 0.84;
  transition: opacity 180ms ease, color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms var(--ease-out);
}

.main-nav a:hover,
.main-nav a.is-active {
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.menu-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: currentColor;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.site-header.is-scrolled .icon-button,
.site-header.is-scrolled .menu-button {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--signal);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(230, 64, 45, 0.24);
  transition:
    transform 220ms var(--ease-out),
    background 180ms ease,
    box-shadow 220ms ease,
    border-color 180ms ease;
}

.button:hover {
  background: var(--signal-dark);
  box-shadow: 0 18px 38px rgba(230, 64, 45, 0.3);
  transform: translateY(-2px);
}

.button-compact {
  min-height: 44px;
  padding: 0 14px;
  font-size: 0.88rem;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
}

.button-light:hover {
  color: var(--white);
}

.mobile-panel {
  position: fixed;
  z-index: 29;
  top: 92px;
  left: 50%;
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  padding: 14px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-12px);
  transition:
    opacity 240ms ease,
    transform 320ms var(--ease-out),
    visibility 240ms ease;
  visibility: hidden;
}

.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

.mobile-panel a {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.mobile-panel a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 86svh;
  color: var(--white);
  background: var(--rail);
  overflow: hidden;
  --stack-index: 1;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: translate3d(0, var(--hero-media-y, 0px), 0);
  will-change: transform;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center;
}

.hero-media img {
  animation: hero-scale 1600ms var(--ease-out) forwards;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 16, 17, 0.92) 0%, rgba(12, 16, 17, 0.58) 48%, rgba(12, 16, 17, 0.22) 100%),
    radial-gradient(circle at 74% 24%, rgba(230, 64, 45, 0.34), transparent 30%),
    linear-gradient(0deg, rgba(20, 22, 23, 0.46), transparent 42%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: end;
  width: min(calc(100% - 32px), var(--max));
  min-height: 86svh;
  margin: 0 auto;
  padding: 150px 0 56px;
}

.hero-copy,
.section-heading > *,
.impact-copy,
.project-intro,
.contact-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.wide-cta .eyebrow {
  color: var(--sun);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 5.8rem;
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow,
.hero h1,
.hero-lead,
.hero-actions,
.hero-facts div {
  opacity: 1;
  transform: none;
}

.hero .eyebrow,
.hero h1,
.hero-lead,
.hero-actions,
.hero-facts div {
  animation: reveal-up 900ms var(--ease-out) forwards;
}

.hero .eyebrow {
  animation-delay: 180ms;
}

.hero h1 {
  animation-delay: 280ms;
}

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

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

.hero-facts div:nth-child(1) {
  animation-delay: 620ms;
}

.hero-facts div:nth-child(2) {
  animation-delay: 720ms;
}

.hero-facts div:nth-child(3) {
  animation-delay: 820ms;
}

.hero h1 [data-rotator] {
  color: var(--sun);
}

.hero-line {
  display: block;
  color: var(--white);
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid currentColor;
  font-weight: 800;
}

.hero-facts {
  display: grid;
  gap: 10px;
}

.hero-facts div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-facts strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.rail-strip {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  padding: 24px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.rail-line {
  width: min(calc(100% - 32px), var(--max));
  height: 10px;
  margin: 0 auto;
  background:
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(255, 255, 255, 0.35) 46px 56px),
    linear-gradient(var(--steel), var(--steel));
  background-size: 100% 2px, 100% 2px;
  background-position: center 1px, center 7px;
  background-repeat: repeat-x;
  transform-origin: left center;
}

.rail-line {
  animation: line-grow 1200ms var(--ease-out) 760ms both;
}

.rail-ticker {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 36px;
  padding-left: 100%;
  animation: ticker 28s linear infinite;
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.rail-ticker span::after {
  content: "/";
  margin-left: 36px;
  color: var(--signal);
}

@keyframes ticker {
  to {
    transform: translateX(-100%);
  }
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 0;
}

.stack-panel {
  position: sticky;
  top: 0;
  z-index: var(--stack-index, 1);
  isolation: isolate;
  min-height: 100svh;
  box-shadow: 0 -28px 90px rgba(20, 22, 23, 0.18);
}

.stack-panel::after {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 80px;
  content: "";
  background: linear-gradient(0deg, rgba(20, 22, 23, 0.22), transparent);
  opacity: 1;
  pointer-events: none;
}

.solutions {
  --stack-index: 2;
  background: var(--paper);
}

.impact {
  --stack-index: 3;
}

.project-lab {
  --stack-index: 4;
  background: var(--paper);
}

.wide-cta {
  --stack-index: 5;
}

.news {
  --stack-index: 6;
  background: var(--paper);
}

.hero.stack-panel {
  min-height: 100svh;
  box-shadow: none;
}

.hero-grid {
  min-height: 100svh;
}

.section.stack-panel {
  display: grid;
  align-content: center;
  width: 100%;
  margin: 0;
  padding-right: 0;
  padding-left: 0;
}

.section.stack-panel > * {
  width: min(calc(100% - 32px), var(--max));
  margin-right: auto;
  margin-left: auto;
}

.impact.stack-panel {
  min-height: 100svh;
}

.impact-media {
  min-height: 100svh;
}

.wide-cta.stack-panel {
  min-height: 100svh;
}

.stack-panel .reveal,
.stack-panel.reveal {
  opacity: 1;
  transform: none;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.project-intro h2,
.impact-copy h2,
.wide-cta h2,
.contact h2 {
  margin: 0;
  font-size: 4.6rem;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.impact-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.solution-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(240px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.solution-card {
  position: relative;
  display: grid;
  min-height: 340px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  scroll-snap-align: start;
  transition:
    color 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 360ms var(--ease-out),
    transform 360ms var(--ease-out);
}

.solution-card.active,
.solution-card:hover {
  color: var(--white);
  background: var(--rail);
  border-color: rgba(32, 59, 63, 0.4);
  box-shadow: 0 26px 70px rgba(20, 22, 23, 0.16);
  transform: translateY(-8px);
}

.solution-card span {
  color: var(--signal);
  font-weight: 900;
}

.solution-card h3 {
  align-self: end;
  max-width: 220px;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.04;
}

.solution-card p {
  align-self: end;
  margin: 12px 0 0;
  color: currentColor;
  line-height: 1.55;
  opacity: 0.72;
}

.solution-card svg {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  color: var(--mint);
  transition: transform 360ms var(--ease-out), color 260ms ease;
}

.solution-card:hover svg,
.solution-card.active svg {
  color: var(--sun);
  transform: rotate(-8deg) scale(1.08);
}

.impact {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
  align-items: stretch;
  color: var(--white);
  background: var(--rail);
}

.impact-media {
  min-height: 620px;
  overflow: hidden;
}

.impact-media img {
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--impact-media-y, 0px), 0) scale(1.06);
  will-change: transform;
}

.impact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 7vw, 82px);
}

.impact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.metrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.metrics strong {
  display: block;
  color: var(--sun);
  font-size: 2.8rem;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.project-lab {
  display: grid;
  gap: 42px;
}

.project-intro {
  max-width: 850px;
}

.project-stage {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.project-card {
  display: grid;
  min-height: 304px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(20, 22, 23, 0.08);
  transition:
    box-shadow 360ms var(--ease-out),
    transform 360ms var(--ease-out);
}

.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.project-card-large {
  grid-row: span 2;
}

.project-card img {
  height: 320px;
  object-fit: cover;
  transition: transform 650ms var(--ease-out);
}

.project-card-large img {
  height: 520px;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card div {
  padding: 24px;
}

.project-card span,
.news-card span {
  color: var(--signal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3,
.news-card h3 {
  margin: 10px 0;
  font-size: 1.85rem;
  line-height: 1.08;
}

.project-card p,
.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.project-card.accent {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(230, 64, 45, 0.9), rgba(32, 59, 63, 0.92)),
    var(--signal);
}

.project-card.accent p,
.project-card.accent span {
  color: rgba(255, 255, 255, 0.78);
}

.wide-cta {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(54px, 8vw, 92px) max(16px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 22, 23, 0.86), rgba(32, 59, 63, 0.78)),
    var(--cta-bg-image, url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=82"))
      center / cover;
  background-attachment: fixed;
}

.wide-cta h2 {
  max-width: 880px;
}

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

.news-card {
  min-height: 286px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    border-color 260ms ease,
    box-shadow 360ms var(--ease-out),
    transform 360ms var(--ease-out);
}

.news-card:hover {
  border-color: rgba(230, 64, 45, 0.26);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: 48px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 120px) 0;
}

.contact-copy {
  align-self: center;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 820ms ease,
    transform 820ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.reveal-left {
  transform: translateX(-48px);
}

.reveal-right {
  transform: translateX(48px);
}

.reveal-scale {
  transform: translateY(36px) scale(0.96);
}

.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  transform: translate(0, 0) scale(1);
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-scale {
  to {
    transform: scale(1);
  }
}

@keyframes line-grow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 4px rgba(230, 64, 45, 0.12);
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--signal-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: start;
  padding: 48px max(16px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px 34px;
  font-weight: 800;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-design {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  transition: color 180ms ease;
}

.footer-design:hover {
  color: var(--sun);
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .section-heading h2,
  .project-intro h2,
  .impact-copy h2,
  .wide-cta h2,
  .contact h2 {
    font-size: 3.7rem;
  }

  .main-nav,
  .icon-button,
  .button-compact {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: end;
  }

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

  .section-heading,
  .impact,
  .project-stage,
  .contact {
    grid-template-columns: 1fr;
  }

  .impact-media {
    min-height: 420px;
  }

  .project-card-large {
    grid-row: auto;
  }

  .project-card-large img,
  .project-card img {
    height: 360px;
  }

  .wide-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .wide-cta {
    background-attachment: scroll;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    min-height: 60px;
    padding: 8px 10px;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark.has-logo {
    width: 128px;
    height: 38px;
  }

  .hero-grid {
    width: min(calc(100% - 24px), var(--max));
    padding: 118px 0 34px;
  }

  .hero-copy {
    max-width: min(100%, 360px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.46rem;
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .hero h1 span {
    display: block;
  }

  .hero-lead {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-facts,
  .metrics {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: 94px;
  }

  .section {
    width: min(calc(100% - 24px), var(--max));
  }

  .solution-row {
    grid-template-columns: repeat(5, minmax(82vw, 1fr));
  }

  .solution-card {
    min-height: 300px;
  }

  .impact-copy {
    padding: 34px 18px;
  }

  .section-heading h2,
  .project-intro h2,
  .impact-copy h2,
  .wide-cta h2,
  .contact h2 {
    font-size: 2.72rem;
    line-height: 1;
  }

  .rail-ticker {
    font-size: 1.2rem;
  }

  .metrics strong {
    font-size: 2.4rem;
  }

  .project-card h3,
  .news-card h3 {
    font-size: 1.45rem;
  }

  .project-card-large img,
  .project-card img {
    height: 260px;
  }

  .contact {
    width: min(calc(100% - 24px), var(--max));
  }

  .contact-form {
    padding: 16px;
  }

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

  .footer-meta {
    flex-direction: column;
  }
}

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

  .site-header,
  .hero .eyebrow,
  .hero h1,
  .hero-lead,
  .hero-actions,
  .hero-facts div,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
