:root {
  --ink: #1c1e20;
  --paper: #e7e8ea;
  --accent: #6a5d50;
  --line: #d0d2d6;
  --muted: #3e4144;
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

a { color: inherit; }

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

header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.mark {
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

nav a { text-decoration: none; }

.phone {
  font-variant-numeric: tabular-nums;
  text-decoration: none;
  font-weight: 500;
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 8px 0 12px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.sub { margin: 0 0 12px; max-width: 36rem; }

.skills { margin: 0; color: var(--muted); max-width: 36rem; }

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: calc(100vh - 49px);
}

.still {
  margin: 0;
  min-height: 100%;
  background: var(--ink);
  overflow: hidden;
}

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

.hero .still img { object-position: center 42%; }

.copy { padding: 28px 32px 32px; }

form label {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

input, textarea {
  width: 100%;
  margin-top: 8px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: 16px/1.45 "IBM Plex Sans", sans-serif;
}

textarea { min-height: 56px; resize: vertical; }

input:focus, textarea:focus, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.when { display: flex; gap: 20px; margin-top: 8px; }

.when label {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

button {
  margin-top: 20px;
  padding: 14px 18px;
  border: 0;
  border-radius: 2px;
  background: var(--ink);
  color: var(--paper);
  font: 500 16px/1 "IBM Plex Sans", sans-serif;
  cursor: pointer;
}

.status { min-height: 1.45em; margin: 12px 0 0; }

.truck { margin: 0; background: var(--ink); }

.truck img {
  width: 100%;
  height: 56vh;
  object-fit: cover;
  object-position: center 45%;
}

.jobs { display: flex; flex-direction: column; }

.job {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.job .still { height: 460px; min-height: 460px; }

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

.job:nth-child(1) .still img { object-position: center 40%; }
.job:nth-child(2) .still img { object-position: center 82%; }
.job:nth-child(3) .still img { object-position: center 45%; }
.job:nth-child(4) .still img { object-position: center 72%; }

.job .text { padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; }

.job h2 {
  margin: 8px 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

footer {
  padding: 28px 32px 36px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

footer p { margin: 0 0 8px; }

.credits { max-width: 46rem; color: var(--muted); font-size: 12px; line-height: 1.45; }

@media (max-width: 800px) {
  header, .copy, .job .text, footer { padding: 16px; }

  header { align-items: flex-start; }

  nav { flex-wrap: wrap; gap: 12px 16px; }

  .hero { grid-template-columns: 1fr; min-height: 0; }

  .hero .still { min-height: 62vh; }

  h1 { font-size: 32px; }

  .truck img { height: 42vh; }

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

  .job .still { height: 52vh; min-height: 52vh; }

  input, textarea, button, .phone { min-height: 44px; }

  button { width: 100%; }
}
