@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #f3f1ec;
  --text: #111;
  --muted: #777;
  --line: #c9c6bf;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
.header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: multiply;
}
.logo { font-weight: 600; letter-spacing: .08em; }
nav { display: flex; gap: 24px; }
nav a, .socials a, .text-link { border-bottom: 1px solid transparent; }
nav a:hover, .socials a:hover, .text-link:hover { border-color: var(--text); }

main { padding: 0 28px; }
.hero {
  min-height: 100vh;
  padding: 130px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.eyebrow { margin: 0 0 20px; letter-spacing: .15em; font-size: 11px; }
h1 {
  font-size: clamp(76px, 15vw, 220px);
  line-height: .78;
  letter-spacing: -.075em;
  font-weight: 500;
  margin: 0;
}
.hero-note {
  max-width: 330px;
  margin: 0 0 0 auto;
  color: var(--muted);
}
.work, .about, .contact { padding: 120px 0; border-top: 1px solid var(--line); }
.section-heading {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: baseline;
  margin-bottom: 55px;
}
.section-heading span { color: var(--muted); font-size: 11px; }
h2 { margin: 0; font-size: 18px; font-weight: 500; }

.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 24px;
}
.project-large { grid-column: 1 / -1; }
.project-wide { grid-column: 1 / -1; }
.project-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dedbd3;
  color: #999;
  font-size: 10px;
  letter-spacing: .12em;
}
.project-large .project-image { aspect-ratio: 16 / 8; }
.project-wide .project-image { aspect-ratio: 16 / 7; }
.project:hover .project-image { opacity: .78; }
.project-info {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about .section-heading { margin-bottom: 0; }
.about-text { max-width: 650px; }
.lead { font-size: clamp(26px, 3.3vw, 48px); line-height: 1.05; letter-spacing: -.04em; margin-top: 0; }
.about-text p:not(.lead) { max-width: 470px; color: var(--muted); margin: 60px 0 35px; }
.text-link { display: inline-block; }

.contact {
  min-height: 75vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-content { display: flex; flex-direction: column; align-items: flex-start; }
.contact-content p { max-width: 360px; color: var(--muted); }
.email {
  font-size: clamp(28px, 4vw, 58px);
  letter-spacing: -.045em;
  margin: 45px 0;
  word-break: break-word;
}
.socials { display: flex; gap: 24px; }

footer {
  padding: 22px 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 700px) {
  .header { padding: 18px; }
  nav { gap: 14px; }
  main { padding: 0 18px; }
  .hero { padding-top: 110px; }
  .projects { grid-template-columns: 1fr; gap: 45px; }
  .project-large, .project-wide { grid-column: auto; }
  .about, .contact { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 35px; }
  .about .section-heading { margin-bottom: 35px; }
  footer { padding: 18px; }
}
