@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/figtree-variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --ink: #11131a;
  --cobalt: #3155ff;
  --heat: #ff704d;
  --paper: #f3efe5;
  --mist: #dce7e4;
  --concrete: #b7b8b3;
  --white: #fffdf8;
  --line-dark: rgba(17, 19, 26, 0.24);
  --line-light: rgba(255, 253, 248, 0.23);
  --header-height: 104px;
  --gutter: clamp(1.25rem, 4vw, 4.75rem);
  --section-pad: clamp(5.5rem, 9vw, 9.5rem);
  --display: "Space Grotesk", "Arial Narrow", sans-serif;
  --body: "Figtree", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

address {
  font-style: normal;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--heat);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--heat);
  outline-offset: 4px;
}

.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: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(225px, 0.82fr) minmax(560px, 1.75fr) minmax(155px, 0.58fr);
  height: var(--header-height);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(243, 239, 229, 0.97);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(17, 19, 26, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: 0.75rem var(--gutter);
  border-right: 1px solid var(--line-dark);
}

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 58px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 58px;
  height: 58px;
  border: 1px solid var(--ink);
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 660;
  line-height: 1;
}

.brand-mark span {
  display: grid;
  place-items: center;
}

.brand-mark span:nth-child(1),
.brand-mark span:nth-child(3) {
  border-right: 1px solid var(--line-dark);
}

.brand-mark span:nth-child(1),
.brand-mark span:nth-child(2) {
  border-bottom: 1px solid var(--line-dark);
}

.brand-mark i {
  position: absolute;
  top: 29px;
  left: 20px;
  width: 31px;
  height: 3px;
  transform: rotate(-43deg);
  transform-origin: left center;
  background: var(--heat);
}

.brand-name {
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 680;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-name small {
  display: inline-block;
  padding-top: 0.2rem;
  color: rgba(17, 19, 26, 0.62);
  font-family: var(--body);
  font-size: 0.63rem;
  font-weight: 670;
  letter-spacing: 0.13em;
}

.desktop-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.desktop-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 0 1.15rem;
  border-right: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: 0.73rem;
  font-weight: 640;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.desktop-nav a:nth-child(-n + 3) {
  border-bottom: 1px solid var(--line-dark);
}

.desktop-nav a span {
  color: rgba(17, 19, 26, 0.47);
  font-family: var(--body);
  font-size: 0.62rem;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: var(--cobalt);
  color: var(--white);
}

.desktop-nav a:hover span,
.desktop-nav a.is-active span {
  color: rgba(255, 255, 255, 0.72);
}

.header-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.35rem;
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 640;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 160ms ease;
}

.header-email:hover {
  background: var(--heat);
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 500;
  inset: 0;
  overflow-y: auto;
  background: var(--cobalt);
  color: var(--white);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line-light);
}

.mobile-menu__monogram {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.menu-close,
.menu-toggle {
  position: relative;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
}

.menu-close span:not(.sr-only),
.menu-toggle span:not(.sr-only) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -4px);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, 4px);
}

.menu-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: calc(100vh - 220px);
}

.mobile-menu__nav a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  padding: 1.25rem var(--gutter);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(1.55rem, 7vw, 3rem);
  font-weight: 570;
  letter-spacing: -0.04em;
}

.mobile-menu__nav a:nth-child(even) {
  border-right: 0;
}

.mobile-menu__nav a span {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.mobile-menu__contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mobile-menu__contact a {
  padding: 1.5rem var(--gutter);
  border-right: 1px solid var(--line-light);
  font-size: 0.9rem;
  font-weight: 650;
}

.section {
  position: relative;
  padding: var(--section-pad) var(--gutter);
  scroll-margin-top: 0;
}

.section-index,
.eyebrow {
  font-size: 0.73rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 7.1vw, 7.5rem);
  font-weight: 470;
  line-height: 0.91;
  letter-spacing: -0.068em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.25rem;
  min-height: 58px;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease;
}

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

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

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

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

.button--cobalt:hover {
  background: var(--ink);
}

.hero {
  padding-top: var(--header-height);
  scroll-margin-top: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  min-height: calc(100svh - var(--header-height) - 76px);
  border-bottom: 1px solid var(--line-dark);
}

.hero-system {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
}

.hero-digits {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.hero-digits span {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: rgba(17, 19, 26, 0.065);
  font-family: var(--display);
  font-size: clamp(12rem, 25vw, 29rem);
  font-weight: 680;
  line-height: 0.6;
  letter-spacing: -0.13em;
}

.hero-digits span:nth-child(even) {
  border-right: 0;
}

.hero-digits span:nth-child(n + 3) {
  border-bottom: 0;
}

.hero-digits span:nth-child(2) {
  color: rgba(49, 85, 255, 0.19);
}

.hero-digits span:nth-child(3) {
  color: rgba(255, 112, 77, 0.17);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 690px;
  padding: clamp(7rem, 10vw, 9rem) var(--gutter) clamp(3rem, 5vw, 5.25rem);
}

.hero-copy .eyebrow {
  position: absolute;
  top: clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-copy .eyebrow span {
  width: 27px;
  height: 3px;
  background: var(--heat);
}

.hero h1 {
  max-width: 950px;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7.5vw, 8.75rem);
  font-weight: 520;
  line-height: 0.84;
  letter-spacing: -0.074em;
  text-wrap: balance;
}

.hero-intro {
  max-width: 660px;
  margin-top: 2rem;
  font-size: clamp(1.02rem, 1.45vw, 1.3rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-line {
  position: absolute;
  z-index: 1;
  top: 43%;
  right: -7%;
  width: 47%;
  height: 8px;
  transform: rotate(-31deg);
  transform-origin: right center;
  background: var(--heat);
}

.hero-media {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--ink);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: 61% center;
  filter: saturate(0.86) contrast(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17, 19, 26, 0.68));
  pointer-events: none;
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.3rem;
  left: 1.4rem;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-media__tag {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  right: 1.25rem;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(17, 19, 26, 0.21);
  color: var(--white);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  backdrop-filter: blur(4px);
}

.contact-rail {
  display: grid;
  grid-template-columns: 0.55fr 1.4fr 0.7fr 1fr;
  min-height: 76px;
  background: var(--mist);
}

.contact-rail > * {
  display: flex;
  align-items: center;
  padding: 1rem var(--gutter);
  border-right: 1px solid var(--line-dark);
  font-size: 0.78rem;
  font-weight: 650;
}

.contact-rail > *:last-child {
  border-right: 0;
}

.contact-rail__label {
  color: var(--cobalt);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-rail a {
  transition: background 160ms ease, color 160ms ease;
}

.contact-rail a:hover {
  background: var(--cobalt);
  color: var(--white);
}

.services {
  padding-right: 0;
  padding-left: 0;
  background: var(--ink);
  color: var(--white);
}

.section-lead {
  display: grid;
  grid-template-columns: 0.7fr 2.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding: 0 var(--gutter) clamp(4rem, 7vw, 7rem);
}

.section-lead h2 {
  max-width: 1000px;
}

.section-lead > p:last-child {
  padding-top: 0.4rem;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.04rem;
}

.section-lead .section-index {
  color: var(--heat);
}

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

.service-row {
  display: grid;
  grid-template-columns: 0.65fr 1.45fr 2.15fr 0.35fr;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  min-height: 150px;
  padding: 1.65rem var(--gutter);
  border-bottom: 1px solid var(--line-light);
  transition: background 180ms ease, color 180ms ease;
}

.service-row:hover {
  background: var(--cobalt);
}

.service-row__number {
  align-self: start;
  color: var(--heat);
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.service-row h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.3vw, 3.7rem);
  font-weight: 470;
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-row p {
  max-width: 680px;
  color: rgba(255, 253, 248, 0.69);
}

.service-row__mark {
  justify-self: end;
  color: var(--concrete);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 300;
}

.service-row:hover p,
.service-row:hover .service-row__number,
.service-row:hover .service-row__mark {
  color: var(--white);
}

.start {
  overflow: hidden;
  background: var(--paper);
}

.start::before {
  content: "2065";
  position: absolute;
  top: -0.18em;
  right: -0.045em;
  color: rgba(49, 85, 255, 0.055);
  font-family: var(--display);
  font-size: clamp(13rem, 33vw, 35rem);
  font-weight: 680;
  line-height: 1;
  letter-spacing: -0.12em;
  pointer-events: none;
}

.start-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.7fr 2.3fr auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.start-heading h2 {
  max-width: 940px;
}

.start-heading .section-index {
  align-self: start;
  color: var(--cobalt);
}

.process-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(5rem, 9vw, 9rem);
  border-top: 2px solid var(--ink);
}

.process-line li {
  position: relative;
  min-height: 260px;
  padding: 2.1rem clamp(1rem, 2.3vw, 2.5rem) 0 0;
}

.process-line__dot {
  position: absolute;
  top: -9px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 3px solid var(--paper);
  background: var(--cobalt);
  box-shadow: 0 0 0 1px var(--ink);
}

.process-line__number {
  color: var(--heat);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.process-line h3 {
  margin-top: 2.4rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2.45rem);
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.045em;
}

.process-line li > p:last-child {
  max-width: 290px;
  margin-top: 1.25rem;
  color: rgba(17, 19, 26, 0.67);
}

.work {
  padding-right: 0;
  padding-left: 0;
  background: var(--cobalt);
  color: var(--white);
}

.work-intro {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 2rem;
  align-items: end;
  padding: 0 var(--gutter) clamp(4rem, 7vw, 6.5rem);
}

.work-intro .section-index {
  margin-bottom: 1.5rem;
  color: var(--heat);
}

.work-intro > p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 310px 390px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.photo-grid figure {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.photo-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 700ms ease;
}

.photo-grid figure:hover img {
  transform: scale(1.025);
  filter: saturate(0.84);
}

.photo-grid figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(17, 19, 26, 0.88);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.photo-grid figcaption span {
  color: var(--heat);
}

.photo-grid__warehouse {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  border-right: 1px solid var(--line-light);
}

.photo-grid__warehouse img {
  object-position: 50% center;
}

.photo-grid__worker {
  grid-column: 8 / 13;
  grid-row: 1;
  border-bottom: 1px solid var(--line-light);
}

.photo-grid__worker img {
  object-position: center 41%;
}

.photo-grid__dock {
  grid-column: 8 / 13;
  grid-row: 2;
}

.image-note {
  padding: 1.3rem var(--gutter) 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
}

.company {
  min-height: 980px;
  overflow: hidden;
  background: var(--mist);
}

.company-number {
  position: absolute;
  top: 0.17em;
  right: -0.02em;
  color: rgba(17, 19, 26, 0.055);
  font-family: var(--display);
  font-size: clamp(16rem, 36vw, 39rem);
  font-weight: 670;
  line-height: 0.8;
  letter-spacing: -0.14em;
  pointer-events: none;
}

.company-story {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.65fr 2.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.company-story .section-index {
  color: var(--cobalt);
}

.company-story > p:last-child {
  padding-top: 0.4rem;
  color: rgba(17, 19, 26, 0.68);
  font-size: 1.04rem;
}

.fact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(6rem, 11vw, 12rem);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.fact-grid div {
  min-height: 180px;
  padding: 1.5rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.fact-grid dt {
  color: var(--cobalt);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-grid dd {
  max-width: 680px;
  margin-top: 2.2rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 3rem);
  font-weight: 490;
  line-height: 1.06;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.fact-grid a {
  border-bottom: 1px solid currentColor;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
  padding: 0;
  background: var(--paper);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 960px;
  padding: var(--section-pad) var(--gutter);
  background: var(--cobalt);
  color: var(--white);
}

.contact-copy .section-index {
  margin-bottom: 2rem;
  color: var(--heat);
}

.contact-copy h2 {
  font-size: clamp(3.5rem, 7vw, 7.7rem);
}

.contact-copy > div:first-child > p:last-child {
  max-width: 460px;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.contact-direct {
  display: grid;
  gap: 0;
  margin-top: 5rem;
  border-top: 1px solid var(--line-light);
}

.contact-direct p {
  padding: 1.1rem 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line-light);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.request-form {
  align-self: center;
  padding: var(--section-pad) var(--gutter);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.field {
  position: relative;
  display: grid;
  gap: 0.7rem;
  min-width: 0;
  padding: 1.05rem 1.2rem 1.2rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

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

.field label,
.reply-choice legend {
  color: rgba(17, 19, 26, 0.6);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field label span {
  color: var(--heat);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 1rem;
  line-height: 1.45;
}

.field input,
.field select {
  min-height: 34px;
}

.field textarea {
  resize: vertical;
}

.field:focus-within {
  background: rgba(49, 85, 255, 0.06);
  box-shadow: inset 0 0 0 2px var(--cobalt);
}

.field input::placeholder {
  color: rgba(17, 19, 26, 0.42);
}

.reply-choice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.4rem 0 0;
  padding: 0;
  border: 0;
}

.reply-choice legend {
  float: left;
  margin-right: 1.5rem;
  padding-top: 0.7rem;
}

.reply-choice label {
  position: relative;
  display: inline-flex;
}

.reply-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reply-choice span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-dark);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reply-choice input:checked + span {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: var(--white);
}

.reply-choice input:focus-visible + span {
  outline: 3px solid var(--heat);
  outline-offset: 3px;
}

.form-finish {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.form-finish p {
  max-width: 410px;
  color: rgba(17, 19, 26, 0.56);
  font-size: 0.78rem;
}

.form-status {
  min-height: 1.5em;
  margin-top: 1rem;
  color: var(--cobalt);
  font-size: 0.82rem;
  font-weight: 650;
}

.site-footer {
  padding: clamp(4rem, 7vw, 7rem) var(--gutter) 2rem;
  background: var(--ink);
  color: var(--white);
}

.footer-kicker {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 2rem;
  align-items: end;
}

.footer-mark {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 1px solid var(--line-light);
  color: var(--heat);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 680;
  letter-spacing: -0.06em;
}

.footer-kicker p {
  justify-self: end;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.08rem;
}

.footer-phone {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(3.2rem, 10.2vw, 11rem);
  font-weight: 440;
  line-height: 0.84;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.footer-phone span {
  color: var(--heat);
  font-size: 0.4em;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.footer-bottom a:hover {
  color: var(--heat);
}

.mobile-actions {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1180px) {
  :root {
    --header-height: 88px;
  }

  .site-header {
    grid-template-columns: minmax(210px, 0.8fr) minmax(510px, 1.7fr) minmax(132px, 0.55fr);
  }

  .brand {
    gap: 0.75rem;
  }

  .brand-mark {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }

  .brand-mark i {
    top: 26px;
    left: 18px;
    width: 29px;
  }

  .brand-name {
    font-size: 0.72rem;
  }

  .desktop-nav a {
    padding: 0 0.8rem;
    font-size: 0.65rem;
  }

  .header-email {
    padding: 0 0.85rem;
    font-size: 0.68rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
  }

  .hero-system,
  .hero-copy,
  .hero-media,
  .hero-media img {
    min-height: 630px;
  }

  .section-lead,
  .company-story {
    grid-template-columns: 0.55fr 1.8fr 0.9fr;
  }

  .contact {
    grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  }

  .request-form {
    padding-right: clamp(1.5rem, 3.2vw, 3.5rem);
    padding-left: clamp(1.5rem, 3.2vw, 3.5rem);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 84px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 var(--gutter);
  }

  .brand {
    padding: 0;
    border-right: 0;
  }

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

  .menu-toggle {
    display: block;
    align-self: center;
  }

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

  .hero-system {
    min-height: 680px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-copy {
    min-height: 680px;
  }

  .hero-media,
  .hero-media img {
    min-height: 520px;
    max-height: 620px;
  }

  .hero-media img {
    object-position: center 56%;
  }

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

  .contact-rail > * {
    min-height: 66px;
    border-bottom: 1px solid var(--line-dark);
  }

  .contact-rail > *:nth-child(even) {
    border-right: 0;
  }

  .contact-rail > *:nth-child(n + 3) {
    border-bottom: 0;
  }

  .section-lead,
  .company-story {
    grid-template-columns: 1fr 2.4fr;
  }

  .section-lead > p:last-child,
  .company-story > p:last-child {
    grid-column: 2;
  }

  .service-row {
    grid-template-columns: 0.35fr 1fr 1.6fr auto;
  }

  .start-heading {
    grid-template-columns: 0.45fr 1.65fr;
  }

  .start-heading .button {
    grid-column: 2;
    justify-self: start;
    margin-top: 1rem;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
    border-top: 0;
    border-left: 2px solid var(--ink);
  }

  .process-line li {
    min-height: 235px;
    padding: 1rem 2rem 2.5rem 2.5rem;
    border-top: 1px solid var(--line-dark);
  }

  .process-line__dot {
    top: 1.2rem;
    left: -9px;
  }

  .photo-grid {
    grid-template-rows: 380px 320px;
  }

  .photo-grid__warehouse {
    grid-column: 1 / 8;
  }

  .photo-grid__worker,
  .photo-grid__dock {
    grid-column: 8 / 13;
  }

  .company {
    min-height: auto;
  }

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

  .contact-copy {
    min-height: auto;
  }

  .contact-direct {
    margin-top: 6rem;
  }

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

@media (max-width: 720px) {
  :root {
    --gutter: 1.25rem;
    --section-pad: 5rem;
  }

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

  body {
    padding-bottom: 58px;
  }

  .site-header {
    height: 76px;
  }

  .brand-mark {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    font-size: 0.92rem;
  }

  .brand-mark i {
    top: 23px;
    left: 16px;
    width: 25px;
  }

  .brand-name {
    font-size: 0.66rem;
  }

  .brand-name small {
    font-size: 0.55rem;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .mobile-menu__top {
    height: 76px;
  }

  .mobile-menu__nav {
    min-height: calc(100svh - 202px);
  }

  .mobile-menu__nav a {
    min-height: 125px;
  }

  .mobile-menu__contact {
    grid-template-columns: 1fr;
  }

  .mobile-menu__contact a {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .hero {
    padding-top: 76px;
  }

  .hero-system,
  .hero-copy {
    min-height: 690px;
  }

  .hero-copy {
    padding-bottom: 2.5rem;
  }

  .hero-copy .eyebrow {
    top: 1.75rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15.8vw, 5.3rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

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

  .hero-actions .text-link {
    justify-content: space-between;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
    max-height: 500px;
  }

  .contact-rail {
    grid-template-columns: 1fr;
  }

  .contact-rail > * {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark) !important;
  }

  .contact-rail > *:last-child {
    border-bottom: 0 !important;
  }

  .section h2 {
    font-size: clamp(3.25rem, 14.5vw, 5.5rem);
  }

  .section-lead,
  .company-story {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .section-lead > p:last-child,
  .company-story > p:last-child {
    grid-column: 1;
  }

  .service-row {
    grid-template-columns: auto 1fr auto;
    gap: 0.9rem 1rem;
    min-height: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .service-row__number {
    grid-column: 1;
  }

  .service-row h3 {
    grid-column: 2;
    font-size: 2rem;
  }

  .service-row p {
    grid-column: 2 / 4;
    color: rgba(255, 253, 248, 0.72);
  }

  .service-row__mark {
    grid-column: 3;
    grid-row: 1;
    font-size: 1.6rem;
  }

  .start-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .start-heading .button {
    grid-column: 1;
  }

  .process-line {
    grid-template-columns: 1fr;
    margin-top: 4.5rem;
  }

  .process-line li {
    min-height: 210px;
  }

  .work-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .photo-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 360px 310px 310px;
  }

  .photo-grid__warehouse,
  .photo-grid__worker,
  .photo-grid__dock {
    grid-column: 1;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .photo-grid__warehouse {
    grid-row: 1;
  }

  .photo-grid__worker {
    grid-row: 2;
  }

  .photo-grid__dock {
    grid-row: 3;
  }

  .company-number {
    top: 0.45em;
  }

  .fact-grid {
    grid-template-columns: 1fr;
    margin-top: 5rem;
  }

  .fact-grid div {
    min-height: 145px;
  }

  .fact-grid dd {
    font-size: 1.55rem;
  }

  .contact-copy {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .contact-copy h2 {
    font-size: clamp(3.25rem, 14.5vw, 5.5rem);
  }

  .contact-direct {
    margin-top: 5rem;
  }

  .request-form {
    padding: 5rem var(--gutter);
  }

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

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

  .reply-choice {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .reply-choice legend {
    width: 100%;
    margin: 0 0 0.4rem;
  }

  .form-finish {
    grid-template-columns: 1fr;
  }

  .form-finish .button {
    width: 100%;
  }

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

  .footer-kicker p {
    justify-self: start;
  }

  .footer-phone {
    font-size: clamp(2.55rem, 12vw, 4.7rem);
    white-space: normal;
  }

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

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 58px;
    border-top: 1px solid var(--ink);
    background: var(--paper);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    border-right: 1px solid var(--ink);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-actions a:last-child {
    border-right: 0;
    background: var(--ink);
    color: var(--white);
  }
}

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

  .hero-system,
  .hero-copy {
    min-height: 660px;
  }

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

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .contact-direct a {
    font-size: 0.91rem;
  }

  .footer-phone {
    font-size: 2.45rem;
  }
}

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
