:root {
  --ink: #211f1c;
  --paper: #e4dcd4;
  --accent: #934837;
  --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;
}

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

a { color: inherit; }

header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  min-height: 48px;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}

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

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

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.45fr 0.9fr;
  align-items: start;
  min-height: calc(100vh - 48px);
}

.hero-photo {
  margin: 0;
  background: var(--ink);
  height: calc(100vh - 48px);
  overflow: hidden;
}

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

.desk {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

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

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

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

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, textarea {
  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: 10px 12px;
  width: 100%;
  min-height: 44px;
}

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

.when {
  display: flex;
  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: 12px 16px;
  min-height: 44px;
  width: 100%;
  cursor: pointer;
}

.towns { margin: 12px 0 0; }

.calls { border-top: 1px solid var(--ink); }

.call {
  display: block;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  color: inherit;
}

.call img {
  width: 100%;
  height: 48vh;
  object-fit: cover;
  background: var(--ink);
}

.call div { padding: 12px 16px 16px; }

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

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

.page-kicker { padding: 20px 16px 0; }

.jobs h1 { padding: 0 16px 16px; }

.job { border-top: 1px solid var(--ink); }

.job img {
  width: 100%;
  height: 68vh;
  object-fit: cover;
  background: var(--ink);
}

.job div { padding: 16px; }

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

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

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

.write-photo img {
  width: 100%;
  height: 48vh;
  object-fit: cover;
}

.write {
  max-width: 36rem;
  padding: 20px 16px 40px;
}

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; padding: 8px 16px; }
  .home { grid-template-columns: 1fr; min-height: 0; }
  .hero-photo, .hero-photo img { min-height: 52vh; height: 52vh; }
  .desk { padding: 16px; }
  h1 { font-size: 32px; }
  .call { grid-template-columns: 1fr; }
  .call img { height: 46vh; }
  .job img { height: 52vh; }
  .write-photo img { height: 36vh; }
}
