@font-face {
  font-family: "Antonio";
  src: url("../fonts/Antonio-Variable.ttf") format("truetype");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/InstrumentSans-Variable.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0c2533;
  --navy-deep: #061922;
  --ink: #17252c;
  --amber: #e8ad43;
  --teal: #15998d;
  --teal-dark: #0b6f68;
  --shell: #f7f2e8;
  --paper: #fffdf8;
  --concrete: #d9dfdc;
  --line: rgba(12, 37, 51, 0.2);
  --font-display: "Antonio", "Arial Narrow", sans-serif;
  --font-body: "Instrument Sans", Arial, sans-serif;
  --header-height: 88px;
  --max-width: 1500px;
}

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

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

body {
  margin: 0;
  background: var(--shell);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.shell {
  width: min(calc(100% - 64px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--amber);
  color: var(--navy-deep);
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(480px, 1.4fr) minmax(220px, 0.65fr);
  align-items: stretch;
  border-bottom: 1px solid rgba(247, 242, 232, 0.16);
  background: rgba(12, 37, 51, 0.97);
  color: var(--shell);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 25, 34, 0.985);
  box-shadow: 0 12px 30px rgba(6, 25, 34, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 12px 24px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  flex: 0 0 49px;
  height: 56px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(247, 242, 232, 0.32);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.9;
  text-align: center;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px auto 7px 6px;
  width: 4px;
  background: var(--amber);
}

.brand-mark span { display: block; }
.brand-mark span:last-child { font-size: 1.4em; }

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 650;
  letter-spacing: 0.045em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-name small {
  color: #b8c9c7;
  font-family: var(--font-body);
  font-size: 0.56em;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 42px);
  border-inline: 1px solid rgba(247, 242, 232, 0.13);
}

.site-menu a {
  position: relative;
  padding-block: 32px;
  color: #dce5e3;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.site-menu a:hover::after,
.site-menu a:focus-visible::after,
.site-menu a.is-active::after { transform: scaleX(1); }

.header-call {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 28px;
  background: var(--amber);
  color: var(--navy-deep);
  text-decoration: none;
}

.header-call span {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-call strong {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.menu-toggle { display: none; }

main { overflow: clip; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 82px) 0 56px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(12, 37, 51, 0.07) 50%, transparent calc(50% + 1px)),
    var(--shell);
}

.hero::before {
  content: "";
  position: absolute;
  top: calc(var(--header-height) + 30px);
  right: 0;
  width: min(22vw, 360px);
  height: 20px;
  background: var(--teal);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  gap: clamp(48px, 8vw, 150px);
  align-items: end;
}

.eyebrow {
  display: flex;
  gap: 13px;
  align-items: center;
  margin: 0 0 22px;
  color: #4c5d64;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 11px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--shell);
}

.hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.7rem, 9.5vw, 10rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-transform: uppercase;
}

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

.hero-lede {
  max-width: 770px;
  margin: 32px 0 0;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--dark { background: var(--navy); color: var(--shell); }
.button--dark:hover { background: var(--teal); color: var(--navy-deep); }

.text-link {
  padding: 10px 0 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.location-ticket {
  position: relative;
  padding: 25px 26px 27px;
  border: 1px solid var(--navy);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--amber);
}

.ticket-code {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px dashed #708087;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

.ticket-code span { font-size: 1.35rem; }
.ticket-code strong { color: var(--teal); font-size: 2.7rem; line-height: 0.8; }

.location-ticket p {
  margin: 20px 0 9px;
  color: #617077;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.location-ticket address {
  font-style: normal;
  font-weight: 600;
  line-height: 1.55;
}

.ticket-notch {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 14px;
  height: 28px;
  transform: translateY(-50%);
  border: 1px solid var(--navy);
  border-right: 0;
  border-radius: 20px 0 0 20px;
  background: var(--shell);
}

.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  min-height: 350px;
  margin-top: 56px;
  background: var(--navy);
}

.hero-photo {
  position: relative;
  min-height: 350px;
  margin: 0;
  overflow: hidden;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 37, 51, 0.04), rgba(12, 37, 51, 0.35));
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  filter: saturate(0.72) contrast(1.08);
}

.hero-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 16px;
  bottom: 14px;
  padding: 6px 9px;
  background: rgba(6, 25, 34, 0.82);
  color: #edf3f1;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--shell);
}

.hero-board div {
  display: flex;
  min-height: 175px;
  flex-direction: column;
  justify-content: space-between;
  padding: 21px;
  border: solid rgba(247, 242, 232, 0.18);
  border-width: 0 0 1px 1px;
}

.hero-board div:nth-child(3),
.hero-board div:nth-child(4) { border-bottom: 0; }
.hero-board div:nth-child(2) { background: var(--teal); color: var(--navy-deep); }
.hero-board div:nth-child(3) { background: var(--amber); color: var(--navy-deep); }

.hero-board span {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.hero-board strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(360px, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
  margin-bottom: 64px;
}

.section-index {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  color: #52636a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-index span {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 650;
}

.section-index i {
  min-width: 28px;
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: 0.55;
}

.section-index strong { white-space: nowrap; }
.section-index--light { color: #b7c5c5; }
.section-index--light span { color: var(--amber); }

.kicker {
  margin: 0 0 13px;
  color: #58686f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker--light { color: #a9bebd; }

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6.8rem);
  font-weight: 630;
  letter-spacing: -0.025em;
  line-height: 0.93;
  text-transform: uppercase;
}

.section-intro {
  max-width: 530px;
  margin: 0;
  color: #4f6067;
  font-size: 1.02rem;
  line-height: 1.72;
}

.services {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.services::before {
  content: "ACM / 01";
  position: absolute;
  top: 22px;
  right: 28px;
  color: rgba(12, 37, 51, 0.12);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--navy);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 16px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.44;
}

.service-card--navy {
  grid-column: span 7;
  min-height: 420px;
  background: var(--navy);
  color: var(--shell);
}

.service-card--amber {
  grid-column: span 5;
  min-height: 420px;
  background: var(--amber);
  color: var(--navy-deep);
}

.service-card--paper {
  grid-column: span 3;
  background: var(--paper);
  color: var(--ink);
}

.service-card--teal {
  grid-column: span 4;
  background: var(--teal);
  color: var(--navy-deep);
}

.card-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px dashed currentColor;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
}

.service-card h3 {
  max-width: 720px;
  margin: 40px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 5.8vw, 6.5rem);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 0.86;
  text-transform: uppercase;
}

.service-card--paper h3,
.service-card--teal h3 {
  font-size: clamp(2.65rem, 4vw, 4.8rem);
}

.service-card p {
  max-width: 570px;
  margin: auto 0 30px;
  line-height: 1.68;
}

.service-card a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 15px;
  border-top: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-card a span { font-size: 1.2rem; }

.service-photo {
  position: relative;
  grid-column: span 5;
  min-height: 370px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(6, 25, 34, 0.76));
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.06);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.service-photo:hover img { transform: scale(1.025); }

.service-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: var(--shell);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brief {
  overflow: hidden;
  background: var(--navy);
  color: var(--shell);
}

.brief::after {
  content: "";
  position: absolute;
  top: 0;
  right: 7%;
  width: 32px;
  height: 100%;
  border-inline: 1px solid rgba(247, 242, 232, 0.09);
  pointer-events: none;
}

.brief-head {
  display: grid;
  grid-template-columns: minmax(170px, 0.4fr) minmax(400px, 1.25fr) minmax(250px, 0.55fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: end;
}

.brief-title-wrap { max-width: 800px; }
.brief-head > p { margin: 0; color: #bdc9c8; line-height: 1.72; }

.detail-conveyor {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  padding: 0;
  border: 1px solid rgba(247, 242, 232, 0.28);
  list-style: none;
}

.detail-conveyor::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 42px;
  left: 42px;
  height: 13px;
  background: repeating-linear-gradient(90deg, var(--amber) 0 18px, transparent 18px 27px);
}

.detail-conveyor li {
  position: relative;
  min-height: 270px;
  padding: 34px clamp(22px, 2.4vw, 38px);
  border-right: 1px solid rgba(247, 242, 232, 0.28);
}

.detail-conveyor li:last-child { border-right: 0; }
.detail-number { color: var(--amber); font-family: var(--font-display); font-size: 1.4rem; }

.detail-conveyor h3 {
  max-width: 230px;
  margin: 64px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.detail-conveyor p { margin: 0; color: #bcc9c7; font-size: 0.9rem; line-height: 1.6; }

.conveyor-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -17px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(247, 242, 232, 0.35);
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
}

.brief-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 38px;
}

.brief-action > span {
  color: #9fb1b0;
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.17em;
}

.button--amber {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--navy-deep);
}

.button--amber:hover { border-color: var(--shell); background: var(--shell); }

.warehouse-road {
  background:
    linear-gradient(90deg, rgba(12, 37, 51, 0.08) 1px, transparent 1px) 0 0 / 9.5vw 100%,
    var(--concrete);
}

.warehouse-road-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(64px, 9vw, 150px);
  align-items: center;
}

.warehouse-road-copy { max-width: 610px; }
.warehouse-road-copy .section-index { margin-bottom: 76px; }
.warehouse-road-copy h2 { margin-bottom: 32px; }

.large-copy {
  margin: 0;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.72;
}

.handoff-list {
  margin: 50px 0 36px;
  border-top: 1px solid var(--navy);
}

.handoff-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(12, 37, 51, 0.34);
}

.handoff-list dt {
  color: #4b5f66;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.handoff-list dd { margin: 0; font-weight: 600; }

.photo-pair {
  position: relative;
  display: grid;
  min-height: 790px;
  grid-template-columns: 1fr 0.78fr;
  align-items: start;
}

.photo-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(12, 37, 51, 0.16);
}

.photo-card--forklift {
  z-index: 1;
  height: 630px;
  margin-top: 92px;
}

.photo-card--loading {
  height: 590px;
  margin-left: -30px;
  border: 14px solid var(--concrete);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.04);
}

.photo-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  background: rgba(6, 25, 34, 0.88);
  color: var(--shell);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-card figcaption span { color: var(--amber); font-family: var(--font-display); font-size: 1rem; }

.representative-note {
  position: absolute;
  right: 0;
  bottom: 14px;
  max-width: 340px;
  margin: 0;
  padding: 10px 13px;
  border: 1px solid var(--navy);
  background: var(--shell);
  color: #4d6066;
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.houston { background: var(--shell); }

.houston::before {
  content: "HTX";
  position: absolute;
  right: 2vw;
  bottom: 0;
  color: rgba(12, 37, 51, 0.045);
  font-family: var(--font-display);
  font-size: min(28vw, 430px);
  font-weight: 700;
  line-height: 0.7;
  pointer-events: none;
}

.houston-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: center;
}

.houston-photo {
  position: relative;
  height: min(74vw, 820px);
  max-height: 820px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.houston-photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 20px;
  border: 1px solid rgba(247, 242, 232, 0.62);
  pointer-events: none;
}

.houston-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.06);
}

.houston-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  padding: 9px 13px;
  background: var(--amber);
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.houston-copy { position: relative; z-index: 1; max-width: 670px; }
.houston-copy .section-index { margin-bottom: 72px; }
.houston-copy > p:not(.kicker) { max-width: 570px; margin: 30px 0 0; color: #4d5e65; font-size: 1.05rem; line-height: 1.72; }

.address-card {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 42px 0 28px;
  padding: 27px 31px;
  border: 1px solid var(--navy);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--teal);
  font-style: normal;
}

.address-card::after {
  content: "HTX";
  position: absolute;
  right: 20px;
  bottom: 9px;
  color: rgba(12, 37, 51, 0.09);
  font-family: var(--font-display);
  font-size: 3.7rem;
  font-weight: 700;
}

.address-card span {
  color: #5b6c72;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.address-card strong { position: relative; z-index: 1; font-size: 1.06rem; line-height: 1.55; }

.contact-routes { border-top: 1px solid var(--navy); }

.contact-routes a {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid var(--navy);
  text-decoration: none;
}

.contact-routes a > span {
  color: #5a6a70;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-routes strong { min-width: 0; overflow-wrap: anywhere; font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.65rem); letter-spacing: 0.02em; }
.contact-routes i { color: var(--teal); font-style: normal; font-size: 1.2rem; }

.map-link {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--navy);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact {
  background:
    linear-gradient(135deg, transparent 0 74%, rgba(21, 153, 141, 0.1) 74% 100%),
    var(--navy-deep);
  color: var(--shell);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.7fr) minmax(620px, 1.3fr);
  gap: clamp(60px, 8vw, 135px);
  align-items: start;
}

.contact-copy { position: sticky; top: calc(var(--header-height) + 46px); }
.contact-copy .section-index { margin-bottom: 88px; }
.contact-copy > p:not(.kicker) { max-width: 520px; margin: 30px 0 0; color: #b8c6c5; line-height: 1.72; }

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 242, 232, 0.35);
}

.direct-contact p { margin: 0 0 5px; color: #8fa4a4; font-size: 0.69rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.direct-contact a { width: fit-content; color: var(--shell); font-family: var(--font-display); font-size: clamp(1.35rem, 2.3vw, 2rem); letter-spacing: 0.02em; text-decoration-color: rgba(232, 173, 67, 0.75); text-underline-offset: 5px; }

.form-panel {
  border-top: 12px solid var(--amber);
  background: var(--paper);
  color: var(--ink);
}

.form-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(24px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  color: #53656b;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-panel__head span { color: var(--teal-dark); font-family: var(--font-display); font-size: 1rem; }

.request-form { padding: clamp(30px, 5vw, 62px); }
.field-grid { display: grid; gap: 24px; }
.field-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field-grid + .field-grid, .field-grid + .field, .field + .field-grid { margin-top: 27px; }

.field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: #405158;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field label > span { color: #a34b34; }
.field label small { color: #657377; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.06em; }

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #78878b;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.field input,
.field select { min-height: 49px; }
.field textarea { min-height: 132px; padding: 12px 0; resize: vertical; }
.field select { cursor: pointer; }
.field input::placeholder, .field textarea::placeholder { color: #68777b; opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom: 3px solid var(--teal); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; }

.form-submit-row {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.form-submit-row button { cursor: pointer; }
.form-submit-row p { max-width: 360px; margin: 0; color: #53656b; font-size: 0.74rem; line-height: 1.55; }
.form-status { min-height: 1.4em; margin: 18px 0 0; color: #315d58; font-size: 0.82rem; font-weight: 650; }

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 110px 0 34px;
  background: var(--amber);
  color: var(--navy-deep);
}

.footer-monogram {
  position: absolute;
  right: -1vw;
  bottom: -15vw;
  color: rgba(12, 37, 51, 0.08);
  font-family: var(--font-display);
  font-size: min(34vw, 520px);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.7;
  pointer-events: none;
}

.footer-monogram span, .footer-monogram strong { display: inline-block; }
.footer-monogram strong { transform: translateX(-0.05em); }

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr;
  gap: clamp(44px, 7vw, 120px);
  padding-bottom: 90px;
}

.footer-company strong {
  display: block;
  max-width: 500px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-company p { max-width: 430px; margin: 28px 0 0; }
.footer-nav, .footer-address { display: grid; align-content: start; gap: 13px; }
.footer-nav a, .footer-address a { width: fit-content; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.footer-address { font-style: normal; }
.footer-address span { margin-bottom: 13px; line-height: 1.65; }

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(12, 37, 51, 0.45);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom a { text-decoration: none; }
.contact-dock { display: none; }

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

@media (max-width: 1120px) {
  :root { --header-height: 78px; }
  .site-header { grid-template-columns: 1fr auto auto; }
  .site-menu {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    transform: translateY(-115%);
    background: var(--navy);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms;
  }
  .site-menu.is-open { transform: translateY(0); visibility: visible; }
  .site-menu a { padding: 25px 12px; text-align: center; }
  .menu-toggle {
    display: flex;
    min-width: 116px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 0;
    border-left: 1px solid rgba(247, 242, 232, 0.18);
    background: transparent;
    color: var(--shell);
    cursor: pointer;
  }
  .menu-toggle__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
  .menu-toggle__lines { display: grid; gap: 6px; width: 22px; }
  .menu-toggle__lines i { display: block; height: 2px; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child { transform: translateY(-4px) rotate(-45deg); }
  .header-call { min-width: 205px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(240px, 0.35fr); gap: 48px; }
  .hero h1 { font-size: clamp(4.4rem, 10.4vw, 7.8rem); }
  .hero-media { grid-template-columns: 1fr 330px; }
}

@media (max-width: 800px) {
  .shell { width: min(calc(100% - 36px), var(--max-width)); }
  .header-call { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .brand { padding-inline: 18px; }
  .brand-mark { width: 42px; flex-basis: 42px; height: 50px; }
  .brand-name { font-size: 1rem; }
  .menu-toggle { min-width: 102px; }
  .site-menu { grid-template-columns: 1fr; max-height: calc(100svh - var(--header-height)); overflow-y: auto; border-bottom: 5px solid var(--amber); }
  .site-menu a { padding: 18px 24px; border-bottom: 1px solid rgba(247, 242, 232, 0.13); font-size: 0.82rem; }
  .hero { padding-top: calc(var(--header-height) + 58px); }
  .hero::before { width: 34vw; top: calc(var(--header-height) + 22px); height: 12px; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero h1 { font-size: clamp(4.2rem, 18vw, 7.6rem); }
  .hero-lede { margin-top: 24px; }
  .location-ticket { width: min(100%, 340px); margin-left: auto; }
  .hero-media { grid-template-columns: 1fr; min-height: 0; margin-top: 46px; }
  .hero-photo { min-height: 330px; }
  .hero-board div { min-height: 130px; }
}

@media (max-width: 520px) {
  .shell { width: min(calc(100% - 24px), var(--max-width)); }
  .brand-name { max-width: 155px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand-mark { flex-basis: 38px; height: 46px; }
  .menu-toggle { min-width: 88px; }
  .menu-toggle__label { display: none; }
  .hero { padding-bottom: 36px; }
  .eyebrow { align-items: flex-start; font-size: 0.65rem; }
  .hero h1 { font-size: clamp(3.65rem, 20vw, 5.8rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .text-link { width: max-content; }
  .hero-photo { min-height: 280px; }
}

@media (max-width: 1120px) {
  .section-heading {
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: start;
  }
  .section-heading .section-intro { grid-column: 2; }
  .service-photo { grid-column: span 6; }
  .service-card--paper { grid-column: span 6; }
  .service-card--teal { grid-column: span 12; min-height: 300px; }
  .brief-head { grid-template-columns: 170px minmax(0, 1fr); align-items: start; }
  .brief-head > p { grid-column: 2; max-width: 560px; }
  .detail-conveyor { grid-template-columns: repeat(2, 1fr); }
  .detail-conveyor li:nth-child(2) { border-right: 0; }
  .detail-conveyor li:nth-child(-n+2) { border-bottom: 1px solid rgba(247, 242, 232, 0.28); }
  .detail-conveyor li:nth-child(2) .conveyor-arrow { display: none; }
  .warehouse-road-grid { grid-template-columns: 1fr; }
  .warehouse-road-copy { max-width: 760px; }
  .photo-pair { width: min(100%, 880px); margin-left: auto; }
  .houston-grid { grid-template-columns: minmax(360px, 0.85fr) minmax(400px, 1.15fr); gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; max-width: 970px; }
  .contact-copy .section-index { grid-column: 1 / -1; margin-bottom: 52px; }
  .contact-copy .kicker, .contact-copy h2, .contact-copy > p { grid-column: 1; }
  .direct-contact { grid-column: 2; grid-row: 2 / span 3; align-self: end; }
  .footer-grid { grid-template-columns: 1.2fr 0.65fr 1fr; gap: 45px; }
}

@media (max-width: 800px) {
  .section { padding: 88px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 46px; }
  .section-heading .section-intro { grid-column: 1; }
  .section h2 { font-size: clamp(3.4rem, 13vw, 6rem); }
  .service-mosaic { grid-template-columns: 1fr; }
  .service-card,
  .service-card--navy,
  .service-card--amber,
  .service-card--paper,
  .service-card--teal,
  .service-photo { grid-column: 1; min-height: 330px; }
  .service-card h3,
  .service-card--paper h3,
  .service-card--teal h3 { font-size: clamp(3rem, 14vw, 5.5rem); }
  .brief-head { grid-template-columns: 1fr; }
  .brief-head > p { grid-column: 1; }
  .detail-conveyor { grid-template-columns: 1fr; }
  .detail-conveyor li { min-height: 215px; border-right: 0; border-bottom: 1px solid rgba(247, 242, 232, 0.28); }
  .detail-conveyor li:last-child { border-bottom: 0; }
  .detail-conveyor li:nth-child(3) { border-bottom: 1px solid rgba(247, 242, 232, 0.28); }
  .detail-conveyor h3 { margin-top: 36px; }
  .conveyor-arrow { top: auto; right: 30px; bottom: -17px; transform: rotate(90deg); }
  .detail-conveyor li:nth-child(2) .conveyor-arrow { display: grid; }
  .brief-action { align-items: stretch; flex-direction: column; }
  .brief-action .button { align-self: flex-end; }
  .warehouse-road-copy .section-index, .houston-copy .section-index { margin-bottom: 48px; }
  .photo-pair { min-height: 650px; grid-template-columns: 1fr 0.78fr; }
  .photo-card--forklift { height: 530px; margin-top: 70px; }
  .photo-card--loading { height: 460px; }
  .houston-grid { grid-template-columns: 1fr; }
  .houston-photo { width: min(100%, 620px); height: 620px; }
  .houston-copy { max-width: none; }
  .contact-copy { display: block; }
  .contact-copy .section-index { margin-bottom: 50px; }
  .direct-contact { margin-top: 44px; }
  .form-panel { margin-inline: -6px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-company { grid-column: 1 / -1; }
  .footer-company strong { max-width: 650px; }
  .contact-dock {
    position: fixed;
    z-index: 120;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(247, 242, 232, 0.25);
    border-radius: 999px;
    background: rgba(6, 25, 34, 0.97);
    box-shadow: 0 12px 35px rgba(6, 25, 34, 0.28);
    color: var(--shell);
  }
  .contact-dock a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
  }
  .contact-dock a + a { border-left: 1px solid rgba(247, 242, 232, 0.18); background: var(--amber); color: var(--navy-deep); }
  .site-footer { padding-bottom: 110px; }
}

@media (max-width: 520px) {
  .section { padding: 74px 0; }
  .section-index { max-width: 250px; }
  .section h2 { font-size: clamp(3.25rem, 16vw, 5rem); }
  .section-intro { font-size: 0.96rem; }
  .service-card { padding: 25px; }
  .service-photo { min-height: 280px; }
  .detail-conveyor { margin-top: 48px; }
  .detail-conveyor li { padding: 28px 25px; }
  .brief-action .button { align-self: stretch; }
  .photo-pair { min-height: 560px; margin-inline: -4px; }
  .photo-card--forklift { height: 450px; margin-top: 70px; }
  .photo-card--loading { height: 390px; margin-left: -18px; border-width: 8px; }
  .representative-note { right: 4px; bottom: 0; max-width: 280px; }
  .houston-photo { height: 470px; }
  .houston-photo::before { inset: 13px; }
  .houston-photo figcaption { right: 24px; bottom: 24px; }
  .address-card { padding: 23px; }
  .contact-routes a { grid-template-columns: 60px minmax(0, 1fr) auto; }
  .form-panel { margin-inline: -12px; }
  .form-panel__head { align-items: flex-start; flex-direction: column; }
  .request-form { padding: 30px 22px; }
  .field-grid--2 { grid-template-columns: 1fr; }
  .field-grid { gap: 27px; }
  .form-submit-row { grid-template-columns: 1fr; }
  .form-submit-row .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; padding-bottom: 60px; }
  .footer-company { grid-column: 1; }
  .footer-company strong { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-monogram { bottom: 8%; }
}

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