:root {
  --bg: #f4f4f2;
  --ink: #231f20;
  --ink-soft: #55575a;
  --green: #3a7b39;
  --rule: #d5d6d3;
  --tile: #dcdcd8;
  --measure: 58ch;
}

*, *::before, *::after { box-sizing: border-box; }

html { background: var(--bg); color: var(--ink); }

body {
  margin: 0;
  font: 400 1.0625rem/1.55 "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
a:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }

.container { width: min(100% - 2.5rem, 64rem); margin-inline: auto; }

h1, h2 { margin: 0; line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); max-width: 16ch; }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 1.25rem; }
p { margin: 0 0 1rem; max-width: var(--measure); }

/* header */
.site-header {
  width: min(100% - 2.5rem, 64rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}
.brand-logo { height: 3rem; width: auto; }
.site-header nav { display: flex; gap: 1.5rem; }
.site-header nav a { text-decoration: none; font-weight: 500; }
.site-header nav a:hover { text-decoration: underline; text-underline-offset: 0.25em; }

/* hero: the brand's own dark ground with the white lockup */
.hero {
  background: var(--ink);
  color: #fff;
}
.hero-inner {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
  align-items: center;
}
@media (min-width: 760px) {
  .hero-inner { grid-template-columns: 5fr 6fr; gap: 4rem; padding-block: 5rem; }
}
.hero-logo { width: min(100%, 22rem); height: auto; }
.lede { font-size: 1.2rem; color: #d3d2cf; margin-top: 1rem; }
.phone {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 3px solid var(--green);
}

/* sections */
.work, .about, .contact { padding-block: 3.5rem; }
.about, .contact { border-top: 1px solid var(--rule); }

.grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .grid { grid-template-columns: repeat(3, 1fr); } }
.photo { aspect-ratio: 1; background: var(--tile); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.more { margin-top: 1.25rem; }
.more a { color: var(--green); font-weight: 500; }

.contact-line { font-size: 1.25rem; font-weight: 500; margin: 0 0 0.5rem; }

.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 0.9375rem;
}
.site-footer p { margin: 0 0 0.25rem; }
.empty { padding-block: 5rem; }

@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
