:root {
  color: #3d2d1d;
  background: #f7f3ed;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.site-header {
  background: #f0e6d8;
}

.hero,
.content,
.footer {
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 5rem 0 6rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #806344;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 44rem;
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.98;
}

.lede {
  max-width: 36rem;
  margin-bottom: 0;
  color: #6b5742;
  font-size: 1.2rem;
  line-height: 1.6;
}

.content {
  padding: 4rem 0;
}

h2 {
  font-size: 2rem;
}

.project-list {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
}

.project-card {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem;
  border: 1px solid #dfd2c1;
  border-radius: 0.75rem;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  border-color: #9d7f5c;
  box-shadow: 0 0.5rem 1.5rem rgba(61, 45, 29, 0.12);
  transform: translateY(-2px);
}

.project-card__title {
  font-size: 1.25rem;
  font-weight: 700;
}

.project-card__description {
  color: #6b5742;
  line-height: 1.5;
}

.footer {
  padding: 0 0 3rem;
  color: #806344;
  font-size: 0.9rem;
}
