* {
  box-sizing: border-box
}

:root {
  --bg: #f4f3ef;
  --ink: #171717;
  --muted: #858581;
  --line: #cfcfca;
  --dark: #171717;
  --accent: #e64d20;
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 42px;
  background: rgba(244, 243, 239, .94);
  backdrop-filter: blur(12px);
}

.brand {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.04em
}

.nav {
  display: flex;
  gap: 52px
}

.nav a,
.eyebrow,
.section-head,
.about-label,
.about-details span,
.project-meta span,
.footer {
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.nav a {
  color: #4b4b49
}

.nav a:hover,
.arrow-link:hover {
  opacity: .55
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px
}

.hero {
  min-height: 760px;
  padding: 205px 42px 55px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.eyebrow,
.section-head,
.about-label {
  color: var(--muted)
}

.hero h1 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(80px, 11vw, 220px);
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
}

.hero-bottom {
  border-top: 1px solid var(--line);
  padding-top: 38px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-bottom p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #5d5d59
}

.arrow-link {
  font-size: 12px;
  letter-spacing: .24em;
  margin-top: 5px
}

.section {
  padding: 100px 42px
}

.work {
  padding-top: 0
}

.section-head {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 105px;
  border-top: 1px solid var(--line)
}

.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 150px 7vw
}

.project {
  width: 100%
}

.project-right {
  margin-top: 190px
}

.project-media {
  display: block;
  overflow: hidden;
  background: #ddd
}

.project-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35/1;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1)
}

.project:hover .project-media img {
  transform: scale(1.025)
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: baseline;
  padding-top: 20px
}

.project-meta h2 {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  margin: 0
}

.project-meta span {
  color: var(--muted);
  white-space: nowrap
}

.about {
  background: var(--dark);
  color: #f5f4f0;
  min-height: 780px;
  display: grid;
  grid-template-columns: 34% 66%;
  padding-top: 32px;
}

.about-label {
  color: #777773
}

.about-content {
  max-width: 980px
}

.statement {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
    font-size: 4.2vw;
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-style: italic;
}

.about-details {
  display: flex;
  gap: 160px;
  margin-top: 90px
}

.about-details span {
  color: #777773
}

.about-details p {
  font-size: 20px;
  margin-top: 18px
}

.contact-cta {
  display: inline-block;
  margin-top: 55px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-size: 25px;
}

.contact {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 7vw;
  min-height: 780px;
  padding-top: 100px;
}

.contact-intro h2 {
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: 1.02;
  margin: 55px 0 45px
}

.contact-intro p {
  font-size: 18px;
  line-height: 1.5;
  color: #6a6a66
}

.contact-form {
  padding-top: 0
}

.contact-form label {
  display: block;
  margin-bottom: 70px
}

.contact-form label span {
  display: block;
  color: #8b8b87;
  font-size: 12px;
  letter-spacing: .24em;
  margin-bottom: 35px
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bdbdb8;
  background: transparent;
  padding: 0 0 18px;
  font: inherit;
  font-size: 20px;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--ink)
}

.contact-form button {
  margin-top: 5px;
  background: var(--dark);
  color: #fff;
  border: 0;
  padding: 23px 45px;
  font-size: 12px;
  letter-spacing: .22em;
  cursor: pointer
}

.contact-form button:hover {
  background: var(--accent)
}

.form-note {
  font-size: 14px;
  color: #777;
  margin-top: 20px
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 42px;
  display: flex;
  justify-content: space-between;
  color: #777
}

@media (max-width:900px) {
  .site-header {
    padding: 24px
  }

  .nav {
    gap: 22px
  }

  .hero {
    min-height: 680px;
    padding: 160px 24px 35px
  }

  .hero h1 {
    margin: 42px 0 55px;
    font-size: clamp(65px, 13vw, 120px)
  }

  .hero h1 em {
    margin-left: 5vw
  }

  .hero-bottom {
    display: block
  }

  .arrow-link {
    display: block;
    margin-top: 30px
  }

  .section {
    padding-left: 24px;
    padding-right: 24px
  }

  .projects {
    gap: 90px 4vw
  }

  .about {
    grid-template-columns: 1fr;
    padding-top: 30px;
    min-height: auto
  }

  .about-content {
    margin-top: 90px
  }

  .contact {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 90px
  }
}

@media (max-width:650px) {
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    flex-direction: column;
    padding: 25px 24px 30px;
    background: var(--bg);
    border-top: 1px solid var(--line);
    gap: 25px
  }

  .nav.open {
    display: flex
  }

  .menu-toggle {
    display: block
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
    margin: 6px
  }

  .hero {
    min-height: 650px
  }

  .hero h1 {
    font-size: 18vw;
    line-height: .88
  }

  .hero h1 em {
    margin-left: 0
  }

  .projects {
    grid-template-columns: 1fr;
    gap: 75px
  }

  .project-right {
    margin-top: 0
  }

  .project-meta {
    display: block
  }

  .project-meta span {
    display: block;
    margin-top: 12px
  }

  .about-details {
    gap: 55px;
    flex-wrap: wrap;
    margin-top: 65px
  }

  .statement {
    font-size: 38px
  }

  .contact {
    padding-top: 75px
  }

  .footer {
    padding: 25px 24px
  }
}