@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/barlow-condensed-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1f2322;
  --muted: #626763;
  --paper: #f3f0e8;
  --paper-deep: #e7e1d5;
  --white: #fffdf8;
  --brand: #921b27;
  --brand-dark: #71131d;
  --moss: #657059;
  --line: rgba(31, 35, 34, 0.18);
  --shell: min(1280px, calc(100vw - 64px));
  --header-height: 126px;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

:focus-visible {
  outline: 3px solid #e49aa2;
  outline-offset: 4px;
}

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

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

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

.section {
  padding: clamp(90px, 10vw, 150px) 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(243, 240, 232, 0.96);
  border-bottom: 1px solid transparent;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(31, 35, 34, 0.06);
}

.utility-bar {
  min-height: 34px;
  background: var(--ink);
  color: rgba(255, 253, 248, 0.76);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.utility-inner a {
  color: var(--white);
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}

.brand {
  flex: 0 0 auto;
  width: 148px;
  height: 66px;
  overflow: hidden;
}

.brand img {
  width: 148px;
  height: 66px;
  object-fit: contain;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 38px);
}

.site-menu > a:not(.button) {
  position: relative;
  color: #343938;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.site-menu > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.site-menu .nav-phone {
  padding-left: 26px;
  border-left: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 26px;
  border: 1px solid var(--brand);
  border-radius: 0;
  background: var(--brand);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  gap: 18px;
  padding-inline: 20px;
}

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

.button-dark:hover {
  background: #080a0a;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-block: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 126px);
  overflow: hidden;
  padding: clamp(64px, 7vw, 105px) 0 74px;
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(31, 35, 34, 0.08) 50%, transparent 50.05%),
    var(--paper);
}

.topo {
  position: absolute;
  pointer-events: none;
}

.topo-one {
  top: -110px;
  right: -210px;
  width: min(68vw, 980px);
  color: rgba(146, 27, 39, 0.16);
  transform: rotate(8deg);
  animation: topo-breathe 12s ease-in-out infinite alternate;
}

@keyframes topo-breathe {
  from { transform: rotate(8deg) translate3d(0, 0, 0); }
  to { transform: rotate(8deg) translate3d(-10px, 14px, 0); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
}

.eyebrow-light {
  color: #efb0b7;
}

.hero h1,
.section-heading h2,
.approach h2,
.compliance h2,
.capabilities h2,
.contact h2,
.content-page h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.85;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(72px, 8vw, 138px);
}

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

.hero-lede {
  max-width: 620px;
  margin: 34px 0 0;
  color: #454b48;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
}

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

.proof-list {
  display: grid;
  margin: 58px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.proof-list li {
  display: grid;
  align-content: start;
  padding-right: 18px;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.proof-list li + li {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.proof-list strong {
  color: var(--brand);
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
}

.proof-list span {
  max-width: 100px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  padding: 26px 34px 42px 0;
}

.hero-image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d9d3c7;
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(30, 26, 23, 0.35));
  content: "";
}

.hero-image-frame img {
  width: 100%;
  min-height: clamp(480px, 56vw, 690px);
  object-fit: cover;
  object-position: 58% center;
  transition: transform 900ms cubic-bezier(.2, .8, .2, 1);
}

.hero:hover .hero-image-frame img {
  transform: scale(1.02);
}

.hero-stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 140px;
  height: 140px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(7deg);
}

.hero-stamp span {
  margin-right: 7px;
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: -0.04em;
}

.field-note {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 180px;
  padding: 13px 16px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(31, 35, 34, 0.12);
  line-height: 1.3;
}

.field-note span {
  color: var(--brand);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-note strong {
  margin-top: 3px;
  font-size: 11px;
  text-transform: uppercase;
}

.field-note-top {
  top: 0;
  right: 0;
}

.field-note-bottom {
  bottom: 28px;
  left: -28px;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 26px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

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

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 105px);
  grid-template-columns: 1.25fr 0.75fr;
  column-gap: 70px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.approach h2,
.compliance h2,
.capabilities h2,
.contact h2 {
  font-size: clamp(58px, 6.8vw, 112px);
}

.section-heading > p:last-child {
  max-width: 490px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 18px;
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-row {
  display: grid;
  align-items: start;
  padding: 36px 0 42px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 90px minmax(260px, 0.85fr) minmax(380px, 1.15fr);
  gap: clamp(30px, 5vw, 80px);
  transition: background 180ms ease, padding 180ms ease;
}

.service-row:hover {
  padding-inline: 18px;
  background: var(--paper);
}

.service-number {
  margin: 4px 0 0;
  color: var(--brand);
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
}

.service-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.service-row > div p {
  max-width: 470px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-row ul {
  display: grid;
  margin: 7px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
}

.service-row li {
  position: relative;
  padding-left: 18px;
  color: #3e4442;
  font-size: 13px;
  font-weight: 600;
}

.service-row li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--brand);
  content: "";
}

.approach {
  background: var(--paper-deep);
}

.approach-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(60px, 9vw, 140px);
}

.approach-grid > *,
.compliance-grid > *,
.capabilities-grid > *,
.contact-grid > * {
  min-width: 0;
}

.approach-media {
  position: relative;
}

.approach-media::before {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 48%;
  height: 44%;
  border-top: 1px solid var(--brand);
  border-left: 1px solid var(--brand);
  content: "";
}

.approach-media img {
  position: relative;
  width: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: 38% center;
}

.image-caption {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.image-caption span {
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.approach h2 {
  max-width: 650px;
}

.lead {
  margin: 32px 0 0;
  color: #444a47;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.process-list {
  margin: 42px 0 34px;
  padding: 0;
  border-top: 1px solid rgba(31, 35, 34, 0.35);
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 50px 1fr;
}

.process-list li > span {
  padding-top: 2px;
  color: var(--brand);
  font-family: var(--display);
  font-size: 18px;
}

.process-list strong {
  font-family: var(--display);
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.process-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.compliance::after {
  position: absolute;
  top: -220px;
  right: -240px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
  content: "";
}

.compliance-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(60px, 9vw, 140px);
}

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

.compliance-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 253, 248, 0.68);
  font-size: 18px;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.capability-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 253, 248, 0.86);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compliance-image-wrap {
  position: relative;
  padding: 0 36px 42px 0;
}

.compliance-image-wrap img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center bottom;
  filter: saturate(0.65) contrast(1.06);
}

.compliance-marker {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 220px;
  padding: 23px;
  background: var(--brand);
}

.compliance-marker > span {
  position: absolute;
  top: 8px;
  right: 12px;
  font-family: var(--display);
  font-size: 22px;
}

.compliance-marker strong {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.compliance-marker small {
  margin-top: 7px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 10px;
}

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

.capabilities-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
  gap: clamp(60px, 9vw, 140px);
}

.capabilities h2 {
  max-width: 760px;
}

.capabilities-copy .lead {
  max-width: 700px;
}

.range-grid {
  display: grid;
  margin-top: 50px;
  border-top: 1px solid var(--ink);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.range-grid div {
  display: grid;
  min-height: 120px;
  align-content: space-between;
  padding: 18px 18px 22px 0;
  border-bottom: 1px solid var(--line);
}

.range-grid div:nth-child(2n) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.range-grid span {
  color: var(--brand);
  font-family: var(--display);
  font-size: 16px;
}

.range-grid strong {
  max-width: 250px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.worker-card {
  position: relative;
  margin: 0;
  padding: 26px 0 0 26px;
}

.worker-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 72%;
  background: var(--brand);
  content: "";
}

.worker-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.78) contrast(1.04);
}

.worker-card figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  width: calc(100% - 42px);
  margin: -52px 0 0 42px;
  padding: 22px;
  background: var(--paper);
}

.worker-card figcaption span {
  color: var(--brand);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.worker-card figcaption strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

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

.topo-two {
  right: -150px;
  bottom: -260px;
  width: 820px;
  color: rgba(255, 255, 255, 0.12);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(60px, 8vw, 125px);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 550px;
  margin: 32px 0 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: 18px;
}

.direct-contact {
  display: grid;
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.direct-contact a {
  display: grid;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.direct-contact span {
  color: rgba(255, 253, 248, 0.62);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direct-contact strong {
  margin-top: 4px;
  font-family: var(--display);
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
  color: var(--ink);
}

.form-row {
  margin-bottom: 24px;
}

.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #4f5552;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(31, 35, 34, 0.36);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  outline: none;
  text-transform: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  min-height: 130px;
  padding-top: 11px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 1px 0 var(--brand);
}

.contact-form ::placeholder {
  color: #999c99;
  opacity: 1;
}

.message-label {
  margin-top: 6px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  text-transform: none;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
  accent-color: var(--brand);
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.form-submit-row p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.site-footer {
  padding: 70px 0 24px;
  background: #151817;
  color: rgba(255, 253, 248, 0.78);
}

.footer-grid {
  display: grid;
  padding-bottom: 60px;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: clamp(34px, 6vw, 90px);
}

.footer-brand img {
  width: 150px;
  height: 67px;
  padding: 7px 10px;
  background: var(--white);
  object-fit: contain;
}

.footer-brand p {
  max-width: 280px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.55);
  font-size: 13px;
}

.footer-label {
  margin: 0 0 16px;
  color: #e99ba4;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer address,
.site-footer a {
  color: rgba(255, 253, 248, 0.72);
  font-size: 12px;
  font-style: normal;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 253, 248, 0.46);
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 26px;
}

.content-page {
  min-height: 60vh;
  padding: clamp(80px, 10vw, 150px) 0;
}

.content-page .page-shell {
  width: min(780px, calc(100vw - 48px));
  margin: auto;
}

.content-page h1 {
  margin-bottom: 40px;
  font-size: clamp(64px, 9vw, 110px);
}

.content-page h2 {
  margin: 38px 0 10px;
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.content-page p,
.content-page li {
  color: var(--muted);
}

.status-card {
  padding: clamp(28px, 5vw, 56px);
  border-top: 5px solid var(--brand);
  background: var(--white);
}

.status-card .button {
  margin-top: 18px;
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 48px, 1020px);
  }

  .site-menu {
    gap: 18px;
  }

  .site-menu .nav-phone {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 44px;
  }

  .proof-list span {
    display: none;
  }

  .proof-list li {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 56px minmax(240px, 0.85fr) minmax(330px, 1.15fr);
    gap: 30px;
  }

  .approach-grid,
  .compliance-grid,
  .capabilities-grid {
    gap: 64px;
  }

  .approach-media img {
    min-height: 580px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(500px, 1.3fr);
    gap: 50px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 92px;
  }

  .utility-bar {
    display: none;
  }

  .nav {
    min-height: 92px;
  }

  .brand,
  .brand img {
    width: 126px;
    height: 57px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0 10px 10px;
    border: 0;
    background: none;
    color: var(--ink);
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-icon {
    display: grid;
    gap: 5px;
  }

  .menu-icon i {
    display: block;
    width: 23px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-menu {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    padding: 112px 24px 40px;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-menu > a:not(.button) {
    font-family: var(--display);
    font-size: clamp(42px, 9vw, 72px);
    line-height: 1;
    text-transform: uppercase;
  }

  .site-menu .nav-phone {
    display: block;
    margin-top: 16px;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    font-family: var(--body) !important;
    font-size: 14px !important;
  }

  .site-menu .button {
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    background: var(--paper);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

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

  .proof-list span {
    display: inline;
  }

  .proof-list li {
    grid-template-columns: auto 1fr;
  }

  .hero-visual {
    margin-left: 30px;
  }

  .hero-image-frame img {
    min-height: min(72vw, 660px);
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-row {
    grid-template-columns: 50px 1fr;
  }

  .service-row > ul {
    grid-column: 2;
  }

  .approach-grid,
  .compliance-grid,
  .capabilities-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .approach-copy,
  .compliance-copy,
  .capabilities-copy,
  .contact-intro {
    max-width: 740px;
  }

  .approach-media img {
    min-height: min(80vw, 680px);
  }

  .compliance-image-wrap {
    width: min(760px, 100%);
  }

  .worker-card {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .contact-form {
    width: min(760px, 100%);
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

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

  .section {
    padding: 84px 0;
  }

  .hero {
    padding: 54px 0 70px;
  }

  .hero h1 {
    font-size: clamp(62px, 21vw, 94px);
  }

  .hero-lede {
    margin-top: 26px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .button {
    min-height: 52px;
    width: 100%;
  }

  .proof-list {
    margin-top: 45px;
  }

  .proof-list li {
    display: block;
    padding-right: 8px;
  }

  .proof-list li + li {
    padding-left: 12px;
  }

  .proof-list strong {
    display: block;
    font-size: 28px;
  }

  .proof-list span {
    display: block;
    max-width: 80px;
    margin-top: 5px;
    font-size: 8px;
  }

  .hero-visual {
    margin-left: 15px;
    padding-right: 18px;
  }

  .hero-image-frame img {
    min-height: 118vw;
    object-position: 62% center;
  }

  .field-note {
    min-width: 155px;
  }

  .field-note-bottom {
    left: -15px;
  }

  .hero-stamp {
    width: 112px;
    height: 112px;
    font-size: 8px;
  }

  .hero-stamp span {
    font-size: 32px;
  }

  .section-heading h2,
  .approach h2,
  .compliance h2,
  .capabilities h2,
  .contact h2 {
    font-size: clamp(54px, 18vw, 78px);
  }

  .section-heading > p:last-child,
  .compliance-copy > p:not(.eyebrow),
  .contact-intro > p:not(.eyebrow) {
    font-size: 16px;
  }

  .service-row {
    padding: 26px 0 30px;
    grid-template-columns: 36px 1fr;
    gap: 18px;
  }

  .service-row:hover {
    padding-inline: 0;
    background: transparent;
  }

  .service-row h3 {
    font-size: 33px;
  }

  .service-row > ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .approach-grid {
    gap: 58px;
  }

  .approach-media::before {
    top: -16px;
    left: -10px;
  }

  .approach-media img {
    min-height: 125vw;
  }

  .image-caption {
    flex-direction: column;
    gap: 4px;
  }

  .compliance-grid {
    gap: 54px;
  }

  .compliance-image-wrap {
    padding: 0 18px 34px 0;
  }

  .compliance-image-wrap img {
    min-height: 92vw;
  }

  .compliance-marker {
    width: 190px;
  }

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

  .range-grid div:nth-child(2n) {
    padding-left: 0;
    border-left: 0;
  }

  .worker-card {
    padding: 16px 0 0 16px;
  }

  .worker-card img {
    min-height: 125vw;
  }

  .worker-card figcaption {
    width: calc(100% - 22px);
    margin-left: 22px;
  }

  .contact-grid {
    gap: 50px;
  }

  .direct-contact strong {
    font-size: 23px;
  }

  .contact-form {
    padding: 24px 20px 26px;
  }

  .two-up {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

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

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

@media print {
  .site-header,
  .scroll-cue,
  .contact-form,
  .site-footer {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section,
  .hero {
    padding: 30px 0;
  }
}
