:root {
  --graphite: #111315;
  --off-white: #f2f0ea;
  --steel: #252a2e;
  --road: #72777d;
  --signal: #e6532f;
  --paper: #fbfaf6;
  --line-dark: rgba(17, 19, 21, 0.18);
  --line-light: rgba(242, 240, 234, 0.2);
  --header-height: 64px;
  --max-width: 1440px;
  --gutter: clamp(20px, 4vw, 72px);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--off-white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--off-white);
  background: var(--graphite);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - (var(--gutter) * 2)), var(--max-width));
  max-width: var(--max-width);
  min-height: var(--header-height);
  margin-inline: auto;
  padding: 6px 8px 6px 14px;
  color: var(--off-white);
  background: rgba(17, 19, 21, 0.74);
  border: 1px solid rgba(242, 240, 234, 0.18);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
  transition: top 220ms ease, min-height 220ms ease, padding 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header::before {
  display: none;
}

.site-header.is-scrolled,
.site-header.menu-active {
  top: 10px;
  min-height: 62px;
  padding-block: 8px;
  color: var(--graphite);
  background: rgba(242, 240, 234, 0.96);
  border-bottom: 1px solid var(--line-dark);
  border-color: var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 214px;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 1px 0 rgba(242, 240, 234, 0.1));
  transition: width 220ms ease, height 220ms ease, filter 220ms ease;
}

.brand-wordmark {
  display: grid;
  gap: 6px;
  width: 124px;
  line-height: 1;
  transform: translateY(2px);
}

.brand-name {
  display: block;
  color: currentColor;
  font-size: 1.1rem;
  font-weight: 880;
  letter-spacing: 0.13em;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-subline {
  display: flex;
  align-items: center;
  justify-self: center;
  width: auto;
  margin-left: 0;
  color: #8b8d69;
  font-size: 0.46rem;
  font-weight: 820;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-subline span:first-child,
.brand-subline span:last-child {
  display: none;
}

.brand-subline span:nth-child(2) {
  display: block;
  margin-left: 0;
}

.site-header.is-scrolled .brand-logo,
.site-header.menu-active .brand-logo {
  width: 42px;
  height: 42px;
  filter: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.35vw, 22px);
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.primary-nav a:not(.button) {
  position: relative;
  padding: 8px 0;
}

.primary-nav a:not(.button)::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

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

.nav-subtle {
  opacity: 0.72;
  font-size: 0.6rem;
}

.language-switch {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid currentColor;
}

.language-switch button {
  border: 0;
  padding: 5px 7px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
}

.language-switch button[aria-pressed="true"] {
  color: var(--graphite);
  background: var(--off-white);
}

.mobile-language-switch {
  display: none;
}

.site-header.is-scrolled .language-switch button[aria-pressed="true"],
.site-header.menu-active .language-switch button[aria-pressed="true"] {
  color: var(--off-white);
  background: var(--graphite);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--signal);
  color: var(--off-white);
  background: var(--signal);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-small {
  min-height: 36px;
  padding-inline: 14px;
  font-size: 0.65rem;
}

.button-dark {
  color: var(--off-white);
  background: var(--graphite);
  border-color: var(--graphite);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 240, 234, 0.24);
  color: var(--off-white);
  background: var(--graphite);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(40deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-40deg);
}

.site-header.is-scrolled .menu-toggle,
.site-header.menu-active .menu-toggle {
  color: var(--off-white);
  background: var(--graphite);
  border-color: var(--graphite);
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--off-white);
  background: var(--graphite);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.9) contrast(1.03);
  animation: heroScale 18s ease-out forwards;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.82) 0%, rgba(17, 19, 21, 0.58) 34%, rgba(17, 19, 21, 0.08) 64%, rgba(17, 19, 21, 0) 100%),
    linear-gradient(180deg, rgba(17, 19, 21, 0.18) 0%, rgba(17, 19, 21, 0) 30%, rgba(17, 19, 21, 0.72) 100%),
    radial-gradient(circle at 62% 18%, rgba(242, 240, 234, 0.24), rgba(17, 19, 21, 0) 28%);
  pointer-events: none;
}

.hero-line {
  position: absolute;
  right: 0;
  bottom: 25%;
  z-index: 2;
  width: 42vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--signal));
  transform-origin: left;
  animation: routeDraw 1300ms 450ms ease-out both;
}

.hero-rail {
  position: absolute;
  top: 22vh;
  right: var(--gutter);
  z-index: 2;
  display: grid;
  gap: 10px;
  color: rgba(242, 240, 234, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.hero-panel {
  position: absolute;
  bottom: clamp(42px, 6vw, 82px);
  left: var(--gutter);
  z-index: 3;
  width: min(880px, 58vw);
  padding: 0;
  background: transparent;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--signal);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 22px;
  font-weight: 860;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.3rem, 8.6vw, 9.4rem);
}

.hero h1 {
  max-width: 920px;
  margin-bottom: 26px;
  font-size: clamp(4.2rem, 7vw, 7.6rem);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.7rem, 6.8vw, 7.5rem);
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 820;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(242, 240, 234, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-actions,
.form-actions,
.direct-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.text-link {
  position: relative;
  display: inline-flex;
  padding: 8px 0;
  color: var(--off-white);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link-dark {
  color: var(--graphite);
}

.hero-meta {
  position: absolute;
  right: var(--gutter);
  bottom: 46px;
  z-index: 3;
  display: flex;
  gap: 16px;
  color: rgba(242, 240, 234, 0.82);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-meta-mobile {
  display: none;
}

.section-pad {
  padding: clamp(76px, 11vw, 160px) var(--gutter);
}

.section-dark {
  color: var(--off-white);
  background: var(--graphite);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) minmax(0, 2fr) minmax(220px, 0.85fr);
  gap: clamp(28px, 5vw, 80px);
  max-width: var(--max-width);
  margin-inline: auto;
}

.section-kicker {
  display: grid;
  align-content: start;
  gap: 12px;
  color: var(--road);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intro {
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), var(--line-dark) calc(100% - 1px)),
    var(--off-white);
  background-size: calc((100vw - (var(--gutter) * 2)) / 6) 100%;
}

.intro-main p {
  max-width: 660px;
  color: var(--steel);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
}

.timeline-mark {
  align-self: end;
  display: grid;
  gap: 16px;
  color: var(--graphite);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  font-weight: 860;
  line-height: 0.95;
  text-transform: uppercase;
}

.timeline-mark i {
  display: block;
  width: min(100%, 260px);
  height: 2px;
  background: linear-gradient(90deg, var(--signal), rgba(17, 19, 21, 0.2));
}

.activity {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(28px, 5vw, 78px);
  overflow: hidden;
}

.activity::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 61%;
  width: 1px;
  background: var(--line-light);
}

.activity-header,
.activity-copy,
.activity-rows {
  position: relative;
  z-index: 1;
}

.activity-copy {
  align-self: end;
  max-width: 460px;
  color: rgba(242, 240, 234, 0.72);
  font-size: 1.08rem;
}

.activity-rows {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-light);
}

.activity-row {
  display: grid;
  grid-template-columns: minmax(70px, 0.22fr) minmax(240px, 0.9fr) minmax(260px, 1.1fr);
  gap: clamp(18px, 4vw, 68px);
  align-items: baseline;
  padding: clamp(26px, 4vw, 46px) 0;
  border-bottom: 1px solid var(--line-light);
}

.row-number {
  color: var(--signal);
  font-size: 0.8rem;
  font-weight: 860;
  letter-spacing: 0.16em;
}

.activity-row p {
  margin-bottom: 0;
  color: rgba(242, 240, 234, 0.72);
}

.origin {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  background: var(--paper);
}

.origin-content {
  max-width: 620px;
}

.origin-content p:not(.eyebrow) {
  max-width: 520px;
  color: var(--steel);
  font-size: clamp(1.02rem, 1.65vw, 1.3rem);
}

.map-frame {
  position: relative;
  min-height: clamp(340px, 42vw, 560px);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 19, 21, 0.075) 1px, transparent 1px),
    linear-gradient(135deg, rgba(37, 42, 46, 0.08), transparent 55%);
  background-size: 76px 76px;
  overflow: hidden;
}

.map-frame::before,
.map-frame::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(17, 19, 21, 0.26);
  transform: rotate(-12deg);
}

.map-frame::before {
  top: 18%;
  left: 18%;
  width: 58%;
  height: 48%;
}

.map-frame::after {
  top: 35%;
  left: 6%;
  width: 32%;
  height: 42%;
}

.map-label {
  position: absolute;
  z-index: 2;
  font-size: 0.74rem;
  font-weight: 840;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.map-label-origin {
  bottom: 28px;
  left: 28px;
}

.map-label-scope {
  top: 28px;
  right: 28px;
  text-align: right;
}

.map-dot {
  position: absolute;
  bottom: 31%;
  left: 22%;
  z-index: 3;
  width: 12px;
  height: 12px;
  background: var(--signal);
  box-shadow: 0 0 0 10px rgba(230, 83, 47, 0.14);
}

.route-line,
.route-line-secondary {
  position: absolute;
  z-index: 2;
  height: 2px;
  background: var(--signal);
  transform-origin: left;
}

.route-line {
  bottom: 32%;
  left: 23%;
  width: 88%;
  transform: rotate(-22deg);
}

.route-line-secondary {
  bottom: 36%;
  left: 24%;
  width: 62%;
  opacity: 0.32;
  transform: rotate(6deg);
}

.map-grid-line {
  position: absolute;
  height: 1px;
  background: rgba(17, 19, 21, 0.18);
}

.line-a {
  top: 25%;
  left: 0;
  width: 70%;
}

.line-b {
  top: 70%;
  right: 0;
  width: 76%;
}

.line-c {
  top: 54%;
  left: 18%;
  width: 78%;
  transform: rotate(-36deg);
}

.operation {
  background: var(--steel);
}

.operation-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  max-width: var(--max-width);
  margin-inline: auto;
}

.operation-text p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(242, 240, 234, 0.72);
  font-size: 1.05rem;
}

.operation-text h2 {
  font-size: clamp(3rem, 4.8vw, 5.8rem);
}

.operation-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.36fr);
  gap: 16px;
  align-items: end;
}

.crop {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 240, 234, 0.16);
  background: var(--graphite);
}

.crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.crop-wide {
  height: clamp(320px, 44vw, 620px);
}

.crop-wide img {
  object-position: 49% 52%;
}

.crop-tall {
  height: clamp(260px, 32vw, 470px);
}

.crop-tall img {
  object-position: 62% 68%;
}

.motion-graphic {
  position: relative;
  height: clamp(260px, 32vw, 470px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 240, 234, 0.16);
  background:
    linear-gradient(135deg, rgba(242, 240, 234, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(17, 19, 21, 0.18), rgba(17, 19, 21, 0.58)),
    var(--graphite);
}

.motion-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 240, 234, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(242, 240, 234, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.36;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 22%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 88%, transparent);
}

.motion-field {
  position: absolute;
  inset: 0;
}

.motion-label {
  position: absolute;
  z-index: 3;
  color: rgba(242, 240, 234, 0.62);
  font-size: 0.68rem;
  font-weight: 840;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.motion-label-top {
  top: 24px;
  right: 24px;
}

.motion-label-bottom {
  bottom: 24px;
  left: 24px;
}

.motion-line,
.motion-route {
  position: absolute;
  left: 0;
  z-index: 1;
  height: 2px;
  transform-origin: left center;
}

.motion-line {
  width: 52%;
  background: rgba(242, 240, 234, 0.28);
}

.motion-line-a {
  top: 38%;
  animation: motionPass 6.2s ease-in-out infinite;
}

.motion-line-b {
  top: 51%;
  width: 58%;
  opacity: 0.7;
  animation: motionPass 7.4s ease-in-out infinite 0.9s;
}

.motion-line-c {
  top: 64%;
  width: 38%;
  background: rgba(230, 83, 47, 0.74);
  animation: motionPass 5.8s ease-in-out infinite 1.7s;
}

.motion-route {
  right: -8%;
  bottom: 25%;
  height: 1px;
  background: rgba(230, 83, 47, 0.78);
  transform: rotate(-3deg);
}

.motion-truck {
  position: absolute;
  z-index: 2;
  right: 3%;
  top: 22%;
  width: min(92%, 430px);
  color: var(--off-white);
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.24));
}

.truck-body,
.truck-cab,
.truck-front {
  fill: rgba(242, 240, 234, 0.92);
}

.truck-cab {
  fill: rgba(242, 240, 234, 0.82);
}

.truck-front {
  fill: rgba(242, 240, 234, 0.72);
}

.truck-window {
  fill: rgba(37, 42, 46, 0.92);
}

.truck-road {
  fill: none;
  stroke: rgba(242, 240, 234, 0.42);
  stroke-width: 7;
  stroke-linecap: square;
}

.truck-shadow,
.truck-detail {
  fill: none;
  stroke-linecap: square;
}

.truck-shadow {
  stroke: rgba(17, 19, 21, 0.72);
  stroke-width: 8;
}

.truck-detail {
  stroke: rgba(17, 19, 21, 0.14);
  stroke-width: 2;
}

.truck-wheel {
  fill: var(--graphite);
  stroke: rgba(242, 240, 234, 0.82);
  stroke-width: 8;
}

.truck-hub {
  fill: var(--signal);
}

.operation-tags {
  position: absolute;
  right: 0;
  bottom: -34px;
  left: 9%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(242, 240, 234, 0.66);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes motionPass {
  0% {
    transform: translateX(132%) scaleX(1);
    opacity: 0;
  }

  18%,
  76% {
    opacity: 1;
  }

  100% {
    transform: translateX(-62%) scaleX(0.35);
    opacity: 0;
  }
}

.contact {
  background: var(--off-white);
}

.contact-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(26px, 5vw, 84px);
  align-items: end;
  max-width: var(--max-width);
  margin: 0 auto clamp(42px, 6vw, 82px);
}

.contact-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.contact-heading h2 {
  margin-bottom: 0;
}

.contact-heading p {
  max-width: 520px;
  margin-bottom: 8px;
  color: var(--steel);
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  gap: clamp(28px, 5vw, 74px);
  max-width: var(--max-width);
  margin-inline: auto;
}

.contact-form,
.modal-panel {
  border-top: 2px solid var(--graphite);
}

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

.field,
.file-field {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.34);
  border-radius: 0;
  padding: 13px 0;
  color: var(--graphite);
  background: transparent;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

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

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--signal);
}

.field.is-invalid input,
.field.is-invalid textarea,
.file-field.is-invalid input {
  border-color: var(--signal);
}

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

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin: 24px 0 18px;
  color: var(--steel);
  font-size: 0.92rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--signal);
}

.form-error,
.form-status {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--signal);
  color: var(--graphite);
  background: rgba(230, 83, 47, 0.08);
}

.form-status {
  border-left-color: var(--graphite);
  background: rgba(17, 19, 21, 0.07);
}

.phone-link {
  color: var(--graphite);
  font-size: 0.76rem;
  font-weight: 840;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.direct-contact {
  align-self: start;
  padding-top: 28px;
  border-top: 2px solid var(--signal);
  color: var(--steel);
}

.direct-contact p,
.direct-contact a {
  display: block;
  margin: 0 0 14px;
}

.direct-name {
  color: var(--graphite);
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.people {
  background: var(--graphite);
}

.people-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  max-width: var(--max-width);
  margin-inline: auto;
}

.people-action {
  max-width: 440px;
  color: rgba(242, 240, 234, 0.78);
}

.people-action p {
  font-size: 1.12rem;
}

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

.faq-grid {
  grid-template-columns: minmax(130px, 0.5fr) minmax(0, 2fr);
}

.faq-content h2 {
  margin-bottom: 36px;
}

.accordion {
  border-top: 1px solid var(--line-dark);
}

.faq-item {
  border-bottom: 1px solid var(--line-dark);
}

.faq-item button {
  position: relative;
  width: 100%;
  border: 0;
  padding: 24px 46px 24px 0;
  color: var(--graphite);
  background: transparent;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 0;
  color: var(--signal);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item button[aria-expanded="true"]::after {
  content: "−";
}

.faq-item div {
  max-width: 780px;
  color: var(--steel);
  padding-bottom: 26px;
}

.site-footer {
  position: relative;
  padding: clamp(52px, 7vw, 96px) var(--gutter) 28px;
  color: var(--off-white);
  background: var(--graphite);
}

.footer-logo {
  width: clamp(92px, 10vw, 148px);
  height: auto;
  margin-bottom: clamp(28px, 4vw, 54px);
  opacity: 0.9;
}

.footer-title {
  display: grid;
  margin-bottom: clamp(34px, 5vw, 70px);
  font-size: clamp(3.4rem, 12vw, 13rem);
  font-weight: 880;
  letter-spacing: 0;
  line-height: 0.78;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(180px, 0.5fr);
  gap: clamp(26px, 5vw, 80px);
  max-width: var(--max-width);
  color: rgba(242, 240, 234, 0.78);
}

.footer-grid p,
.footer-grid a {
  margin: 0 0 10px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.copyright {
  margin: clamp(34px, 5vw, 70px) 0 0;
  color: rgba(242, 240, 234, 0.56);
  font-size: 0.82rem;
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: var(--gutter);
}

.modal-shell[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 21, 0.68);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(820px, 90svh);
  overflow: auto;
  padding: clamp(28px, 4vw, 52px);
  background: var(--off-white);
}

.modal-panel h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.file-field input {
  padding: 13px 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.34);
}

.file-field em {
  color: var(--road);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

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

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

@keyframes heroScale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

@keyframes routeDraw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1120px) {
  .primary-nav {
    gap: 14px;
  }

  .nav-subtle {
    display: none;
  }

  .activity-row {
    grid-template-columns: 64px 1fr;
  }

  .activity-row p {
    grid-column: 2;
  }

  .section-grid,
  .origin,
  .operation-layout,
  .contact-layout,
  .people-layout {
    grid-template-columns: 1fr;
  }

  .timeline-mark {
    align-self: start;
  }

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

@media (max-width: 1260px) {
  .nav-subtle {
    display: none;
  }
}

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

  .site-header {
    top: 12px;
    width: calc(100% - 28px);
    min-height: 58px;
    padding: 7px 8px 7px 12px;
    background: rgba(17, 19, 21, 0.82);
  }

  .site-header.is-scrolled,
  .site-header.menu-active {
    top: 10px;
    min-height: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-language-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    margin-right: 10px;
    color: rgba(242, 240, 234, 0.78);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
  }

  .mobile-language-switch button {
    border: 0;
    padding: 6px 2px;
    color: inherit;
    background: transparent;
    cursor: pointer;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
  }

  .mobile-language-switch button[aria-pressed="true"] {
    color: var(--off-white);
  }

  .site-header.is-scrolled .mobile-language-switch,
  .site-header.menu-active .mobile-language-switch {
    color: rgba(17, 19, 21, 0.58);
  }

  .site-header.is-scrolled .mobile-language-switch button[aria-pressed="true"],
  .site-header.menu-active .mobile-language-switch button[aria-pressed="true"] {
    color: var(--graphite);
  }

  .primary-nav {
    position: fixed;
    top: 80px;
    right: 14px;
    left: 14px;
    display: grid;
    align-content: start;
    gap: 0;
    min-height: auto;
    max-height: calc(100svh - 94px);
    padding: 8px 18px 22px;
    overflow-y: auto;
    color: var(--graphite);
    background: var(--off-white);
    border: 1px solid var(--line-dark);
    box-shadow: 0 24px 80px rgba(17, 19, 21, 0.26);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 240ms ease, visibility 220ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .primary-nav a:not(.button) {
    padding: 17px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.98rem;
    letter-spacing: 0.09em;
  }

  .nav-subtle {
    display: block;
    opacity: 1;
  }

  .language-switch {
    display: none;
  }

  .language-switch button[aria-pressed="true"] {
    color: var(--off-white);
    background: var(--graphite);
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media {
    height: auto;
    inset: 0;
  }

  .hero-media img {
    object-position: 52% 43%;
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, rgba(17, 19, 21, 0.28) 0%, rgba(17, 19, 21, 0.04) 30%, rgba(17, 19, 21, 0.36) 54%, rgba(17, 19, 21, 0.94) 100%),
      linear-gradient(90deg, rgba(17, 19, 21, 0.22), rgba(17, 19, 21, 0));
  }

  .hero-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: 0;
    padding: 0 var(--gutter) clamp(28px, 7vw, 44px);
  }

  .hero-rail,
  .hero-line {
    display: none;
  }

  .hero-meta {
    gap: 10px;
    color: rgba(242, 240, 234, 0.72);
    font-size: 0.64rem;
  }

  .hero-meta-desktop {
    display: none;
  }

  .hero-meta-mobile {
    position: static;
    display: flex;
    width: max-content;
    margin: 0 0 16px;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(242, 240, 234, 0.22);
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4.3rem);
  }

  .hero h1 {
    max-width: 11ch;
    margin-bottom: 16px;
    font-size: clamp(2.58rem, 12vw, 4.1rem);
    line-height: 0.88;
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 5rem);
  }

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

  .activity::before {
    display: none;
  }

  .activity-copy {
    align-self: start;
  }

  .operation-tags {
    position: static;
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .brand-wordmark {
    width: 88px;
    gap: 5px;
  }

  .brand-subline {
    font-size: 0.34rem;
    letter-spacing: 0.14em;
  }

  .hero-copy {
    max-width: 32ch;
    margin-bottom: 20px;
    color: rgba(242, 240, 234, 0.78);
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .hero-actions,
  .form-actions,
  .direct-links {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    min-height: 50px;
  }

  .hero-actions .text-link {
    color: rgba(242, 240, 234, 0.74);
    font-size: 0.68rem;
  }

  .hero .eyebrow {
    margin-bottom: 14px;
    font-size: 0.66rem;
    letter-spacing: 0.11em;
  }

  .text-link {
    justify-content: center;
  }

  .section-pad {
    padding-block: 68px;
  }

  .section-grid {
    gap: 24px;
  }

  .activity-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .activity-row p {
    grid-column: auto;
  }

  .origin {
    gap: 30px;
  }

  .map-frame {
    min-height: 330px;
  }

  .map-label {
    font-size: 0.62rem;
  }

  .operation-media {
    grid-template-columns: 1fr;
  }

  .crop-wide,
  .crop-tall,
  .motion-graphic {
    height: 320px;
  }

  .crop-wide img {
    object-position: 50% 50%;
  }

  .motion-truck {
    right: -4%;
    top: 24%;
    width: 106%;
  }

  .motion-label-top {
    top: 20px;
    right: 20px;
  }

  .motion-label-bottom {
    bottom: 20px;
    left: 20px;
  }

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

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

  .footer-title {
    font-size: clamp(2.7rem, 12.5vw, 5rem);
  }

  .footer-logo {
    width: 96px;
  }

  .modal-shell {
    padding: 14px;
  }

  .modal-panel {
    max-height: 94svh;
  }
}

@media (max-width: 420px) {
  :root {
    --gutter: 18px;
  }

  .hero-media {
    height: auto;
  }

  .hero-panel {
    margin-top: 0;
  }

  .hero-meta {
    top: auto;
    bottom: clamp(318px, 42svh, 370px);
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: clamp(2.28rem, 11.2vw, 2.8rem);
  }

  .button {
    min-height: 50px;
  }

  .map-frame {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

/* Editorial refinement: one visual system, varied section rhythms. */
.site-header {
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  min-height: 72px;
  padding: 9px var(--gutter);
  color: var(--off-white);
  background: rgba(17, 19, 21, 0.46);
  border: 0;
  border-bottom: 1px solid rgba(242, 240, 234, 0.18);
  backdrop-filter: blur(10px);
  transform: none;
}

.site-header.is-scrolled,
.site-header.menu-active {
  top: 0;
  min-height: 62px;
  padding-block: 7px;
  color: var(--off-white);
  background: rgba(17, 19, 21, 0.96);
  border-color: rgba(242, 240, 234, 0.15);
}

.site-header.is-scrolled .brand-logo,
.site-header.menu-active .brand-logo {
  width: 40px;
  height: 40px;
}

.site-header.is-scrolled .language-switch button[aria-pressed="true"],
.site-header.menu-active .language-switch button[aria-pressed="true"] {
  color: var(--graphite);
  background: var(--off-white);
}

.brand {
  min-width: 196px;
}

.brand-wordmark {
  width: 112px;
}

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

.primary-nav {
  gap: clamp(14px, 1.5vw, 26px);
}

.hero {
  min-height: min(1000px, 100svh);
}

.hero-media img {
  object-position: 50% 47%;
  filter: saturate(0.92) contrast(1.04);
}

.hero-media::before {
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.76) 0%, rgba(17, 19, 21, 0.42) 35%, rgba(17, 19, 21, 0.06) 68%, transparent 100%),
    linear-gradient(180deg, rgba(17, 19, 21, 0.18) 0%, transparent 42%, rgba(17, 19, 21, 0.82) 100%);
}

.hero-panel {
  bottom: clamp(54px, 7vw, 96px);
  width: min(940px, 66vw);
}

.hero h1 {
  max-width: 9.5ch;
  margin-bottom: 24px;
  font-size: clamp(4.6rem, 8.2vw, 8.8rem);
  line-height: 0.86;
}

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

.hero-rail {
  top: 15vh;
}

.hero-line {
  bottom: 18%;
  width: 35vw;
}

.section-pad {
  padding-block: clamp(88px, 9vw, 132px);
}

.intro {
  min-height: 620px;
  display: grid;
  align-items: center;
  background-size: calc((100vw - (var(--gutter) * 2)) / 8) 100%;
}

.intro .section-grid {
  width: 100%;
  grid-template-columns: minmax(120px, 0.55fr) minmax(0, 1.65fr) minmax(220px, 0.65fr);
  align-items: center;
}

.intro-main h2 {
  font-size: clamp(3.8rem, 6.1vw, 6.8rem);
}

.timeline-mark {
  align-self: center;
}

.activity {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
}

.activity::before {
  display: none;
}

.activity-header h2 {
  font-size: clamp(3.8rem, 6.4vw, 7rem);
}

.activity-row {
  grid-template-columns: 72px minmax(280px, 1.2fr) minmax(260px, 0.8fr);
  padding-block: clamp(28px, 3vw, 42px);
}

.origin {
  min-height: 720px;
  padding: 0;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 0;
  background: var(--paper);
}

.origin-content {
  max-width: none;
  padding: clamp(76px, 8vw, 132px) var(--gutter);
}

.origin-content h2 {
  font-size: clamp(3.8rem, 6vw, 6.6rem);
}

.origin-map,
.map-frame {
  height: 100%;
  min-height: 720px;
}

.map-frame {
  border: 0;
  border-left: 1px solid var(--line-dark);
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 19, 21, 0.08) 1px, transparent 1px),
    #e5e4de;
  background-size: 96px 96px;
}

.map-frame::before {
  content: "AZB";
  top: 50%;
  left: -0.04em;
  width: auto;
  height: auto;
  border: 0;
  color: rgba(17, 19, 21, 0.055);
  font-size: clamp(9rem, 18vw, 20rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.72;
  transform: translateY(-50%);
}

.map-frame::after {
  display: none;
}

.route-line {
  bottom: 36%;
  left: 22%;
  width: 96%;
  transform: rotate(-13deg);
}

.route-line-secondary {
  bottom: 35%;
  left: 22%;
  width: 72%;
  opacity: 0.22;
  transform: rotate(8deg);
}

.map-dot {
  bottom: 34%;
  left: 20%;
}

.map-frame .line-c {
  display: none;
}

.operation {
  background: var(--steel);
}

.operation-layout {
  display: block;
}

.operation-text {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  column-gap: clamp(44px, 8vw, 120px);
  margin-bottom: clamp(48px, 6vw, 86px);
}

.operation-text .eyebrow,
.operation-text h2 {
  grid-column: 1;
}

.operation-text h2 {
  grid-row: 2 / span 2;
  margin-bottom: 0;
  font-size: clamp(3.8rem, 6vw, 6.8rem);
}

.operation-text p:not(.eyebrow) {
  grid-column: 2;
  margin-bottom: 22px;
}

.operation-media {
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.72fr);
  gap: 20px;
  align-items: stretch;
}

.crop-wide,
.motion-graphic {
  height: clamp(430px, 46vw, 650px);
}

.crop-wide img {
  object-position: 50% 48%;
}

.motion-truck {
  top: 25%;
  right: 4%;
  width: 94%;
}

.operation-tags {
  bottom: -36px;
  left: 0;
}

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

.contact-heading {
  margin-bottom: clamp(42px, 5vw, 70px);
}

.contact-heading h2 {
  font-size: clamp(3.8rem, 6vw, 6.8rem);
}

.contact-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.48fr);
  gap: clamp(32px, 5vw, 76px);
}

.field textarea {
  min-height: 104px;
}

.direct-contact {
  min-height: 0;
  height: auto;
  padding: 34px;
  border: 0;
  color: rgba(242, 240, 234, 0.74);
  background: var(--steel);
}

.direct-contact .direct-name,
.direct-contact > a,
.direct-contact .text-link-dark {
  color: var(--off-white);
}

.people {
  position: relative;
  padding-block: clamp(82px, 8vw, 118px);
}

.people::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  width: 84px;
  height: 4px;
  background: var(--signal);
}

.people-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
}

.people h2 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 6vw, 6.8rem);
}

.faq {
  padding-block: clamp(78px, 7vw, 108px);
}

.faq-grid {
  grid-template-columns: minmax(170px, 0.45fr) minmax(0, 1.55fr);
}

.faq-content h2 {
  max-width: 9ch;
  font-size: clamp(3.4rem, 5.2vw, 5.8rem);
}

.site-footer {
  border-top: 1px solid rgba(242, 240, 234, 0.16);
}

.footer-logo {
  width: clamp(72px, 7vw, 104px);
}

.footer-title {
  max-width: 11ch;
  font-size: clamp(4.4rem, 9.5vw, 10rem);
  line-height: 0.82;
}

.reveal {
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (max-width: 1120px) {
  .operation-text {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  }

  .operation-media {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  }

  .origin {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 64px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-active {
    top: 0;
    width: 100%;
    min-height: 64px;
    padding: 7px 14px;
    color: var(--off-white);
    background: rgba(17, 19, 21, 0.94);
    border-color: rgba(242, 240, 234, 0.14);
  }

  .site-header.is-scrolled .mobile-language-switch,
  .site-header.menu-active .mobile-language-switch {
    color: rgba(242, 240, 234, 0.62);
  }

  .site-header.is-scrolled .mobile-language-switch button[aria-pressed="true"],
  .site-header.menu-active .mobile-language-switch button[aria-pressed="true"] {
    color: var(--off-white);
  }

  .primary-nav {
    top: 64px;
    right: 0;
    left: 0;
    min-height: calc(100svh - 64px);
    max-height: calc(100svh - 64px);
    border-right: 0;
    border-left: 0;
    box-shadow: 0 28px 70px rgba(17, 19, 21, 0.3);
  }

  .hero-panel {
    bottom: 0;
    width: 100%;
    padding: 94px var(--gutter) 34px;
    background: linear-gradient(180deg, transparent, rgba(17, 19, 21, 0.92) 24%, var(--graphite) 58%);
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(3.5rem, 12.6vw, 6.2rem);
  }

  .hero-media img {
    object-position: 52% 42%;
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, rgba(17, 19, 21, 0.2) 0%, transparent 38%, rgba(17, 19, 21, 0.82) 77%, var(--graphite) 100%),
      linear-gradient(90deg, rgba(17, 19, 21, 0.18), transparent 72%);
  }

  .intro {
    min-height: auto;
  }

  .intro .section-grid,
  .activity,
  .origin,
  .operation-text,
  .operation-media,
  .contact-layout,
  .people-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .activity {
    grid-template-columns: minmax(0, 1fr);
  }

  .activity-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .activity-row p {
    grid-column: 2;
  }

  .intro .section-grid {
    gap: 34px;
  }

  .origin {
    min-height: 0;
  }

  .origin-content {
    padding: 88px var(--gutter) 58px;
  }

  .origin-map,
  .map-frame {
    min-height: 480px;
  }

  .map-frame {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .operation-text {
    display: grid;
    margin-bottom: 48px;
  }

  .operation-text .eyebrow,
  .operation-text h2,
  .operation-text p:not(.eyebrow) {
    grid-column: 1;
  }

  .operation-text h2 {
    grid-row: auto;
    margin-bottom: 24px;
  }

  .operation-media {
    gap: 16px;
  }

  .operation-tags {
    position: static;
  }

  .direct-contact {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 18px;
  }

  .site-header .brand-logo,
  .site-header.is-scrolled .brand-logo,
  .site-header.menu-active .brand-logo {
    width: 38px;
    height: 38px;
  }

  .site-header .brand-wordmark {
    width: 84px;
  }

  .site-header .brand-name {
    font-size: 0.78rem;
  }

  .site-header .brand-subline {
    font-size: 0.31rem;
  }

  .mobile-language-switch {
    margin-right: 8px;
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero-panel {
    padding: 108px var(--gutter) 28px;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(2.9rem, 13vw, 3.45rem);
    line-height: 0.87;
  }

  .hero .eyebrow {
    max-width: 28ch;
    margin-bottom: 12px;
    line-height: 1.35;
  }

  .hero-copy {
    max-width: 34ch;
    margin-bottom: 18px;
    font-size: 0.9rem;
  }

  .hero-meta-mobile {
    margin-bottom: 12px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions .button {
    width: auto;
    min-height: 46px;
    padding-inline: 17px;
  }

  .hero-actions .text-link {
    width: auto;
  }

  .section-pad {
    padding-block: 72px;
  }

  .intro {
    background-size: calc(100vw / 4) 100%;
  }

  .intro-main h2,
  .activity-header h2,
  .origin-content h2,
  .operation-text h2,
  .contact-heading h2,
  .people h2,
  .faq-content h2 {
    font-size: clamp(2.8rem, 12.2vw, 3.45rem);
    line-height: 0.9;
  }

  .timeline-mark {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    font-size: 1.55rem;
  }

  .timeline-mark i {
    width: 100%;
  }

  .activity-row {
    padding-block: 26px;
  }

  .activity-header,
  .activity-copy,
  .activity-rows {
    min-width: 0;
  }

  .activity-header h2 {
    font-size: clamp(2.45rem, 10.7vw, 2.8rem);
  }

  .origin-content {
    padding: 72px var(--gutter) 52px;
  }

  .origin-map,
  .map-frame {
    min-height: 360px;
  }

  .map-frame {
    background-size: 72px 72px;
  }

  .map-frame::before {
    font-size: 8.5rem;
  }

  .operation-media {
    grid-template-columns: 1fr;
  }

  .crop-wide {
    height: 330px;
  }

  .motion-graphic {
    height: 280px;
  }

  .motion-truck {
    top: 20%;
    right: -1%;
    width: 98%;
  }

  .operation-tags {
    display: none;
  }

  .contact-heading {
    gap: 18px;
  }

  .form-grid {
    gap: 14px;
  }

  .field input,
  .field textarea {
    padding-block: 10px;
  }

  .direct-contact {
    margin-top: 8px;
    padding: 28px;
  }

  .people::before {
    left: var(--gutter);
  }

  .people h2 {
    max-width: 9ch;
  }

  .faq-grid {
    gap: 30px;
  }

  .faq-content h2 {
    max-width: 8ch;
  }

  .footer-logo {
    width: 78px;
  }

  .footer-title {
    max-width: 100%;
    font-size: clamp(2.7rem, 11.8vw, 3.2rem);
    line-height: 0.86;
  }
}

@media (min-width: 681px) and (max-width: 900px) {
  .hero-panel {
    padding-top: 82px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 10.2vw, 5.15rem);
  }

  .hero-copy {
    margin-bottom: 20px;
  }
}

@media (max-width: 390px) {
  .mobile-language-switch {
    gap: 4px;
    font-size: 0.62rem;
  }

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

  .hero-actions {
    gap: 14px;
  }

  .hero-actions .text-link {
    font-size: 0.62rem;
  }
}
