@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/BricolageGrotesque-Variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --ink: #101b1d;
  --ink-soft: #263638;
  --paper: #f3f0e7;
  --paper-deep: #e4dfd2;
  --white: #fffdf7;
  --copper: #df6938;
  --copper-dark: #a94120;
  --river: #a8d4d2;
  --river-deep: #397779;
  --line: rgba(16, 27, 29, 0.2);
  --muted: #627072;
  --rail-width: 18rem;
  --max: 92rem;
  --shadow: 0 1rem 3rem rgba(16, 27, 29, 0.14);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Public Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

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

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

:focus-visible {
  outline: 0.2rem solid var(--river-deep);
  outline-offset: 0.22rem;
}

::selection {
  color: var(--white);
  background: var(--copper-dark);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--white);
  border: 0.12rem solid var(--ink);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.mobile-topbar {
  display: none;
}

.site-rail {
  position: fixed;
  z-index: 50;
  inset: 0 auto 0 0;
  width: var(--rail-width);
  min-height: 100vh;
  padding: 1.75rem;
  color: var(--white);
  background: var(--ink);
  border-right: 0.34rem solid var(--copper);
  overflow-y: auto;
}

.rail-inner {
  display: flex;
  min-height: calc(100vh - 3.5rem);
  flex-direction: column;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 4.3rem;
  height: 4.3rem;
  flex: 0 0 auto;
  place-content: center;
  border: 0.1rem solid rgba(255, 253, 247, 0.45);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.18rem;
  font-weight: 760;
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.brand-mark::after {
  position: absolute;
  right: -0.38rem;
  bottom: -0.38rem;
  width: 1rem;
  height: 1rem;
  background: var(--copper);
  content: "";
}

.brand-mark span {
  color: var(--copper);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.025em;
}

.brand-copy small {
  margin-top: 0.3rem;
  color: rgba(255, 253, 247, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rail-rule {
  width: 100%;
  height: 0.06rem;
  margin: 2rem 0 1.75rem;
  background: rgba(255, 253, 247, 0.16);
}

.site-nav {
  display: grid;
  gap: 0.25rem;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 0;
  color: rgba(255, 253, 247, 0.68);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
  font-weight: 560;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms var(--ease);
}

.site-nav a::after {
  color: var(--copper);
  content: "↗";
  font-family: "Public Sans", sans-serif;
  font-size: 0.9rem;
  opacity: 0;
  transform: translate(-0.5rem, 0.2rem);
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  transform: translateX(0.25rem);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: translate(0, 0);
}

.rail-contact {
  display: grid;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.84rem;
}

.rail-label {
  color: var(--copper);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rail-contact a {
  color: var(--white);
  text-decoration-color: rgba(223, 105, 56, 0.7);
}

.rail-address {
  margin: 0.25rem 0 0;
  color: rgba(255, 253, 247, 0.56);
  line-height: 1.45;
}

.site-shell {
  min-height: 100vh;
  margin-left: var(--rail-width);
  overflow: hidden;
}

.main-content {
  display: block;
}

.wrap {
  width: min(100% - 4rem, var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4.8rem, 9vw, 8.6rem) 0;
}

.section-compact {
  padding: clamp(3.2rem, 6vw, 5.8rem) 0;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.1rem;
  color: var(--copper-dark);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.7rem;
  height: 0.16rem;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow {
  color: var(--copper);
}

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

h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 640;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.6rem;
  font-size: clamp(3.25rem, 7.5vw, 7.8rem);
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.lede {
  max-width: 45rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.section-dark .lede,
.dark-copy {
  color: rgba(255, 253, 247, 0.72);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.2rem;
  border: 0.1rem solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.button::after {
  content: "↗";
  font-size: 1rem;
}

.button:hover {
  color: var(--ink);
  background: transparent;
  transform: translateY(-0.16rem);
}

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

.button-copper:hover {
  color: var(--white);
  background: transparent;
}

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

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

.section-dark .button-ghost {
  border-color: rgba(255, 253, 247, 0.72);
  color: var(--white);
}

.section-dark .button-ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.home-hero {
  display: grid;
  min-height: min(58rem, 100vh);
  grid-template-columns: minmax(23rem, 0.88fr) minmax(27rem, 1.12fr);
  background: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 5vw, 6rem);
}

.hero-copy::after {
  position: absolute;
  right: -4.1rem;
  bottom: 5rem;
  z-index: -1;
  width: 8.2rem;
  height: 8.2rem;
  border: 0.14rem solid var(--copper);
  content: "";
  transform: rotate(45deg);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
  color: var(--copper-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-kicker span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--white);
  background: var(--copper-dark);
  letter-spacing: 0;
}

.hero-image {
  position: relative;
  min-height: 36rem;
  overflow: hidden;
  background: var(--ink-soft);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.hero-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 27, 29, 0.18), transparent 40%), linear-gradient(0deg, rgba(16, 27, 29, 0.55), transparent 45%);
  content: "";
}

.image-stamp {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.4rem;
  display: grid;
  min-width: 12rem;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  color: var(--white);
  background: rgba(16, 27, 29, 0.88);
  backdrop-filter: blur(0.4rem);
}

.image-stamp span:first-child {
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.image-stamp span:last-child {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.08rem;
  font-weight: 580;
}

.manifest-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.1rem solid var(--line);
  border-bottom: 0.1rem solid var(--line);
  background: var(--white);
}

.manifest-item {
  display: grid;
  min-height: 7.5rem;
  align-content: center;
  gap: 0.25rem;
  padding: 1.5rem clamp(1.4rem, 3vw, 3rem);
  border-right: 0.1rem solid var(--line);
}

.manifest-item:last-child {
  border-right: 0;
}

.manifest-item small {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.manifest-item strong,
.manifest-item a {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  font-weight: 600;
  text-decoration-color: var(--copper);
}

.intro-grid,
.media-split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: start;
}

.intro-grid h2 {
  max-width: 9ch;
}

.service-stack {
  display: grid;
  border-top: 0.1rem solid var(--line);
}

.service-line {
  position: relative;
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.7rem 0;
  border-bottom: 0.1rem solid var(--line);
  color: inherit;
  text-decoration: none;
}

.service-line::before {
  position: absolute;
  inset: 0 auto 0 -1.25rem;
  width: 0;
  background: var(--river);
  content: "";
  transition: width 240ms var(--ease);
}

.service-line:hover::before {
  width: 0.3rem;
}

.service-number {
  padding-top: 0.2rem;
  color: var(--copper-dark);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-line h3 {
  margin-bottom: 0.45rem;
}

.service-line p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-arrow {
  padding-top: 0.05rem;
  color: var(--copper-dark);
  font-size: 1.55rem;
  transition: transform 180ms var(--ease);
}

.service-line:hover .service-arrow {
  transform: translate(0.25rem, -0.25rem);
}

.photo-panel {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  background: var(--paper-deep);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.photo-panel-tall {
  min-height: 44rem;
}

.offset-card {
  position: relative;
  margin: 2.5rem 0 0 -6rem;
  padding: clamp(2rem, 4vw, 3.6rem);
  background: var(--white);
  border: 0.1rem solid var(--line);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 0;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: cargo;
}

.check-list li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.8rem;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 0.06rem solid var(--line);
  counter-increment: cargo;
}

.check-list li::before {
  color: var(--copper-dark);
  content: "0" counter(cargo);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.location-stage {
  position: relative;
  display: grid;
  min-height: 34rem;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.location-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.location-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 27, 29, 0.95) 0%, rgba(16, 27, 29, 0.45) 70%), linear-gradient(0deg, rgba(16, 27, 29, 0.92), transparent 70%);
  content: "";
}

.location-copy {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  padding: clamp(3rem, 7vw, 7rem);
}

.location-copy h2 {
  max-width: 10ch;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 43rem;
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 1.08fr);
  background: var(--white);
}

.page-hero-copy {
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem);
}

.page-hero-copy h1 {
  font-size: clamp(3.2rem, 6vw, 6.7rem);
}

.page-hero-media {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  border: 1.5rem solid var(--river);
  border-left: 0;
  content: "";
  pointer-events: none;
}

.route-tag {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 18rem;
  padding: 1rem 1.2rem;
  color: var(--ink);
  background: var(--river);
  font-size: 0.82rem;
  font-weight: 730;
  margin: 0;
}

.signal-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border: 0.1rem solid var(--line);
  background: var(--white);
}

.signal-copy {
  padding: clamp(2.2rem, 5vw, 4.7rem);
}

.signal-side {
  display: grid;
  align-content: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  background: var(--copper-dark);
}

.signal-side strong {
  display: block;
  margin-bottom: 1rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 610;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.path-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.path-card {
  min-height: 19rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  background: var(--white);
  border: 0.1rem solid var(--line);
}

.path-card:nth-child(2) {
  color: var(--white);
  background: var(--ink-soft);
}

.path-card .card-index {
  display: block;
  margin-bottom: 5rem;
  color: var(--copper-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.path-card:nth-child(2) .card-index {
  color: var(--river);
}

.path-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.path-card:nth-child(2) p {
  color: rgba(255, 253, 247, 0.68);
}

.handoff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
  border: 0.08rem solid rgba(255, 253, 247, 0.2);
}

.handoff-cell {
  min-height: 15rem;
  padding: 2rem;
  border-right: 0.08rem solid rgba(255, 253, 247, 0.2);
}

.handoff-cell:last-child {
  border-right: 0;
}

.handoff-cell span {
  display: block;
  margin-bottom: 3rem;
  color: var(--copper);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 720;
}

.handoff-cell p {
  margin-bottom: 0;
  color: rgba(255, 253, 247, 0.62);
}

.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.detail-chip {
  padding: 0.65rem 0.8rem;
  border: 0.08rem solid var(--line);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 680;
}

.warehouse-hero {
  display: grid;
  min-height: 50rem;
  grid-template-columns: minmax(21rem, 0.82fr) minmax(0, 1.18fr);
  background: var(--ink);
}

.warehouse-hero-copy {
  display: flex;
  align-items: center;
  padding: clamp(4rem, 7vw, 7rem);
  color: var(--white);
}

.warehouse-hero-copy h1 {
  max-width: 9ch;
  font-size: clamp(3rem, 6.2vw, 6.8rem);
}

.warehouse-collage {
  display: grid;
  min-height: 48rem;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.7rem;
  padding: 0.7rem;
  background: var(--river);
}

.warehouse-collage figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

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

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

.warehouse-collage figure:first-child img {
  object-position: 54% center;
}

.warehouse-collage figure:nth-child(2) img {
  object-position: 55% 48%;
}

.warehouse-collage figure:nth-child(3) img {
  object-position: center;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3.2rem;
  border-top: 0.11rem solid var(--ink);
}

.journey-step {
  padding: 2rem 2rem 2rem 0;
  border-right: 0.08rem solid var(--line);
}

.journey-step + .journey-step {
  padding-left: 2rem;
}

.journey-step:last-child {
  padding-right: 0;
  border-right: 0;
}

.journey-step b {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 3.6rem;
  place-items: center;
  color: var(--white);
  background: var(--copper-dark);
  font-family: "Bricolage Grotesque", sans-serif;
}

.journey-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.worker-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  background: var(--river);
}

.worker-band-media {
  min-height: 38rem;
}

.worker-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.worker-band-copy {
  display: grid;
  align-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.worker-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.1rem solid rgba(16, 27, 29, 0.3);
  font-size: 0.86rem;
}

.flow-hero {
  position: relative;
  display: grid;
  min-height: 45rem;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.flow-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.flow-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 27, 29, 0.98), rgba(16, 27, 29, 0.36)), linear-gradient(0deg, rgba(16, 27, 29, 0.8), transparent 60%);
  content: "";
}

.flow-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 4rem, var(--max));
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.flow-hero-copy h1 {
  max-width: 10ch;
}

.flow-line {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 12%;
  width: 0.4rem;
  height: 68%;
  background: var(--copper);
}

.process-list {
  display: grid;
  margin-top: 3.6rem;
  counter-reset: process;
}

.process-item {
  display: grid;
  grid-template-columns: minmax(5rem, 0.22fr) minmax(12rem, 0.6fr) minmax(15rem, 1.18fr);
  gap: 1.5rem;
  align-items: baseline;
  padding: 2rem 0;
  border-top: 0.08rem solid var(--line);
  counter-increment: process;
}

.process-item:last-child {
  border-bottom: 0.08rem solid var(--line);
}

.process-item::before {
  color: var(--copper-dark);
  content: "0" counter(process);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-item h3,
.process-item p {
  margin: 0;
}

.process-item p {
  color: var(--muted);
}

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

.confirm-panel {
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 0.08rem solid rgba(255, 253, 247, 0.24);
}

.confirm-panel:first-child {
  color: var(--ink);
  background: var(--river);
  border-color: var(--river);
}

.plain-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}

.plain-list li::before {
  color: var(--copper);
  content: "—";
  font-weight: 900;
}

.confirm-panel:first-child .plain-list li::before {
  color: var(--copper-dark);
}

.faq-list {
  border-top: 0.08rem solid var(--line);
}

.faq-item {
  border-bottom: 0.08rem solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 610;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 1.4rem;
  right: 0;
  color: var(--copper-dark);
  content: "+";
  font-size: 1.7rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 53rem;
  margin-bottom: 1.7rem;
  color: var(--muted);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(23rem, 0.95fr);
  background: var(--white);
}

.contact-hero-main {
  padding: clamp(4rem, 8vw, 8rem);
}

.contact-hero-main h1 {
  max-width: 10ch;
}

.contact-ledger {
  display: grid;
  align-content: end;
  min-height: 42rem;
  padding: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  background: var(--copper-dark);
}

.contact-ledger h2 {
  max-width: 8ch;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
}

.contact-row {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-top: 0.08rem solid rgba(255, 253, 247, 0.34);
}

.contact-row:last-child {
  border-bottom: 0.08rem solid rgba(255, 253, 247, 0.34);
}

.contact-row small {
  color: rgba(255, 253, 247, 0.62);
  font-size: 0.65rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.06rem, 1.8vw, 1.32rem);
  font-weight: 580;
}

.request-form {
  display: grid;
  gap: 1.2rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

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

.field label {
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field .optional {
  color: var(--muted);
  font-weight: 560;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.85rem 0.95rem;
  border: 0.08rem solid rgba(16, 27, 29, 0.35);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--river-deep);
  box-shadow: 0 0 0 0.18rem rgba(57, 119, 121, 0.18);
  outline: 0;
}

.form-note {
  margin: 0.25rem 0 0;
  padding: 1rem 1.1rem;
  border-left: 0.25rem solid var(--copper);
  color: var(--muted);
  background: rgba(255, 253, 247, 0.62);
  font-size: 0.84rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--river-deep);
  font-size: 0.85rem;
  font-weight: 680;
}

.map-card {
  position: sticky;
  top: 2rem;
  min-height: 35rem;
  padding: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  background: var(--ink);
}

.map-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.map-lines::before,
.map-lines::after {
  position: absolute;
  width: 130%;
  height: 0.12rem;
  background: rgba(168, 212, 210, 0.26);
  content: "";
  transform-origin: left;
}

.map-lines::before {
  top: 28%;
  left: -8%;
  transform: rotate(29deg);
}

.map-lines::after {
  top: 72%;
  left: -15%;
  transform: rotate(-19deg);
}

.map-pin {
  position: relative;
  z-index: 2;
  display: grid;
  width: 5rem;
  height: 5rem;
  margin-bottom: 8rem;
  place-items: center;
  color: var(--ink);
  background: var(--copper);
  border-radius: 50% 50% 50% 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.85rem;
  font-weight: 780;
  transform: rotate(-45deg);
}

.map-pin span {
  transform: rotate(45deg);
}

.map-card-content {
  position: relative;
  z-index: 2;
}

.map-card address {
  margin: 1.3rem 0 2rem;
  color: rgba(255, 253, 247, 0.72);
  font-style: normal;
  font-size: 1.05rem;
}

.callout-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  color: var(--ink);
  background: var(--copper);
}

.callout-band::after {
  position: absolute;
  top: -7rem;
  right: 8%;
  width: 18rem;
  height: 18rem;
  border: 0.1rem solid rgba(16, 27, 29, 0.32);
  content: "";
  transform: rotate(45deg);
}

.callout-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.callout-inner h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.site-footer {
  color: rgba(255, 253, 247, 0.7);
  background: #091113;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.1fr;
  gap: 3rem;
  padding: 4rem 0;
}

.footer-title {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--white);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.35rem;
  font-weight: 610;
}

.footer-grid p {
  max-width: 34rem;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--white);
  font-size: 0.9rem;
  text-decoration-color: rgba(223, 105, 56, 0.6);
}

.footer-meta {
  padding: 1.1rem 0;
  border-top: 0.06rem solid rgba(255, 253, 247, 0.13);
  font-size: 0.73rem;
}

.footer-meta .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 76rem) {
  :root {
    --rail-width: 15rem;
  }

  .site-rail {
    padding: 1.35rem;
  }

  .brand-mark {
    width: 3.8rem;
    height: 3.8rem;
  }

  .brand-copy strong {
    font-size: 0.85rem;
  }

  .home-hero,
  .page-hero,
  .warehouse-hero,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-copy {
    min-height: 40rem;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-image,
  .page-hero-media {
    min-height: 34rem;
  }

  .page-hero-media::after {
    border-left: 1.5rem solid var(--river);
  }

  .warehouse-collage {
    min-height: 40rem;
  }

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

  .offset-card {
    margin-left: -3rem;
  }
}

@media (max-width: 60rem) {
  body.menu-open::after {
    position: fixed;
    z-index: 39;
    inset: 4.8rem 0 0;
    background: rgba(9, 17, 19, 0.55);
    content: "";
    backdrop-filter: blur(0.15rem);
  }

  .mobile-topbar {
    position: sticky;
    z-index: 60;
    top: 0;
    display: flex;
    height: 4.8rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1.1rem;
    color: var(--white);
    background: var(--ink);
    border-bottom: 0.22rem solid var(--copper);
  }

  .mobile-topbar .brand-mark {
    width: 3rem;
    height: 3rem;
    font-size: 0.88rem;
  }

  .mobile-topbar .brand-mark::after {
    right: -0.24rem;
    bottom: -0.24rem;
    width: 0.65rem;
    height: 0.65rem;
  }

  .mobile-topbar .brand-copy strong {
    font-size: 0.8rem;
  }

  .mobile-topbar .brand-copy small {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    width: 3rem;
    height: 3rem;
    padding: 0;
    place-content: center;
    border: 0.08rem solid rgba(255, 253, 247, 0.4);
    color: var(--white);
    background: transparent;
    cursor: pointer;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    display: block;
    width: 1.25rem;
    height: 0.1rem;
    background: currentColor;
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-lines {
    position: relative;
  }

  .menu-lines::before {
    position: absolute;
    top: -0.38rem;
  }

  .menu-lines::after {
    position: absolute;
    top: 0.38rem;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-rail {
    z-index: 50;
    inset: 4.8rem 0 auto;
    width: 100%;
    min-height: auto;
    max-height: calc(100vh - 4.8rem);
    padding: 1.25rem 1.5rem 1.5rem;
    border-right: 0;
    border-bottom: 0.28rem solid var(--copper);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 180ms ease, transform 180ms var(--ease);
  }

  .site-rail.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .rail-inner {
    min-height: auto;
  }

  .site-rail .brand,
  .rail-rule,
  .rail-address {
    display: none;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav a {
    padding: 0.8rem 0;
    border-bottom: 0.06rem solid rgba(255, 253, 247, 0.12);
    font-size: 1.18rem;
  }

  .rail-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
    padding-top: 0.5rem;
  }

  .rail-label {
    grid-column: 1 / -1;
  }

  .site-shell {
    margin-left: 0;
  }

  .intro-grid,
  .media-split,
  .contact-grid,
  .signal-panel,
  .worker-band {
    grid-template-columns: 1fr;
  }

  .offset-card {
    margin: -3rem 1.5rem 0;
  }

  .handoff-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .handoff-cell,
  .handoff-cell:last-child {
    min-height: auto;
    border-right: 0;
    border-bottom: 0.08rem solid rgba(255, 253, 247, 0.2);
  }

  .handoff-cell span {
    margin-bottom: 1.2rem;
  }

  .journey-step,
  .journey-step + .journey-step,
  .journey-step:last-child {
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 0.08rem solid var(--line);
  }

  .journey-step b {
    margin-bottom: 1.7rem;
  }

  .process-item {
    grid-template-columns: 4rem 1fr;
  }

  .process-item p {
    grid-column: 2;
  }

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

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

@media (max-width: 42rem) {
  .wrap,
  .flow-hero-copy {
    width: min(100% - 2.3rem, var(--max));
  }

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

  .rail-label {
    grid-column: auto;
  }

  .section {
    padding: 4.2rem 0;
  }

  .section-compact {
    padding: 3rem 0;
  }

  .hero-copy,
  .page-hero-copy,
  .warehouse-hero-copy,
  .contact-hero-main {
    min-height: auto;
    padding: 4.5rem 1.2rem;
  }

  h1,
  .page-hero-copy h1,
  .warehouse-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .hero-image,
  .page-hero-media {
    min-height: 27rem;
  }

  .manifest-bar {
    grid-template-columns: 1fr;
  }

  .manifest-item,
  .manifest-item:last-child {
    min-height: auto;
    border-right: 0;
    border-bottom: 0.08rem solid var(--line);
  }

  .service-line {
    grid-template-columns: 2.6rem 1fr;
  }

  .service-arrow {
    display: none;
  }

  .photo-panel,
  .photo-panel-tall {
    min-height: 28rem;
  }

  .offset-card {
    margin: -2rem 0.75rem 0;
    padding: 1.5rem;
  }

  .path-cards,
  .confirm-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: auto;
  }

  .path-card .card-index {
    margin-bottom: 2.5rem;
  }

  .warehouse-collage {
    min-height: 45rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.3fr 0.7fr;
  }

  .warehouse-collage figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .worker-band-media {
    min-height: 30rem;
  }

  .process-item {
    grid-template-columns: 2.8rem 1fr;
    gap: 0.8rem;
  }

  .contact-ledger {
    padding: 3rem 1.2rem;
  }

  .map-card {
    position: relative;
    top: auto;
    min-height: 30rem;
  }

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

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

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

  .footer-meta .wrap {
    flex-direction: column;
    gap: 0.25rem;
  }
}

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

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