:root {
  --green: #063b34;
  --green-deep: #022c27;
  --green-black: rgb(8, 38, 32);
  --cream: #f3eddc;
  --paper: #f7f5ef;
  --gold: #d6b86c;
  --ink: #132520;
  --muted: #69756f;
  --line: rgba(19, 37, 32, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
}
h1,
h2 {
  letter-spacing: -0.06em;
  line-height: 0.96;
}
h1 em,
h2 em {
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 400;
}
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 94px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.site-header.solid {
  position: absolute;
  background: rgba(2, 44, 39, 0.35);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope";
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
}
.nav-links > a:not(.nav-cta) {
  position: relative;
  color: rgba(243, 237, 220, 0.74);
}
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.35s var(--ease);
}
.nav-links > a:hover::after,
.nav-links > a.active::after {
  width: 100%;
}
.nav-links > a.active {
  color: #fff;
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-weight: 700;
  transition:
    transform 0.3s var(--ease),
    background 0.3s;
}
.nav-cta {
  padding: 14px 18px;
  background: var(--cream);
  color: var(--green-deep);
}
.nav-cta:hover,
.btn:hover {
  transform: translateY(-3px);
}
.menu-toggle {
  display: none;
}
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px clamp(24px, 8vw, 130px) 120px;
  color: #fff;
  background: url("images/hero-truck.png") center/cover no-repeat;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(1, 25, 22, 0.93) 0%,
      rgba(1, 30, 27, 0.72) 42%,
      rgba(1, 30, 27, 0.08) 75%
    ),
    linear-gradient(0deg, rgba(0, 20, 18, 0.6), transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}
.eyebrow span {
  display: block;
  width: 38px;
  height: 1px;
  background: currentColor;
}
.eyebrow.dark {
  color: #8b7133;
}
.eyebrow.light {
  color: var(--gold);
}
.hero h1 {
  max-width: 920px;
  margin-bottom: 32px;
  font-size: clamp(54px, 7vw, 108px);
}
.hero-copy {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-top: 42px;
}
.btn {
  border: 0;
  padding: 18px 24px;
  cursor: pointer;
  font: 700 14px "DM Sans";
}
.btn-primary {
  background: var(--gold);
  color: var(--green-black);
}
.btn-dark {
  background: var(--green);
  color: #fff;
}
.text-link {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 7px;
}
.text-link span,
.service-row i {
  display: inline-block;
  margin-left: 9px;
  transition: transform 0.25s;
}
.text-link:hover span,
.service-row:hover i {
  transform: translateX(5px);
}
.dark-link {
  color: var(--green);
  border-color: var(--line);
}
.hero-stats {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 5vw, 80px);
  bottom: 44px;
  display: flex;
  color: #fff;
}
.hero-stats div {
  width: 170px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}
.hero-stats strong {
  display: block;
  font: 600 28px "Manrope";
}
.hero-stats span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
.scroll-cue {
  position: absolute;
  z-index: 1;
  left: 32px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: rotate(-90deg);
  transform-origin: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.scroll-cue i {
  font-size: 18px;
  animation: bob 1.8s infinite;
}
.section {
  padding: 120px clamp(24px, 7vw, 110px);
}
.section-number {
  margin-bottom: 75px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10vw;
  margin-bottom: 75px;
}
.intro-grid h2,
.section-heading h2,
.partner-copy h2,
.story-copy h2,
.service-copy h2,
.contact-intro h2 {
  font-size: clamp(42px, 5vw, 74px);
  margin-bottom: 0;
}
.intro-copy {
  padding-top: 32px;
}
.intro-copy .lead,
.story-copy .lead,
.service-copy .lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink);
}
.intro-copy p:not(.lead),
.story-copy p:not(.lead),
.partner-copy p {
  line-height: 1.8;
  color: var(--muted);
}
.intro-copy .text-link {
  display: inline-block;
  margin-top: 26px;
}
.image-frame {
  position: relative;
  overflow: hidden;
  background: #ddd;
}
.image-frame img {
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.image-frame:hover img {
  transform: scale(1.035);
}
.image-frame.wide {
  height: min(58vw, 650px);
}
.image-tag {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 14px 22px;
  background: var(--cream);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.services-preview {
  background: var(--green-deep);
  color: #fff;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 75px;
}
.section-heading > p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}
.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.service-row {
  display: grid;
  grid-template-columns: 60px 70px 1fr 30px;
  align-items: center;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    padding 0.35s var(--ease),
    background 0.35s;
}
.service-row:hover {
  padding-left: 20px;
  padding-right: 20px;
  background: rgba(255, 255, 255, 0.035);
}
.service-index {
  font-size: 11px;
  color: var(--gold);
}
.service-icon {
  font-size: 24px;
  color: var(--gold);
}
.service-row strong {
  display: block;
  font: 600 24px "Manrope";
}
.service-row small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
}
.service-row i {
  font-style: normal;
}
.partnership {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 0;
}
.partner-image {
  min-height: 650px;
}
.partner-image img {
  height: 100%;
  object-fit: cover;
}
.partner-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px clamp(35px, 6vw, 100px);
  background: var(--cream);
}
.partner-copy p {
  margin: 32px 0;
}
.cta-band {
  position: relative;
  padding: 110px clamp(24px, 8vw, 130px);
  background: var(--green);
  color: #fff;
  overflow: hidden;
}
.cta-band::after {
  content: "L";
  position: absolute;
  right: 10%;
  top: -38%;
  font: 400 460px Georgia;
  color: rgba(255, 255, 255, 0.035);
}
.cta-band h2 {
  font-size: clamp(48px, 7vw, 96px);
  margin: 0;
}
.circle-link {
  position: absolute;
  z-index: 1;
  right: 10%;
  top: 50%;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  transition: 0.35s;
}
.circle-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
  transform: rotate(45deg);
}
.site-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  padding: 75px clamp(24px, 7vw, 110px) 25px;
  background: var(--green-black);
  color: #fff;
  gap: 50px;
}
.footer-brand img {
  width: 110px;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
}
.site-footer > div:not(.footer-brand):not(.footer-bottom) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer div > span {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.site-footer a,
.site-footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}
.site-footer a:hover {
  color: #fff;
}
.footer-bottom {
  grid-column: 1/-1;
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
}
.footer-bottom p {
  margin: 0;
}
.page-hero {
  min-height: 72vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 180px clamp(24px, 7vw, 110px) 80px;
  color: #fff;
  background-position: center;
  background-size: cover;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 30, 27, 0.88), rgba(1, 30, 27, 0.15)),
    linear-gradient(0deg, rgba(1, 30, 27, 0.75), transparent);
}
.about-hero {
  background-image: url("images/mine-operations.png");
}
.services-hero {
  background-image: url("images/hero-truck.png");
}
.contact-hero {
  background-image: url("images/driver-partnership.png");
}
.page-hero-content,
.page-hero-note {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(52px, 7vw, 104px);
  margin: 0;
}
.page-hero-note {
  margin-left: auto;
  text-align: right;
  line-height: 1.8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
}
.story-grid,
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}
.story-grid .image-frame {
  height: 680px;
}
.story-copy p:not(.eyebrow) {
  line-height: 1.8;
  color: var(--muted);
}
.company-facts {
  margin-top: 36px;
}
.company-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.company-facts dt {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
}
.company-facts dd {
  margin: 0;
  font-size: 14px;
}
.vision-section,
.dark-section {
  background: var(--green-deep);
  color: #fff;
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vision-card {
  min-height: 370px;
  padding: 48px;
  background: rgba(255, 255, 255, 0.055);
  display: flex;
  flex-direction: column;
}
.vision-card.accent {
  background: var(--gold);
  color: var(--green-black);
}
.vision-card > span {
  font-size: 11px;
}
.vision-card h3 {
  margin-top: auto;
  font-size: 28px;
}
.vision-card p,
.vision-card li {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}
.vision-card.accent li {
  color: rgba(1, 33, 29, 0.75);
}
.vision-card ul {
  padding-left: 18px;
}
.section-heading.light-bg > p {
  color: var(--muted);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value-card {
  padding: 35px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-card b {
  color: var(--gold);
  font-size: 11px;
}
.value-card h3 {
  margin-top: 70px;
  font-size: 23px;
}
.value-card p {
  line-height: 1.7;
  color: var(--muted);
}
.service-detail {
  overflow: hidden;
}
.service-detail-grid.reverse {
  grid-template-columns: 1fr 1fr;
}
.service-copy {
  position: relative;
}
.big-number {
  position: absolute;
  right: 0;
  top: -80px;
  font: 700 160px "Manrope";
  letter-spacing: -0.08em;
  color: rgba(6, 59, 52, 0.055);
}
.dark-section .big-number {
  color: rgba(255, 255, 255, 0.04);
}
.service-copy .lead {
  margin: 32px 0;
}
.dark-section .service-copy .lead {
  color: rgba(255, 255, 255, 0.75);
}
.image-frame.tall {
  height: 660px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.check-list li {
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.light-list li {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.65);
}
.support-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
}
.support-stats div {
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}
.support-stats strong {
  display: block;
  font: 700 34px "Manrope";
  color: var(--green);
}
.support-stats span {
  font-size: 11px;
  color: var(--muted);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.process-grid article {
  background: var(--paper);
  padding: 35px;
  min-height: 260px;
}
.process-grid span {
  font-size: 11px;
  color: #8b7133;
}
.process-grid h3 {
  margin-top: 70px;
  font-size: 24px;
}
.process-grid p {
  color: var(--muted);
  line-height: 1.7;
}
.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
}
.contact-intro p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 9px;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: 15px "DM Sans";
  outline: none;
  transition: border-color 0.25s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form .btn {
  align-self: flex-start;
}
.form-status {
  color: var(--green);
  font-weight: 600;
}
.contact-cards-section {
  background: var(--cream);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-card {
  position: relative;
  min-height: 300px;
  padding: 35px;
  background: var(--paper);
  transition:
    transform 0.35s var(--ease),
    background 0.35s;
}
.contact-card:hover {
  transform: translateY(-8px);
  background: #fff;
}
.contact-card > span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8b7133;
}
.contact-card h3 {
  margin-top: 70px;
  font-size: 22px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.contact-card p {
  color: var(--muted);
  font-size: 13px;
}
.contact-card i {
  position: absolute;
  right: 30px;
  top: 30px;
  font-style: normal;
}
.availability-section {
  padding: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--green-deep);
  color: #fff;
}
.availability-image img {
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}
.availability-copy {
  padding: 100px clamp(35px, 6vw, 90px);
  align-self: center;
}
.availability-copy h2 {
  font-size: clamp(42px, 5vw, 70px);
}
.hours {
  margin-top: 50px;
}
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.hours span {
  color: rgba(255, 255, 255, 0.55);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes bob {
  50% {
    transform: translateY(7px);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-cue i {
    animation: none;
  }
}
@media (max-width: 900px) {
  .site-header {
    height: 76px;
    padding: 0 22px;
  }
  .brand img {
    width: 44px;
    height: 44px;
  }
  .brand span {
    font-size: 13px;
  }
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }
  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: #fff;
    transition: 0.3s;
  }
  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--green-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 27px;
    font-size: 22px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  .menu-open .nav-links {
    transform: none;
  }
  .nav-cta {
    font-size: 14px;
    margin-top: 15px;
  }
  .hero {
    padding: 120px 24px 180px;
    align-items: center;
  }
  .hero h1 {
    font-size: clamp(48px, 13vw, 70px);
  }
  .hero-copy {
    font-size: 16px;
  }
  .hero-stats {
    left: 24px;
    right: 24px;
    bottom: 36px;
  }
  .hero-stats div {
    width: 33.33%;
    padding: 0 10px;
  }
  .hero-stats strong {
    font-size: 20px;
  }
  .hero-stats span {
    font-size: 9px;
  }
  .scroll-cue {
    display: none;
  }
  .section {
    padding: 80px 24px;
  }
  .section-number {
    margin-bottom: 50px;
  }
  .intro-grid,
  .story-grid,
  .service-detail-grid,
  .service-detail-grid.reverse,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .intro-grid {
    margin-bottom: 50px;
  }
  .image-frame.wide {
    height: 55vw;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .service-row {
    grid-template-columns: 38px 40px 1fr 20px;
  }
  .service-row strong {
    font-size: 18px;
  }
  .partnership,
  .availability-section {
    grid-template-columns: 1fr;
  }
  .partner-image {
    min-height: 55vw;
  }
  .cta-band {
    padding: 80px 24px 160px;
  }
  .circle-link {
    left: 24px;
    right: auto;
    top: auto;
    bottom: 45px;
    width: 75px;
    height: 75px;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .page-hero {
    min-height: 65vh;
    padding: 150px 24px 55px;
  }
  .page-hero-note {
    display: none;
  }
  .story-grid .image-frame,
  .image-frame.tall {
    height: 70vw;
    min-height: 430px;
  }
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .values-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .value-card h3 {
    margin-top: 40px;
  }
  .service-detail-grid.reverse .image-frame {
    order: 2;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .availability-image img {
    min-height: 55vw;
  }
  .availability-copy {
    padding: 80px 24px;
  }
}
@media (max-width: 560px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .hero-stats span {
    display: none;
  }
  .section {
    padding: 68px 20px;
  }
  .image-frame.wide {
    height: 70vw;
  }
  .service-row {
    grid-template-columns: 30px 1fr 20px;
  }
  .service-icon {
    display: none;
  }
  .service-row small {
    font-size: 11px;
  }
  .vision-card {
    padding: 30px;
  }
  .values-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .partnership {
    padding: 0;
  }
  .partner-copy {
    padding: 65px 24px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    padding: 60px 24px 25px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .hours div {
    flex-direction: column;
    gap: 5px;
  }
  .page-hero h1 {
    font-size: 46px;
  }
}

/* Reference-image layout */
.reference-layout {
  --blue: #2e32d9;
  --road: #e7e9f1;
  background: #fff;
}
.reference-layout .site-header {
  position: relative;
  height: 84px;
  background: #fff;
  color: #111;
  border: 0;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
}
.reference-layout .brand {
  color: var(--blue);
}
.reference-layout .brand img {
  border-radius: 0;
  width: 66px;
  height: 56px;
}
.reference-layout .nav-links {
  height: 100%;
  gap: 0;
}
.reference-layout .nav-links > a:not(.nav-cta) {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: #111;
  font-weight: 700;
  font-size: 13px;
}
.reference-layout .nav-links > a.active {
  background: #f0f1f6;
  color: var(--blue);
}
.reference-layout .nav-links > a::after {
  display: none;
}
.reference-layout .nav-cta {
  margin-left: 12px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}
.reference-hero {
  display: block;
  min-height: 660px;
  padding: 38px max(24px, calc((100vw - 1240px) / 2)) 45px;
  background-position: center 58%;
  background-size: cover;
}
.reference-hero .hero-shade {
  background: linear-gradient(
    180deg,
    rgba(7, 62, 55, 0.46),
    rgba(5, 56, 49, 0.04) 60%,
    rgba(0, 0, 0, 0.25)
  );
}
.reference-hero .hero-content {
  max-width: none;
}
.reference-hero h1 {
  font-size: clamp(50px, 5vw, 76px);
  line-height: 1.04;
  margin: 0;
}
.reference-hero .hero-copy {
  position: absolute;
  right: 0;
  top: 18px;
  width: 250px;
  font-size: 15px;
}
.reference-hero .eyebrow {
  margin-bottom: 18px;
}
.quote-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  margin-top: 38px;
}
.quote-panel,
.dispatch-panel > div,
.dispatch-button {
  border-radius: 14px;
  background: #fff;
  color: #111;
}
.quote-panel {
  padding: 20px 26px;
}
.quote-panel h2 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.quote-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 0.75fr;
  gap: 18px;
}
.quote-fields label {
  position: relative;
}
.quote-fields label > span {
  position: absolute;
  z-index: 1;
  left: 16px;
  top: 9px;
  font-size: 10px;
  color: #81858d;
}
.quote-fields input,
.quote-fields select {
  width: 100%;
  height: 58px;
  padding: 20px 15px 4px;
  border: 1px solid #e1e3e9;
  border-radius: 8px;
  background: #f0f1f6;
  font: 14px "DM Sans";
  outline: none;
}
.quote-bottom {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 16px;
}
.quote-bottom .btn {
  min-width: 230px;
  border-radius: 8px;
}
.toggle-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}
.toggle-line input {
  display: none;
}
.toggle-line i {
  width: 38px;
  height: 22px;
  border-radius: 20px;
  background: #aeb1ba;
  position: relative;
}
.toggle-line i::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: 0.25s;
}
.toggle-line input:checked + i {
  background: var(--green);
}
.toggle-line input:checked + i::after {
  transform: translateX(16px);
}
.dispatch-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dispatch-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 19px;
}
.dispatch-panel > div {
  padding: 16px 18px;
}
.dispatch-panel h3 {
  margin-bottom: 5px;
  font-size: 19px;
}
.dispatch-panel p {
  margin-bottom: 12px;
  font-size: 12px;
  color: #777;
}
.dispatch-panel div a {
  display: flex;
  justify-content: space-between;
  padding: 13px;
  border-radius: 7px;
  background: #f0f1f6;
  font-size: 13px;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
  margin: 0 auto;
  padding: 86px 20px 90px;
  text-align: center;
  color: var(--green);
}
.stat-strip strong {
  display: block;
  font: 800 clamp(44px, 5vw, 70px) "Manrope";
  line-height: 1;
}
.stat-strip b {
  display: block;
  font: 800 18px "Manrope";
  text-transform: lowercase;
}
.stat-strip p {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.35;
  color: #50635e;
}
.route-process {
  max-width: 1440px;
  margin: auto;
  padding-top: 0;
}
.route-title {
  display: inline-block;
  margin: 0 0 22px 3%;
  padding: 8px 36px;
  border-radius: 7px;
  background: var(--green);
  color: #fff;
  font-size: 30px;
  letter-spacing: -0.03em;
}
.route-track {
  height: 700px;
  position: relative;
  background: linear-gradient(180deg, #f4f5f8 0 48%, #fff 48% 67%, #f4f5f8 67%);
  overflow: hidden;
}
.route-line {
  position: absolute;
  inset: 52px 12% 55px;
  border: 80px solid var(--road);
  border-left-color: transparent;
  border-radius: 0 180px 180px 180px;
}
.route-line::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -80px;
  width: 70%;
  height: 190px;
  border: 80px solid var(--road);
  border-right: 0;
  border-bottom: 0;
  border-radius: 180px 0 0 0;
}
.route-step {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 215px;
  padding: 14px;
  background: #fff;
  border: 2px solid #8f9597;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
.route-step span {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}
.route-step h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}
.step-1 {
  left: 25%;
  top: 55px;
}
.step-2 {
  right: 10%;
  top: 55px;
}
.step-3 {
  right: 19%;
  top: 295px;
}
.step-4 {
  left: 18%;
  top: 295px;
}
.step-5 {
  left: 27%;
  bottom: 40px;
}
.step-6 {
  right: 14%;
  bottom: 40px;
}
.route-truck {
  position: absolute;
  z-index: 1;
  color: var(--green);
  font-size: 31px;
  transform: rotate(20deg);
}
.truck-a {
  right: 16%;
  top: 12px;
}
.truck-b {
  left: 10%;
  top: 310px;
}
.truck-c {
  right: 9%;
  bottom: 110px;
}
.reference-about {
  padding-bottom: 70px;
}
.about-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}
.about-split > img {
  height: 480px;
  object-fit: cover;
}
.about-split > div {
  padding: 65px;
  background: #f7f7f8;
}
.about-split h2 {
  font-size: 54px;
}
.about-split p:not(.eyebrow) {
  line-height: 1.7;
  color: #55615d;
}
.reference-services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 65px;
}
.reference-services a {
  text-align: center;
}
.reference-services span {
  display: block;
  height: 65px;
  font-size: 38px;
  color: var(--green);
}
.reference-services strong {
  display: block;
  padding: 18px 10px;
  border-radius: 12px;
  background: #9da1a3;
  color: #fff;
  font-size: 15px;
}
.reference-services a:hover strong {
  background: var(--green);
}
.reference-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 60px max(24px, calc((100vw - 1240px) / 2));
  background: var(--cream);
}
.reference-cta p {
  margin-bottom: 5px;
  color: #8b7133;
  font-weight: 700;
}
.reference-cta h2 {
  margin: 0;
  font-size: 38px;
  letter-spacing: -0.04em;
}
.reference-cta .btn {
  background: var(--green);
  color: #fff;
}
.reference-layout .site-footer {
  background: var(--green);
  padding-left: max(24px, calc((100vw - 1240px) / 2));
  padding-right: max(24px, calc((100vw - 1240px) / 2));
}
@media (max-width: 900px) {
  .reference-layout .site-header {
    position: absolute;
    background: rgba(2, 44, 39, 0.82);
    color: #fff;
  }
  .reference-layout .brand {
    color: #fff;
  }
  .reference-layout .menu-toggle span {
    background: #fff;
  }
  .reference-layout .nav-links > a:not(.nav-cta) {
    height: auto;
    color: #fff;
  }
  .reference-hero {
    padding-top: 120px;
    min-height: 860px;
  }
  .reference-hero .hero-copy {
    position: static;
    width: auto;
  }
  .quote-layout {
    grid-template-columns: 1fr;
  }
  .quote-fields {
    grid-template-columns: 1fr;
  }
  .quote-panel {
    padding: 20px;
  }
  .dispatch-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat-strip {
    grid-template-columns: 1fr 1fr;
    gap: 55px 15px;
  }
  .route-track {
    height: 800px;
  }
  .route-line {
    display: none;
  }
  .route-step {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    position: absolute;
    width: min(88%, 360px);
  }
  .step-1 {
    top: 25px;
  }
  .step-2 {
    top: 145px;
  }
  .step-3 {
    top: 265px;
  }
  .step-4 {
    top: 385px;
  }
  .step-5 {
    top: 505px;
    bottom: auto;
  }
  .step-6 {
    top: 625px;
    bottom: auto;
  }
  .route-step::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -39px;
    width: 2px;
    height: 30px;
    background: var(--green);
  }
  .step-6::after {
    display: none;
  }
  .route-truck {
    display: none;
  }
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-split > img {
    height: 55vw;
  }
  .reference-services {
    grid-template-columns: repeat(2, 1fr);
  }
  .reference-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .reference-hero h1 {
    font-size: 43px;
  }
  .reference-hero {
    min-height: 940px;
  }
  .quote-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .quote-bottom .btn {
    width: 100%;
  }
  .dispatch-panel {
    grid-template-columns: 1fr;
  }
  .stat-strip {
    padding-top: 60px;
  }
  .stat-strip strong {
    font-size: 42px;
  }
  .stat-strip b {
    font-size: 14px;
  }
  .route-title {
    font-size: 23px;
    margin-left: 0;
  }
  .about-split > div {
    padding: 40px 24px;
  }
  .about-split h2 {
    font-size: 42px;
  }
  .reference-services {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .reference-cta h2 {
    font-size: 30px;
  }
}

/* Purposeful self-contained icons */
.ui-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.truck-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063b34' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h11v10H3zM14 10h4l3 3v3h-7z'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3Ccircle cx='18' cy='18' r='2'/%3E%3C/svg%3E");
}
.phone-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063b34' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 2 .7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.5c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2.1z'/%3E%3C/svg%3E");
}
.mail-icon,
.message-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063b34' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}
.users-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063b34' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='9' cy='8' r='4'/%3E%3Cpath d='M2 21v-2a6 6 0 0 1 12 0v2M16 5a4 4 0 0 1 0 7M17 15a6 6 0 0 1 5 6'/%3E%3C/svg%3E");
}
.route-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063b34' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='5' r='3'/%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Ccircle cx='6' cy='19' r='3'/%3E%3Cpath d='M6 8v5a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3V8'/%3E%3C/svg%3E");
}
.tools-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063b34' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a4 4 0 0 0-5-5l2.1 2.1-2.4 2.4-2.1-2.1a4 4 0 0 0 5 5l7.4 7.4a2 2 0 0 0 2.8-2.8z'/%3E%3C/svg%3E");
}
.shield-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23063b34' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}
.reference-services .ui-icon {
  width: 48px;
  height: 48px;
}
.route-truck .ui-icon {
  width: 42px;
  height: 42px;
}
.circle-link .ui-icon {
  width: 30px;
  height: 30px;
}
.nav-cta .ui-icon,
.btn .ui-icon {
  width: 18px;
  height: 18px;
}
.btn-primary .ui-icon,
.btn-dark .ui-icon,
.circle-link .ui-icon,
.reference-cta .btn .ui-icon,
.nav-cta .ui-icon {
  filter: brightness(0) invert(1);
}
.contact-card > .ui-icon {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 24px;
  height: 24px;
}
