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

@font-face {
  font-family: "Work Sans";
  src: url("../fonts/work-sans-variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --brick: #713d36;
  --brick-dark: #54302c;
  --green: #294a40;
  --green-deep: #18372f;
  --stone: #e4dac6;
  --plaster: #f7f3e9;
  --white: #fffefa;
  --iron: #252724;
  --teal: #3f7c84;
  --mist: #dbe7e6;
  --rule: rgba(37, 39, 36, 0.21);
  --rule-light: rgba(255, 254, 250, 0.22);
  --shadow: 0 28px 70px rgba(37, 39, 36, 0.14);
  --content: 1320px;
  --gutter: clamp(20px, 4vw, 68px);
  --serif: "Literata", Georgia, serif;
  --sans: "Work Sans", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--iron);
  background: var(--plaster);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  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 var(--teal);
  outline-offset: 4px;
}

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

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

.container {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.utility-bar {
  color: var(--white);
  background: var(--green-deep);
  font-size: 11px;
  letter-spacing: 0.06em;
}

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

.utility-contact {
  display: flex;
  gap: 22px;
}

.utility-contact a {
  text-decoration: none;
}

.utility-contact a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  color: var(--iron);
  background: rgba(247, 243, 233, 0.96);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 180ms ease, background 180ms ease;
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  background: rgba(255, 254, 250, 0.97);
  box-shadow: 0 10px 32px rgba(37, 39, 36, 0.09);
}

.desktop-header {
  display: grid;
  min-height: 104px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.nav-group--right {
  justify-content: flex-end;
}

.nav-group a {
  position: relative;
  padding-block: 10px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-group a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brick);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.nav-group a:hover::after,
.nav-group a[aria-current="page"]::after {
  transform: scaleX(1);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  color: var(--white);
  background: var(--brick);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 750;
  line-height: 1;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  background: var(--stone);
}

.brand-mark::before {
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 1px;
}

.brand-mark::after {
  top: 50%;
  right: 6px;
  left: 6px;
  height: 1px;
}

.brand-mark span {
  position: relative;
  z-index: 2;
}

.brand-type {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 0.9;
}

.brand-type small {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.mobile-header,
.mobile-nav-panel,
.quick-actions {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 19px;
  color: var(--brick);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  width: 24px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: var(--stone);
}

.display-title,
.section-title,
.page-title,
.feature-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.display-title {
  max-width: 1040px;
  font-size: clamp(52px, 7.7vw, 122px);
}

.page-title {
  font-size: clamp(54px, 7vw, 106px);
}

.section-title {
  font-size: clamp(43px, 5.2vw, 78px);
}

.feature-title {
  font-size: clamp(33px, 3.8vw, 56px);
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 19px;
  padding: 13px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--iron);
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 17px;
  line-height: 1;
}

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

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

.button--green:hover {
  background: var(--teal);
  border-color: var(--teal);
}

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

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

.button--light {
  color: var(--green-deep);
  background: var(--stone);
  border-color: var(--stone);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 254, 250, 0.62);
}

.button--outline-light:hover {
  color: var(--green-deep);
  background: var(--white);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.home-facade {
  display: grid;
  height: clamp(450px, 51vw, 690px);
  grid-template-columns: 0.88fr 1.24fr 0.88fr;
  gap: 4px;
  margin: 0;
  padding: 4px;
  background: var(--brick);
}

.facade-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--green);
}

.facade-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.facade-panel:nth-child(1) img {
  object-position: center;
}

.facade-panel:nth-child(2) img {
  object-position: center 48%;
}

.facade-panel:nth-child(3) img {
  object-position: center;
}

.facade-panel:hover img {
  transform: scale(1.025);
}

.hero-statement {
  padding-block: clamp(70px, 9vw, 134px);
  background: var(--stone);
}

.hero-statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(270px, 0.58fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.hero-aside p {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 19px);
}

.address-rule {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.address-rule::before {
  width: 9px;
  height: 9px;
  content: "";
  background: var(--brick);
  border-radius: 50%;
}

.address-rule::after {
  height: 1px;
  content: "";
  background: var(--green);
}

.section {
  padding-block: clamp(78px, 10vw, 148px);
}

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

.section--green {
  color: var(--white);
  background: var(--green);
}

.section--brick {
  color: var(--white);
  background: var(--brick);
}

.section--stone {
  background: var(--stone);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
  gap: 50px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 88px);
}

.section-heading p {
  margin: 0;
}

.service-ledger {
  border-top: 1px solid var(--rule);
}

.service-row {
  display: grid;
  min-height: 165px;
  grid-template-columns: 74px minmax(220px, 0.75fr) minmax(280px, 1.15fr) 44px;
  gap: 30px;
  align-items: center;
  padding: 24px 18px 24px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}

.service-row:hover {
  padding-left: 18px;
  color: var(--white);
  background: var(--teal);
}

.service-index {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 650;
}

.service-row:hover .service-index {
  color: var(--stone);
}

.service-name {
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 41px);
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1;
}

.service-row p {
  margin: 0;
}

.service-arrow {
  font-size: 26px;
  text-align: right;
}

.brief-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: center;
}

.arched-photo {
  position: relative;
  min-height: 570px;
  margin: 0;
  overflow: hidden;
  border-radius: 260px 260px 8px 8px;
  box-shadow: var(--shadow);
}

.arched-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brief-copy p {
  max-width: 660px;
  margin: 25px 0 0;
}

.brief-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.brief-point {
  padding: 20px;
  background: rgba(255, 254, 250, 0.1);
  border: 1px solid var(--rule-light);
}

.brief-point span {
  display: block;
  margin-bottom: 7px;
  color: var(--stone);
  font-family: var(--serif);
  font-size: 14px;
}

.location-band {
  display: grid;
  min-height: 250px;
  grid-template-columns: 1.2fr auto;
  gap: 44px;
  align-items: center;
}

.location-band address {
  font-family: var(--serif);
  font-size: clamp(35px, 5vw, 70px);
  font-style: normal;
  font-weight: 540;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.location-band address span {
  display: block;
  color: var(--stone);
}

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

.transport-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255, 254, 250, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 254, 250, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
}

.transport-hero-grid {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
  gap: clamp(40px, 7vw, 105px);
  align-items: center;
  padding-block: clamp(70px, 8vw, 112px);
}

.transport-orbit {
  position: relative;
  aspect-ratio: 1;
  padding: 38px;
  border: 1px solid rgba(255, 254, 250, 0.52);
  border-radius: 50%;
}

.transport-orbit::before,
.transport-orbit::after {
  position: absolute;
  content: "";
  background: var(--stone);
  border-radius: 50%;
}

.transport-orbit::before {
  top: 7%;
  right: 10%;
  width: 18px;
  height: 18px;
}

.transport-orbit::after {
  bottom: 4%;
  left: 17%;
  width: 10px;
  height: 10px;
}

.transport-orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.paired-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--rule);
}

.paired-block {
  min-height: 440px;
  padding: clamp(34px, 5vw, 72px);
}

.paired-block + .paired-block {
  border-left: 1px solid var(--rule);
}

.paired-block:nth-child(2) {
  background: var(--mist);
}

.block-number {
  display: block;
  margin-bottom: 72px;
  color: var(--brick);
  font-family: var(--serif);
  font-size: 19px;
}

.paired-block p {
  max-width: 510px;
  margin: 22px 0 0;
}

.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule-light);
  counter-reset: details;
}

.detail-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid var(--rule-light);
  counter-increment: details;
}

.detail-list li::before {
  content: "0" counter(details);
  color: var(--stone);
  font-family: var(--serif);
}

.wide-image {
  position: relative;
  height: clamp(390px, 53vw, 700px);
  margin: 0;
  overflow: hidden;
}

.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-image figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.warehouse-hero {
  display: grid;
  grid-template-columns: minmax(310px, 0.75fr) minmax(0, 1.25fr);
  min-height: 760px;
}

.warehouse-title-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(55px, 7vw, 100px) var(--gutter);
  color: var(--white);
  background: var(--brick);
}

.warehouse-title-panel .page-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.warehouse-title-panel p:last-child {
  max-width: 390px;
}

.warehouse-mosaic {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: 1fr 0.75fr;
  gap: 4px;
  padding: 4px 4px 4px 0;
  background: var(--brick);
}

.warehouse-mosaic figure {
  margin: 0;
  overflow: hidden;
}

.warehouse-mosaic figure:first-child {
  grid-row: 1 / 3;
}

.warehouse-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.warehouse-bands {
  border-top: 1px solid var(--rule);
}

.warehouse-band {
  display: grid;
  grid-template-columns: 110px minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: 40px;
  align-items: start;
  padding-block: clamp(45px, 6vw, 82px);
  border-bottom: 1px solid var(--rule);
}

.warehouse-band > span {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 17px;
}

.warehouse-band p {
  max-width: 610px;
  margin: 0;
  font-size: 18px;
}

.context-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 4px;
  background: var(--green);
}

.context-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 7vw, 100px);
  color: var(--white);
}

.context-copy p {
  margin: 25px 0 0;
}

.context-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.logistics-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 12vw, 175px) clamp(75px, 10vw, 140px);
  background: var(--stone);
}

.logistics-hero::after {
  position: absolute;
  right: -0.04em;
  bottom: -0.24em;
  content: "04";
  color: rgba(113, 61, 54, 0.08);
  font-family: var(--serif);
  font-size: clamp(180px, 34vw, 520px);
  font-weight: 500;
  line-height: 1;
}

.logistics-hero-inner {
  position: relative;
  z-index: 2;
}

.logistics-hero .lead {
  margin-left: min(17vw, 220px);
}

.brief-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 2px solid var(--green);
}

.track-step {
  position: relative;
  min-height: 260px;
  padding: 36px 25px 25px 0;
}

.track-step::before {
  position: absolute;
  top: -8px;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--brick);
  border-radius: 50%;
}

.track-step span {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 15px;
}

.track-step h2 {
  margin: 66px 0 8px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 580;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.track-step p {
  margin: 0;
  color: rgba(37, 39, 36, 0.72);
}

.photo-strip {
  display: grid;
  height: clamp(300px, 36vw, 490px);
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4px;
  padding: 4px;
  background: var(--green);
}

.photo-strip figure {
  margin: 0;
  overflow: hidden;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.not-sure {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.company-hero {
  padding-block: clamp(72px, 8vw, 110px);
  background: var(--white);
}

.letter-facade {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 62px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.letter-cell {
  display: grid;
  aspect-ratio: 0.88;
  place-items: center;
  font-family: var(--serif);
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 520;
  line-height: 1;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.letter-cell:nth-child(2) {
  color: var(--white);
  background: var(--brick);
}

.letter-cell:nth-child(3) {
  color: var(--white);
  background: var(--teal);
}

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

.profile-item {
  min-width: 0;
  min-height: 220px;
  padding: clamp(28px, 4vw, 50px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.profile-item span {
  display: block;
  margin-bottom: 45px;
  color: var(--brick);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.profile-item strong,
.profile-item address {
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 41px);
  font-style: normal;
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.category-line {
  padding-block: 46px;
  overflow: hidden;
  color: var(--white);
  background: var(--brick);
  font-family: var(--serif);
  font-size: clamp(28px, 4.6vw, 68px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-align: center;
}

.contact-hero {
  padding-block: clamp(80px, 10vw, 140px);
  color: var(--white);
  background: var(--green);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  gap: clamp(45px, 9vw, 130px);
  align-items: end;
}

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

.contact-direct a {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 19px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--rule-light);
}

.contact-direct a span {
  color: var(--stone);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-direct a strong {
  font-family: var(--serif);
  font-weight: 520;
  line-height: 1.2;
}

.request-wrap {
  background: var(--white);
}

.request-form {
  border-top: 1px solid var(--rule);
}

.form-chapter {
  display: grid;
  grid-template-columns: 90px minmax(200px, 0.48fr) minmax(0, 1.52fr);
  gap: 34px;
  padding-block: clamp(44px, 6vw, 76px);
  border-bottom: 1px solid var(--rule);
}

.chapter-number {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 17px;
}

.chapter-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.field label,
.field-group legend {
  color: var(--green-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--iron);
  background: var(--plaster);
  border: 1px solid var(--rule);
  border-radius: 0;
}

.field input,
.field select {
  min-height: 55px;
  padding: 0 14px;
}

.field textarea {
  min-height: 170px;
  padding: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 0;
  border-color: var(--teal);
}

.field-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.field-group legend {
  margin-bottom: 12px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.option {
  position: relative;
}

.option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.option span {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
}

.option input:checked + span {
  color: var(--white);
  background: var(--teal);
}

.option input:focus-visible + span {
  outline: 3px solid var(--brick);
  outline-offset: -4px;
}

.form-finish {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 35px;
  align-items: center;
  padding-block: 40px 80px;
}

.form-note,
.form-status {
  max-width: 760px;
  margin: 0;
  color: rgba(37, 39, 36, 0.67);
  font-size: 12px;
}

.form-status {
  margin-top: 12px;
  padding: 13px;
  color: var(--green-deep);
  background: var(--mist);
  border-left: 4px solid var(--teal);
}

.site-footer {
  color: var(--white);
  background: var(--green-deep);
}

.footer-bays {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  border-left: 1px solid var(--rule-light);
}

.footer-bay {
  min-height: 270px;
  padding: clamp(30px, 4vw, 55px);
  border-right: 1px solid var(--rule-light);
}

.footer-bay span {
  display: block;
  margin-bottom: 54px;
  color: var(--stone);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 570;
  letter-spacing: 0.12em;
  line-height: 0.82;
}

.footer-wordmark small {
  display: block;
  margin-top: 14px;
  color: var(--stone);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.2em;
}

.footer-bay address,
.footer-bay strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(23px, 2.5vw, 34px);
  font-style: normal;
  font-weight: 530;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.footer-bay a {
  display: block;
  margin-top: 10px;
}

.footer-base {
  color: var(--iron);
  background: var(--stone);
}

.footer-base-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
}

.footer-nav a {
  font-weight: 650;
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1080px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-header .brand {
    justify-content: flex-start;
  }

  .mobile-header .brand-type {
    font-size: 19px;
  }

  .nav-toggle,
  .nav-close {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--iron);
    background: transparent;
    border: 1px solid var(--rule);
    border-radius: 999px;
    cursor: pointer;
  }

  .nav-toggle {
    padding: 0 15px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .nav-toggle svg,
  .nav-close svg {
    width: 20px;
    height: 20px;
  }

  .mobile-nav-panel[hidden] {
    display: none;
  }

  .mobile-nav-panel {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: block;
  }

  .nav-shade {
    position: absolute;
    inset: 0;
    background: rgba(24, 55, 47, 0.74);
    opacity: 0;
    transition: opacity 240ms ease;
  }

  .nav-sheet {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: min(92vw, 560px);
    height: 100%;
    flex-direction: column;
    padding: 25px;
    color: var(--iron);
    background: var(--stone);
    transform: translateY(-100%);
    transition: transform 240ms ease;
  }

  .mobile-nav-panel.is-open .nav-shade {
    opacity: 1;
  }

  .mobile-nav-panel.is-open .nav-sheet {
    transform: translateY(0);
  }

  .nav-close {
    width: 45px;
    align-self: flex-end;
    color: var(--white);
    background: var(--brick);
    border-color: var(--brick);
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    border-top: 1px solid var(--rule);
  }

  .mobile-nav a {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 17px 0;
    font-family: var(--serif);
    font-size: clamp(25px, 6vw, 37px);
    font-weight: 530;
    letter-spacing: -0.03em;
    line-height: 1;
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
  }

  .mobile-nav a span {
    color: var(--brick);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .mobile-nav a[aria-current="page"]::after {
    content: "●";
    color: var(--teal);
    font-size: 11px;
  }

  .mobile-nav-contact {
    margin-top: auto;
    padding-top: 28px;
  }

  .mobile-nav-contact a {
    display: block;
    margin-top: 8px;
    font-weight: 650;
  }

  .quick-actions {
    position: fixed;
    z-index: 70;
    right: 13px;
    bottom: 13px;
    left: 13px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 999px;
    box-shadow: 0 12px 36px rgba(24, 55, 47, 0.25);
  }

  .quick-actions a {
    display: flex;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--green-deep);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .quick-actions a + a {
    color: var(--iron);
    background: var(--stone);
  }

  .hero-statement-grid,
  .section-heading,
  .brief-feature,
  .transport-hero-grid,
  .context-panel,
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-statement-grid,
  .brief-feature,
  .transport-hero-grid,
  .context-panel,
  .contact-hero-grid {
    gap: 55px;
  }

  .transport-orbit {
    width: min(100%, 600px);
    justify-self: center;
  }

  .warehouse-hero {
    grid-template-columns: 0.48fr 1.52fr;
  }

  .brief-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .track-step:nth-child(3),
  .track-step:nth-child(4) {
    border-top: 2px solid var(--green);
  }

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

  .footer-bay:first-child {
    grid-column: 1 / -1;
  }

  .footer-base {
    padding-bottom: 74px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  body {
    font-size: 15px;
  }

  .utility-inner {
    min-height: 32px;
    justify-content: center;
  }

  .utility-address,
  .utility-contact a:last-child {
    display: none;
  }

  .home-facade {
    height: 500px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 0.72fr;
  }

  .facade-panel:nth-child(2) {
    grid-row: 1 / 3;
  }

  .facade-panel:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-statement-grid {
    gap: 32px;
  }

  .display-title {
    font-size: clamp(48px, 15vw, 74px);
  }

  .page-title {
    font-size: clamp(50px, 14vw, 76px);
  }

  .section-title {
    font-size: clamp(40px, 12vw, 62px);
  }

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

  .button {
    width: 100%;
  }

  .service-row {
    min-height: 0;
    grid-template-columns: 42px 1fr 24px;
    gap: 14px;
    padding-block: 25px;
  }

  .service-row p {
    grid-column: 2 / 4;
  }

  .service-name {
    font-size: 29px;
  }

  .arched-photo {
    min-height: 470px;
  }

  .brief-points,
  .paired-feature,
  .location-band,
  .warehouse-hero,
  .warehouse-band,
  .not-sure,
  .form-chapter,
  .form-finish,
  .footer-bays,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .location-band,
  .not-sure {
    gap: 28px;
  }

  .paired-block {
    min-height: 370px;
  }

  .paired-block + .paired-block {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .transport-hero-grid {
    min-height: auto;
  }

  .transport-orbit {
    padding: 22px;
  }

  .warehouse-title-panel {
    min-height: 480px;
    padding-block: 50px;
  }

  .warehouse-title-panel .page-title {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .warehouse-mosaic {
    min-height: 590px;
    grid-template-columns: 1fr 1fr;
  }

  .warehouse-band {
    gap: 17px;
  }

  .warehouse-band > span {
    margin-bottom: 5px;
  }

  .context-panel img {
    min-height: 400px;
  }

  .logistics-hero .lead {
    margin-left: 0;
  }

  .brief-track {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .track-step,
  .track-step:nth-child(3),
  .track-step:nth-child(4) {
    min-height: 0;
    padding: 26px 0 30px 35px;
    border-top: 1px solid var(--rule);
  }

  .track-step::before {
    top: 30px;
  }

  .track-step h2 {
    margin: 5px 0 6px;
  }

  .photo-strip {
    height: 520px;
    grid-template-columns: 1fr;
    grid-template-rows: 1.2fr 0.8fr;
  }

  .letter-facade {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .letter-cell {
    font-size: 30vw;
  }

  .profile-item {
    min-height: 190px;
  }

  .contact-direct a {
    grid-template-columns: 65px 1fr;
  }

  .form-chapter {
    gap: 20px;
  }

  .chapter-number {
    margin-bottom: -10px;
  }

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

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

  .form-finish {
    padding-bottom: 55px;
  }

  .footer-bay:first-child {
    grid-column: auto;
  }

  .footer-bay {
    min-height: 220px;
    border-bottom: 1px solid var(--rule-light);
  }

  .footer-base-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 24px;
  }
}

@media (max-width: 430px) {
  .mobile-header .brand-type {
    display: none;
  }

  .nav-sheet {
    width: 96vw;
  }

  .home-facade {
    height: 440px;
  }

  .arched-photo {
    min-height: 420px;
  }
}

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