:root {
  --paper: #faf9f6;
  --ink: #14181a;
  --sea: #24504e;
  --stone: #6f716d;
  --line: #dedcd4;
  --max: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", Arial, sans-serif;
  line-height: 1.6;
}

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

.intro {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

.logo {
  width: clamp(190px, 27vw, 330px);
  height: auto;
}

.intro p,
.intro a,
.section-heading > p,
.status,
footer {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.intro p {
  color: var(--stone);
}

.intro a {
  color: var(--sea);
  text-decoration: none;
  border-bottom: 1px solid var(--sea);
  padding-bottom: 0.25rem;
}

.projects {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 1.5rem;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading > p,
.status {
  color: var(--stone);
}

h1,
h2 {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  margin-top: 0.45rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0.55rem 0 1rem;
}

.project {
  background: #fff;
  border: 1px solid var(--line);
}

.project img {
  width: 100%;
  height: auto;
}

.project-copy {
  padding: 2rem;
}

.project-copy > p:last-child {
  color: #3a3e40;
  max-width: 66ch;
}

.project-featured {
  margin-bottom: 2rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.site-plan {
  background: #fff;
}

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  border-top: 1px solid var(--line);
  color: var(--stone);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

footer a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 720px) {
  .intro {
    min-height: 86svh;
  }

  .projects {
    padding-top: 5rem;
  }

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

  .project-copy {
    padding: 1.5rem;
  }
}
