:root {
  --ink: #111516;
  --ink-soft: #202627;
  --paper: #f3f5f4;
  --white: #ffffff;
  --red: #d91f26;
  --red-bright: #ef3b43;
  --red-dark: #b9161d;
  --steel: #7e898c;
  --line: rgba(17, 21, 22, 0.16);
  --shell: min(1240px, calc(100% - 48px));
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  transition: background 240ms ease, box-shadow 240ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(17, 21, 22, 0.97);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand img {
  width: 39px;
  height: 38px;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.91rem;
  letter-spacing: 0.14em;
}

.brand-copy small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 600;
}

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

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.23);
  padding-left: 28px;
  font-size: 0.86rem;
  font-weight: 700;
}

.header-cta span {
  color: var(--red-bright);
  font-size: 1.05rem;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 82px 0 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 34vw;
  height: 34vw;
  min-width: 430px;
  min-height: 430px;
  left: -20vw;
  top: 13vh;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transform: rotate(45deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: stretch;
  min-height: calc(100vh - 214px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 690px;
  padding: 84px 72px 78px 0;
}

.eyebrow,
.overline {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin-right: 16px;
  color: var(--white);
}

.eyebrow span::before {
  content: "";
  display: inline-block;
  width: 29px;
  height: 2px;
  margin: 0 10px 3px 0;
  background: var(--red);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 6.3vw, 5.1rem);
  font-weight: 400;
  letter-spacing: -0.064em;
  line-height: 0.9;
}

h1 span,
h1 strong {
  display: block;
}

h1 strong {
  color: var(--red);
  font-weight: 800;
}

.hero-intro {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 22px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

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

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

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link span {
  margin-left: 8px;
  color: var(--red-bright);
}

.hero-assurance {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  line-height: 1.55;
}

.hero-assurance p {
  margin: 0;
}

.hero-assurance strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.79rem;
}

.pulse {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(226, 35, 42, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
  filter: saturate(0.72) contrast(1.08);
  transform: scale(1.015);
}

.image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 21, 22, 0.72), transparent 32%), linear-gradient(0deg, rgba(17, 21, 22, 0.72), transparent 43%);
}

.photo-label {
  position: absolute;
  left: 34px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--red);
  padding-left: 14px;
}

.photo-label span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.photo-label strong {
  margin-top: 3px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.vertical-mark {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  min-width: 62px;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background: rgba(226, 35, 42, 0.94);
  padding: 25px 0;
}

.vertical-mark span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.vertical-mark strong {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.metrics {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 132px;
  background: var(--paper);
  color: var(--ink);
}

.metrics article {
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding: 20px 30px;
}

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

.metrics strong {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.metrics strong span {
  margin-left: 0.14em;
  color: var(--red);
  font-size: 0.52em;
  letter-spacing: 0;
}

.metrics article > span {
  margin-top: 10px;
  color: #60696b;
  font-size: 0.76rem;
  font-weight: 600;
}

.section {
  padding: 124px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 70px;
}

.section-kicker {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.section-kicker span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.section-kicker p {
  margin: 0;
  color: #697274;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker.light p,
.section-kicker.light span {
  color: rgba(255, 255, 255, 0.55);
}

.section-kicker.light span {
  color: var(--red-bright);
}

.overline {
  margin-bottom: 19px;
  color: #657073;
}

.overline.light {
  color: rgba(255, 255, 255, 0.46);
}

h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

h2 em {
  color: var(--steel);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

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

h2.light em {
  color: rgba(255, 255, 255, 0.48);
}

.company-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  margin-top: 55px;
  padding-top: 33px;
  border-top: 1px solid var(--line);
}

.company-columns p {
  margin: 0;
  color: #4e5759;
  font-size: 1.03rem;
  line-height: 1.8;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
}

.purpose-grid article {
  min-height: 205px;
  background: var(--white);
  padding: 33px;
}

.purpose-grid article::before {
  content: "";
  display: block;
  width: 35px;
  height: 3px;
  margin-bottom: 32px;
  background: var(--red);
}

.purpose-grid span {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.purpose-grid p {
  margin: 12px 0 0;
  color: #4f585a;
  line-height: 1.7;
}

.capabilities {
  position: relative;
  background:
    radial-gradient(circle at 76% 6%, rgba(226,35,42,0.16), transparent 26%),
    var(--ink);
  color: var(--white);
}

.capabilities-head,
.record-head {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 70px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-card {
  position: relative;
  min-height: 420px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 30px 25px 36px;
  transition: background 180ms ease, transform 180ms ease;
}

.process-card:last-child {
  border-right: 0;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-4px);
}

.process-number {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 78px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--red-bright);
  font-size: 0.75rem;
  font-weight: 900;
}

.process-card h3 {
  min-height: 68px;
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.25;
}

.process-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.87rem;
  list-style: none;
}

.process-card li {
  position: relative;
  padding-left: 15px;
}

.process-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 1px;
  background: var(--red);
}

.record {
  background: var(--white);
}

.record-head {
  margin-bottom: 70px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: repeat(2, 330px);
  gap: 12px;
}

.project {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #dfe2e1;
}

.project-tall {
  grid-row: span 2;
}

.project-wide {
  grid-column: span 2;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.77) contrast(1.04);
  transition: transform 500ms cubic-bezier(.2,.8,.2,1), filter 300ms ease;
}

.project-tall img {
  object-position: 50% 25%;
}

.project-wide img {
  object-position: center 52%;
}

.project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 13, 14, 0.84), transparent 55%);
  pointer-events: none;
}

.project:hover img {
  transform: scale(1.035);
  filter: saturate(0.95) contrast(1.02);
}

.project figcaption {
  position: absolute;
  z-index: 2;
  left: 25px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.project figcaption span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project figcaption strong {
  margin-top: 3px;
  font-size: 1.05rem;
}

.standards {
  background: #e8ebea;
}

.standards-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 82px;
  align-items: center;
}

.standards-photo {
  position: relative;
  min-height: 570px;
}

.standards-photo::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid rgba(17, 21, 22, 0.25);
}

.standards-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
}

.standards-photo span {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--red);
  color: var(--white);
  padding: 14px 18px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.standards-copy .section-kicker {
  margin-bottom: 65px;
}

.standards-intro {
  max-width: 650px;
  margin: 33px 0 0;
  color: #515b5d;
  font-size: 1.01rem;
}

.agency-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 31px;
}

.agency-list span {
  border: 1px solid rgba(17, 21, 22, 0.22);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  margin-top: 43px;
  border-top: 1px solid var(--line);
}

.values p {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 13px 0 13px 17px;
  font-size: 0.8rem;
  font-weight: 750;
}

.values p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 5px;
  height: 5px;
  background: var(--red);
}

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

.contact::after {
  content: "BYHJ";
  position: absolute;
  right: -0.05em;
  bottom: -0.32em;
  color: rgba(0, 0, 0, 0.08);
  font-size: 23vw;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: end;
}

.contact .overline.light {
  color: rgba(255, 255, 255, 0.95);
}

.contact h2 {
  font-size: clamp(2.6rem, 5.2vw, 5.2rem);
}

.contact-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 28px;
}

.contact-panel > p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 31px;
}

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

.button-white:hover,
.button-white:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.phone-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 4px;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 69px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.82fr;
  gap: 55px;
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.47);
}

.footer-brand p {
  max-width: 260px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.81rem;
}

.footer-grid address,
.footer-contact {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.79rem;
  font-style: normal;
  line-height: 1.75;
}

.footer-grid address span,
.footer-contact > span {
  display: block;
  margin-bottom: 15px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact a {
  display: block;
  width: fit-content;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 67px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(.2,.8,.2,1);
}

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

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--ink);
}

@media (max-width: 1080px) {
  :root {
    --shell: min(calc(100% - 38px), 960px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .hero-copy {
    padding-right: 45px;
  }

  h1 {
    font-size: clamp(3rem, 6.2vw, 4.75rem);
  }

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

  .process-card {
    min-height: 350px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-number {
    margin-bottom: 50px;
  }

  .standards-grid {
    gap: 55px;
  }

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

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 35px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 0.78rem;
  }

  .brand-copy small {
    font-size: 0.75rem;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 23px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .site-header.menu-active .menu-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .site-header.menu-active .menu-toggle span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 72px 0 0;
    display: grid;
    align-content: center;
    gap: 0;
    background: var(--ink);
    padding: 20px 26px 70px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  html:not(.js) .mobile-nav {
    position: static;
    display: block;
    padding: 0 16px 20px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-header.menu-active .mobile-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    display: flex;
    align-items: baseline;
    gap: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 17px 0;
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
  }

  .mobile-nav a span {
    color: var(--red-bright);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .hero {
    min-height: 0;
    padding-top: 72px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    width: 100%;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    width: var(--shell);
    margin-inline: auto;
    padding: 69px 0 50px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .eyebrow span {
    display: block;
    margin: 0 0 8px;
  }

  h1 {
    font-size: clamp(3rem, 12.7vw, 4.25rem);
    line-height: 0.92;
  }

  .hero-intro {
    margin-top: 28px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
    margin-top: 31px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    width: fit-content;
  }

  .hero-assurance {
    margin-top: 36px;
  }

  .hero-visual {
    min-height: 455px;
  }

  .hero-visual > img {
    object-position: 48% center;
  }

  .vertical-mark {
    min-width: 47px;
  }

  .photo-label {
    left: 18px;
    bottom: 19px;
  }

  .metrics {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics article {
    min-height: 130px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 20px 16px;
  }

  .metrics article:nth-child(2n) {
    border-right: 0;
  }

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

  .metrics article > span {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  .section {
    padding: 88px 0;
  }

  .section-grid,
  .capabilities-head,
  .record-head,
  .standards-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 41px;
  }

  .section-kicker {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }

  .section-kicker.light {
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }

  h2,
  .contact h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .company-columns,
  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .company-columns {
    gap: 24px;
    margin-top: 37px;
  }

  .purpose-grid {
    margin-top: 42px;
  }

  .purpose-grid article {
    min-height: 0;
    padding: 27px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .process-card {
    min-height: 0;
    border-right: 0;
    padding: 27px 3px 32px;
  }

  .process-number {
    width: 42px;
    height: 42px;
    margin-bottom: 32px;
  }

  .process-card h3 {
    min-height: 0;
  }

  .record-head {
    margin-bottom: 45px;
  }

  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 9px;
  }

  .project,
  .project-tall,
  .project-wide {
    grid-column: auto;
    grid-row: auto;
    height: 340px;
  }

  .project-tall {
    height: 475px;
  }

  .standards-photo {
    min-height: 420px;
    order: 2;
  }

  .standards-copy {
    order: 1;
  }

  .standards-copy .section-kicker {
    margin-bottom: 40px;
  }

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

  .contact-grid {
    gap: 48px;
  }

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

  .phone-link {
    width: fit-content;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 52px;
  }
}

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

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

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