:root {
  color-scheme: light;
  --paper: #f2eee5;
  --ink: #1f1f1b;
  --muted: #777168;
  --line: rgb(31 31 27 / 20%);
  --measure: 72rem;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "URW Palladio L", P052, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--paper);
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

a {
  color: inherit;
}

.page-shell {
  width: min(calc(100% - 3rem), var(--measure));
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  font-family: var(--sans);
}

.site-header {
  min-height: 6.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.studio-note,
.status,
.site-footer,
.eyebrow {
  margin-bottom: 0;
  font-family: var(--sans);
  font-size: 0.74rem;
  line-height: 1.4;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(16rem, 0.45fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  padding: clamp(6rem, 12vw, 10.5rem) 0 clamp(6rem, 11vw, 9.5rem);
}

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

h1 {
  max-width: 9ch;
  margin-bottom: 0;
  font-size: clamp(4.1rem, 8.8vw, 7.8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.057em;
}

.hero-copy {
  max-width: 25rem;
  margin: 0 0 0.55rem;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.45;
}

.work {
  border-top: 1px solid var(--line);
}

.section-heading {
  padding: 1.45rem 0 1rem;
}

.section-heading .eyebrow {
  margin: 0;
}

.project {
  display: grid;
  grid-template-columns: minmax(13rem, 0.75fr) minmax(18rem, 1.25fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  border-top: 1px solid var(--line);
}

.project-heading {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.project h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.status {
  margin: 0;
}

.project-copy {
  max-width: 31rem;
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
}

.site-footer {
  margin-top: clamp(5rem, 10vw, 9rem);
  padding: 1.8rem 0 2.75rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 46rem) {
  .page-shell {
    width: min(calc(100% - 2rem), var(--measure));
  }

  .site-header {
    min-height: 5.5rem;
  }

  .studio-note {
    max-width: 9rem;
    text-align: right;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4.75rem 0 5.5rem;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(3.7rem, 17vw, 5.6rem);
  }

  .hero-copy {
    max-width: 30rem;
    margin-bottom: 0;
  }

  .project {
    grid-template-columns: 1fr;
    gap: 1.65rem;
    padding: 2.75rem 0 3rem;
  }

  .project-heading {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
  }

  .site-footer {
    align-items: flex-start;
  }
}
