:root {
  /* sampled from photo-4: roof shadow, sky, exposed lumber */
  --ink: #242418;
  --paper: #e6e4df;
  --paper-2: #d5d1c6;
  --accent: #706040;
  --font: "IBM Plex Sans", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

a { color: inherit; }

header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink);
}

.brand {
  font-weight: 500;
  text-decoration: none;
}

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

nav a { text-decoration: none; }

.phone {
  font-weight: 500;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.home {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  min-height: calc(100vh - 49px);
}

.shot {
  margin: 0;
  padding: 0;
  background: var(--ink);
  border-right: 1px solid var(--ink);
}

.shot img {
  width: 100%;
  height: 42vh;
  object-fit: cover;
  display: block;
}

.home .shot img { height: calc(100vh - 120px); }

.shot figcaption {
  background: var(--paper);
  padding: 12px 16px 14px;
}

.shot p { margin: 0; }

.kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.shot-line {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  max-width: 18ch;
}

.desk {
  padding: 24px 16px 32px;
}

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

.sub {
  margin: 0 0 16px;
  max-width: 42ch;
}

form {
  display: grid;
  gap: 8px;
}

label.field {
  display: grid;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input, select {
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px;
  width: 100%;
  min-height: 44px;
}

.when {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 400;
}

.when label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  white-space: nowrap;
}

.btn-primary {
  font: inherit;
  font-weight: 500;
  background: var(--accent);
  color: var(--paper);
  border: 0;
  border-radius: 2px;
  padding: 14px 16px;
  min-height: 44px;
  width: 100%;
  cursor: pointer;
}

.towns { margin: 16px 0 0; }

.skills {
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
}

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

.skills ol {
  margin: 0;
  padding-left: 1.25em;
}

.skills li { margin: 8px 0; }

.jobs { padding: 0 0 32px; }

.jobs h1 {
  margin: 0;
  padding: 8px 16px 16px;
  background: var(--paper);
}

.job {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  border-top: 1px solid var(--ink);
}

.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pair .shot { border-right: 1px solid var(--ink); }

.pair .shot img { height: 36vh; }

.crop-roof { object-position: center 18%; }
.crop-yard { object-position: center 72%; }

.pair .shot:last-child { border-right: 0; }

.job-copy { padding: 24px 16px; }

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

.job-copy p { margin: 0; max-width: 36ch; }

.write {
  max-width: 36rem;
  padding: 24px 16px 48px;
}

footer {
  border-top: 1px solid var(--ink);
  padding: 16px;
}

footer p { margin: 0 0 8px; }

footer p:last-child { margin: 0; }

@media (max-width: 800px) {
  header { flex-wrap: wrap; }
  .home { grid-template-columns: 1fr; }
  .home .shot img { height: 42vh; }
  .shot {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
  .pair .shot img { height: 32vh; }
  .job { grid-template-columns: 1fr; }
  .pair { grid-template-columns: 1fr; }
  .pair .shot {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
  h1 { font-size: 32px; }
}
