:root {
  --ink: #141414;
  --muted: #64605a;
  --paper: #f4f0e8;
  --panel: #fff9ed;
  --steel: #2f3b41;
  --steel-2: #5f6c70;
  --hazard: #f5b31f;
  --rust: #9d4226;
  --line: rgba(20, 20, 20, 0.16);
  --shadow: 0 24px 80px rgba(20, 20, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.035) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(var(--paper), #e8e0d3);
  font-family: Georgia, "Times New Roman", serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(244, 240, 232, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand img {
  display: block;
  width: min(230px, 48vw);
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 26px);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

nav a {
  padding: 10px 0;
}

.nav-cta {
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.hero {
  min-height: calc(100vh - 75px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
  padding: clamp(42px, 7vw, 94px) clamp(18px, 4vw, 56px) 32px;
  overflow: hidden;
}

.hero-copy {
  max-width: 680px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rust);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6.1vw, 6.1rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 820px;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.lead {
  max-width: 590px;
  color: #3e3a36;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button,
button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  cursor: pointer;
}

.button.primary,
button {
  color: var(--ink);
  background: var(--hazard);
  box-shadow: 6px 6px 0 var(--ink);
}

.button.secondary {
  background: transparent;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  border: 2px solid var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 179, 31, 0.32), transparent 20%),
    linear-gradient(135deg, #efe4d1 0 45%, #c3c4bd 45% 46%, #7f8b8f 46% 100%);
  box-shadow: var(--shadow), 12px 12px 0 var(--ink);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 17px, rgba(20, 20, 20, 0.055) 18px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 34%);
  mix-blend-mode: multiply;
}

.sun {
  position: absolute;
  top: 54px;
  right: 72px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: var(--hazard);
  border: 2px solid var(--ink);
}

.warehouse {
  position: absolute;
  right: 0;
  bottom: 130px;
  width: 58%;
  height: 210px;
  background: linear-gradient(90deg, #39474d, #6d7677);
  clip-path: polygon(0 25%, 38% 0, 100% 28%, 100% 100%, 0 100%);
  border-left: 2px solid var(--ink);
}

.warehouse::after {
  content: "";
  position: absolute;
  inset: 62px 34px 28px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 20px, rgba(20, 20, 20, 0.13) 20px 24px);
}

.crane {
  position: absolute;
  left: 44px;
  top: 44px;
  width: 270px;
  height: 250px;
  border-left: 10px solid var(--steel);
  border-top: 8px solid var(--steel);
  transform: skewX(-9deg);
}

.crane::before {
  content: "";
  position: absolute;
  top: 26px;
  left: -12px;
  width: 250px;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--hazard) 0 24px, var(--ink) 24px 36px);
}

.crane::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 190px;
  width: 2px;
  height: 118px;
  background: var(--ink);
  box-shadow: 0 118px 0 10px var(--rust);
}

.excavator {
  position: absolute;
  left: 44px;
  bottom: 84px;
  width: 410px;
  height: 260px;
}

.excavator .cab {
  position: absolute;
  left: 52px;
  bottom: 76px;
  width: 150px;
  height: 106px;
  background: var(--hazard);
  border: 3px solid var(--ink);
  clip-path: polygon(0 34%, 42% 0, 100% 0, 100% 100%, 0 100%);
}

.excavator .cab::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 35px;
  width: 64px;
  height: 42px;
  background: #d9ecea;
  border: 2px solid var(--ink);
}

.excavator .track {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 246px;
  height: 52px;
  border-radius: 28px;
  background: repeating-linear-gradient(90deg, #1f2527 0 20px, #586064 20px 26px);
  border: 3px solid var(--ink);
}

.excavator .boom,
.excavator .arm {
  position: absolute;
  display: block;
  height: 24px;
  background: var(--hazard);
  border: 3px solid var(--ink);
  transform-origin: left center;
}

.excavator .boom {
  left: 154px;
  bottom: 174px;
  width: 178px;
  transform: rotate(-22deg);
}

.excavator .arm {
  left: 300px;
  bottom: 236px;
  width: 114px;
  transform: rotate(42deg);
}

.excavator .bucket {
  position: absolute;
  right: -14px;
  bottom: 128px;
  width: 58px;
  height: 48px;
  background: var(--rust);
  border: 3px solid var(--ink);
  clip-path: polygon(0 0, 100% 12%, 78% 100%, 18% 82%);
}

.forklift {
  position: absolute;
  right: 78px;
  bottom: 78px;
  width: 236px;
  height: 160px;
}

.forklift .body {
  position: absolute;
  right: 22px;
  bottom: 32px;
  width: 142px;
  height: 82px;
  background: var(--rust);
  border: 3px solid var(--ink);
  clip-path: polygon(0 38%, 36% 0, 100% 12%, 100% 100%, 0 100%);
}

.forklift .mast {
  position: absolute;
  left: 26px;
  bottom: 30px;
  width: 12px;
  height: 132px;
  background: var(--steel);
  border: 2px solid var(--ink);
}

.forklift .fork {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 80px;
  height: 10px;
  background: var(--steel);
  border: 2px solid var(--ink);
}

.forklift .wheel {
  position: absolute;
  bottom: 4px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  border: 8px solid var(--steel-2);
}

.forklift .wheel.one {
  right: 40px;
}

.forklift .wheel.two {
  right: 132px;
}

.crates {
  position: absolute;
  right: 290px;
  bottom: 92px;
  display: grid;
  grid-template-columns: repeat(2, 82px);
  gap: 8px;
}

.crates span {
  height: 58px;
  display: block;
  background:
    linear-gradient(45deg, transparent 47%, rgba(20, 20, 20, 0.35) 48% 52%, transparent 53%),
    #b7a16f;
  border: 3px solid var(--ink);
}

.crates span:nth-child(3) {
  grid-column: 1 / 3;
  width: 118px;
  justify-self: center;
}

.ground-lines {
  position: absolute;
  inset: auto 0 0;
  height: 112px;
  background: repeating-linear-gradient(-8deg, rgba(20, 20, 20, 0.28) 0 3px, transparent 3px 28px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
}

.metrics div {
  min-height: 116px;
  padding: 24px clamp(18px, 3vw, 36px);
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: clamp(1.25rem, 2vw, 2.2rem);
  line-height: 1;
}

.metrics span {
  margin-top: 10px;
  color: #d8d0c2;
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
}

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

.range-grid article {
  min-height: 220px;
  padding: 24px;
  background: var(--panel);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 rgba(20, 20, 20, 0.12);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--hazard);
  border: 2px solid var(--ink);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
}

article p,
.supply-copy p,
.enquiry p,
.timeline p,
.check-list {
  color: #504b46;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.62;
}

.supply-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 84px);
  color: #f7f0e2;
  background:
    linear-gradient(90deg, rgba(245, 179, 31, 0.16), transparent 34%),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 18px 19px),
    var(--steel);
}

.supply-band .eyebrow {
  color: var(--hazard);
}

.supply-band p,
.supply-band .check-list {
  color: #e4ded4;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 18px 18px 18px 56px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 19px;
  width: 18px;
  height: 18px;
  background: var(--hazard);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.35);
}

.process {
  background: #e2d7c5;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.timeline article {
  position: relative;
  min-height: 210px;
  padding: 26px;
  background: #f7efe0;
  border-top: 6px solid var(--rust);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  color: #fff;
  background: var(--ink);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
}

.enquiry {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(28px, 5vw, 84px);
  align-items: start;
}

form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--panel);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

label {
  display: grid;
  gap: 8px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  padding: 14px 12px;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid var(--line);
  font: 1rem "Trebuchet MS", Verdana, sans-serif;
}

textarea {
  resize: vertical;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: #eee4d3;
  background: var(--ink);
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

footer span {
  color: #bfb7aa;
}

@media (max-width: 980px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split,
  .supply-band,
  .enquiry {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

  .metrics,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.25rem);
    line-height: 0.98;
  }

  .site-header {
    position: relative;
  }

  .range-grid,
  .metrics,
  .timeline {
    grid-template-columns: 1fr;
  }

  .metrics div {
    min-height: 94px;
  }

  .hero-visual {
    min-height: 360px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .crane {
    left: 20px;
    transform: scale(0.72) skewX(-9deg);
    transform-origin: top left;
  }

  .warehouse {
    width: 72%;
    bottom: 92px;
  }

  .excavator {
    left: 20px;
    bottom: 54px;
    transform: scale(0.68);
    transform-origin: bottom left;
  }

  .forklift {
    right: 10px;
    bottom: 52px;
    transform: scale(0.66);
    transform-origin: bottom right;
  }

  .crates {
    right: 90px;
    bottom: 66px;
    transform: scale(0.66);
    transform-origin: bottom right;
  }
}
