:root {
  color-scheme: light;
  --ink: #161819;
  --muted: #63686b;
  --paper: #f5f6f3;
  --white: #ffffff;
  --green: #1d6549;
  --coral: #dc654e;
  --line: #d9dcd6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  align-items: center;
  background: var(--paper);
  display: flex;
  height: 72px;
  justify-content: space-between;
  padding: 0 5vw;
}

.brand {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

nav a:hover,
nav a:focus-visible {
  color: var(--green);
}

.hero {
  height: calc(100vh - 112px);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

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

.hero-overlay {
  background: rgba(10, 19, 16, 0.42);
  inset: 0;
  position: absolute;
}

.hero-content {
  bottom: 11%;
  color: var(--white);
  left: 5vw;
  max-width: 760px;
  position: absolute;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.intro {
  font-size: 22px;
  line-height: 1.45;
  margin: 28px 0 0;
  max-width: 680px;
}

.work {
  padding: 112px 5vw 124px;
}

.section-heading {
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(160px, 1fr) minmax(0, 3fr);
  margin-bottom: 88px;
}

h2 {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.16;
  margin: 0;
  max-width: 760px;
}

.work-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-grid article {
  border-bottom: 1px solid var(--line);
  min-height: 280px;
  padding: 30px 36px 36px 0;
}

.work-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 36px;
}

.work-grid span {
  color: var(--coral);
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 72px;
}

h3 {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px;
}

.work-grid p,
.studio > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  max-width: 360px;
}

.studio {
  background: var(--green);
  color: var(--white);
  padding: 104px 5vw 112px;
}

.studio h2 {
  font-size: 52px;
  margin-bottom: 40px;
}

.studio > p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

footer {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  padding: 28px 5vw;
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
    padding: 0 20px;
  }

  nav {
    gap: 18px;
  }

  .hero {
    height: calc(100vh - 92px);
    min-height: 520px;
  }

  .hero-content {
    bottom: 9%;
    left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 48px;
  }

  .intro {
    font-size: 18px;
  }

  .work {
    padding: 72px 20px 84px;
  }

  .section-heading {
    display: block;
    margin-bottom: 56px;
  }

  h2,
  .studio h2 {
    font-size: 34px;
  }

  .work-grid {
    display: block;
  }

  .work-grid article,
  .work-grid article + article {
    border-left: 0;
    min-height: 0;
    padding: 28px 0 36px;
  }

  .work-grid span {
    margin-bottom: 36px;
  }

  .studio {
    padding: 72px 20px 80px;
  }

  footer {
    padding: 24px 20px;
  }
}
