:root {
  --ink: #101217;
  --ink-soft: #171a21;
  --steel: #292e37;
  --muted: #657080;
  --silver: #b6bdc8;
  --paper: #f4f5f6;
  --white: #ffffff;
  --line: #dfe2e6;
  --red: #d41620;
  --red-dark: #ac1018;
  --max-width: 1240px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--red);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(16, 18, 23, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-frame {
  width: 94px;
  height: 70px;
  display: block;
  overflow: hidden;
  background: var(--white);
}

.logo-frame img {
  width: 112px;
  height: auto;
  display: block;
  transform: translate(-9px, -7px);
}

.brand-descriptor {
  max-width: 164px;
  color: #555e69;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.site-nav a {
  position: relative;
  color: #333943;
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  padding: 11px;
  border: 0;
  background: transparent;
}

.menu-button > span:not(.sr-only) {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 100px solid rgba(212, 22, 32, 0.08);
  content: "";
  transform: rotate(18deg);
}

.hero-layout {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(390px, 0.84fr);
  align-items: center;
  gap: 80px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.eyebrow,
.section-index {
  margin: 0 0 24px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #e6e8eb;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.4rem, 6.8vw, 6.7rem);
  font-weight: 850;
  line-height: 0.94;
  letter-spacing: -0.064em;
}

.hero h1 em {
  display: block;
  color: var(--red);
  font-style: normal;
}

.hero-intro {
  max-width: 690px;
  margin: 32px 0 0;
  color: #c6cbd2;
  font-size: clamp(1.05rem, 1.7vw, 1.27rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 21px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-ghost {
  color: var(--white);
  border-color: #555c68;
  background: rgba(255, 255, 255, 0.02);
}

.button-ghost:hover {
  border-color: #8c949f;
  background: rgba(255, 255, 255, 0.06);
}

.system-panel {
  position: relative;
  padding: 24px;
  border: 1px solid #3a404b;
  background: rgba(23, 26, 33, 0.92);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.system-panel::before {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 110px;
  height: 4px;
  content: "";
  background: var(--red);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid #353a44;
  color: #aeb5be;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d4d8dd;
}

.status i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #6ee7a8;
  box-shadow: 0 0 0 5px rgba(110, 231, 168, 0.08);
}

.system-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid #353a44;
}

.step-no {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.system-steps strong,
.system-steps small {
  display: block;
}

.system-steps strong {
  margin-bottom: 3px;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.system-steps small {
  color: #929aa5;
  font-size: 0.75rem;
  line-height: 1.4;
}

.panel-note {
  margin: 20px 0 0;
  color: #bfc4cb;
  font-size: 0.82rem;
}

.proof-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #343943;
}

.proof-strip > div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 26px;
  border-right: 1px solid #343943;
}

.proof-strip > div:first-child {
  border-left: 1px solid #343943;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--white);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.proof-strip span {
  margin-top: 4px;
  color: #929aa5;
  font-size: 0.76rem;
}

.section {
  padding: 120px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.section-heading h2,
.section-header h2,
.infra-copy h2,
.contact-header h2,
.closing-statement h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 830;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.about-copy {
  max-width: 760px;
}

.about-copy p {
  color: #4e5662;
  font-size: 1.02rem;
}

.about-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.about-copy strong {
  color: var(--ink);
}

blockquote {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--red);
}

blockquote span {
  padding: 13px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.capabilities {
  color: var(--white);
  background: var(--ink-soft);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 56px;
}

.section-header .light {
  color: #ff5c65;
}

.section-header > p {
  margin: 0 0 6px;
  color: #aeb5be;
}

.section-header.dark > p {
  color: #68717d;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #3b414b;
  border-left: 1px solid #3b414b;
}

.capability-card {
  min-height: 332px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-right: 1px solid #3b414b;
  border-bottom: 1px solid #3b414b;
  background: rgba(255, 255, 255, 0.015);
  transition: background 200ms ease, transform 200ms ease;
}

.capability-card:hover {
  z-index: 1;
  background: #20242c;
  transform: translateY(-4px);
}

.card-number {
  color: #7d8590;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
}

.capability-card h3 {
  margin: 28px 0 14px;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.capability-card p {
  margin: 0;
  color: #aeb5be;
  font-size: 0.94rem;
}

.card-link {
  margin-top: auto;
  padding-top: 28px;
  color: #f25b63;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience {
  background: var(--paper);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cfd3d8;
}

.experience-column {
  padding: 36px 34px 12px 0;
  border-right: 1px solid #cfd3d8;
}

.experience-column + .experience-column {
  padding-left: 34px;
}

.experience-column:last-child {
  border-right: 0;
}

.experience-label {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.experience-column h3 {
  min-height: 104px;
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.experience-column ul {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.experience-column li {
  position: relative;
  padding: 12px 0 12px 20px;
  border-top: 1px solid #d9dce0;
  color: #565f6b;
  font-size: 0.88rem;
}

.experience-column li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--red);
}

.nda-note {
  margin: 46px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--red);
  color: #606975;
  background: #e8eaed;
  font-size: 0.82rem;
}

.infra-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 110px;
}

.infra-copy > p:not(.section-index) {
  max-width: 520px;
  margin-top: 28px;
  color: #616a76;
}

.indigenous-stamp {
  margin-top: 46px;
  padding: 22px 24px;
  border-left: 4px solid var(--red);
  background: var(--paper);
}

.indigenous-stamp span,
.indigenous-stamp strong {
  display: block;
}

.indigenous-stamp span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.indigenous-stamp strong {
  margin-top: 4px;
  font-size: 1.05rem;
}

.infra-list {
  border-top: 2px solid var(--ink);
}

.infra-list > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}

.infra-list span {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.73rem;
}

.infra-list strong {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.closing-statement {
  padding: 110px 0;
  color: var(--white);
  background: var(--red);
}

.closing-statement p {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing-statement h2 {
  max-width: 1000px;
}

.answer-line {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.answer-line span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.answer-line strong {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.contact::before {
  position: absolute;
  top: 0;
  right: max(24px, calc((100vw - var(--max-width)) / 2));
  width: min(32vw, 380px);
  height: 5px;
  content: "";
  background: var(--red);
}

.contact-header {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 56px;
}

.contact-header > p {
  margin: 0 0 6px;
  color: #616a76;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(480px, 1.18fr);
  align-items: start;
  gap: 38px;
}

.contact-details {
  border-top: 2px solid var(--ink);
}

.contact-card {
  display: block;
  padding: 24px 4px;
  border-bottom: 1px solid #cfd3d8;
  text-decoration: none;
}

a.contact-card,
.contact-card-split a {
  transition: padding 180ms ease, background 180ms ease;
}

a.contact-card:hover,
a.contact-card:focus-visible,
.contact-card-split a:hover,
.contact-card-split a:focus-visible {
  padding-right: 14px;
  padding-left: 14px;
  background: var(--white);
}

.contact-card strong,
.contact-card > span,
.contact-card-split span {
  display: block;
}

.contact-card strong {
  margin: 6px 0 5px;
  font-size: 1.08rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-card > span:last-child,
.contact-card-split a > span:last-child {
  color: #66707c;
  font-size: 0.78rem;
}

.contact-card b {
  color: var(--red);
  font-weight: 800;
}

.contact-label {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.contact-card-split a {
  display: block;
  padding: 24px 18px 24px 4px;
  text-decoration: none;
}

.contact-card-split a + a {
  padding-left: 22px;
  border-left: 1px solid #cfd3d8;
}

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0 0;
  color: #69727e;
  font-size: 0.78rem;
}

.contact-note > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--red);
}

.enquiry-form {
  padding: 34px;
  color: var(--white);
  background: var(--ink-soft);
  box-shadow: 0 24px 70px rgba(16, 18, 23, 0.14);
}

.form-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid #3b414b;
  color: #aeb5be;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #d4d8dd;
  font-size: 0.8rem;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  display: block;
  padding: 12px 13px;
  border: 1px solid #4a515d;
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: #20242c;
  font: inherit;
  font-size: 0.92rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field select {
  color-scheme: dark;
}

.form-field textarea {
  min-height: 142px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #f25b63;
  box-shadow: 0 0 0 3px rgba(212, 22, 32, 0.16);
}

.form-field textarea::placeholder {
  color: #7f8792;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
}

.form-submit-row p {
  max-width: 340px;
  margin: 0;
  color: #939ba6;
  font-size: 0.74rem;
  line-height: 1.55;
}

.form-submit-row .button {
  flex: 0 0 auto;
  cursor: pointer;
}

.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: #d7dbe0;
  font-size: 0.78rem;
}

.site-footer {
  padding: 34px 0;
  color: #9aa2ad;
  background: #0a0c10;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.footer-layout p {
  margin: 0;
  font-size: 0.72rem;
}

.footer-layout p a {
  text-decoration-color: #4c535d;
  text-underline-offset: 3px;
}

.footer-layout p a:hover,
.footer-layout p a:focus-visible {
  color: var(--white);
  text-decoration-color: var(--red);
}

.footer-brand {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.footer-brand span {
  color: var(--red);
}

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

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

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

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 76px;
  }

  .system-panel {
    max-width: 620px;
  }

  .split-layout,
  .infra-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-header,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-header {
    gap: 22px;
  }

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

  .experience-column:nth-child(2) {
    border-right: 0;
  }

  .experience-column:nth-child(3) {
    padding-left: 0;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 76px;
  }

  .page-shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header {
    padding: 0 16px;
  }

  .logo-frame {
    width: 84px;
    height: 62px;
  }

  .logo-frame img {
    width: 101px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.99);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 20px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-layout {
    min-height: 0;
    padding-top: 66px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

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

  .button {
    width: 100%;
  }

  .system-panel {
    padding: 18px;
  }

  .panel-topline {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .proof-strip > div {
    min-height: 94px;
    padding: 16px;
    border-bottom: 1px solid #343943;
  }

  .proof-strip > div:nth-child(odd) {
    border-left: 1px solid #343943;
  }

  .section {
    padding: 82px 0;
  }

  .contact-card-split,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-split a + a {
    padding-left: 4px;
    border-top: 1px solid #cfd3d8;
    border-left: 0;
  }

  .contact-card-split a + a:hover,
  .contact-card-split a + a:focus-visible {
    padding-left: 14px;
  }

  .enquiry-form {
    padding: 24px 18px;
  }

  .form-topline,
  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .capability-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 286px;
  }

  .experience-column,
  .experience-column + .experience-column,
  .experience-column:nth-child(3) {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid #cfd3d8;
  }

  .experience-column h3 {
    min-height: 0;
  }

  blockquote {
    grid-template-columns: 1fr;
  }

  .closing-statement {
    padding: 82px 0;
  }
}

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

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

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