* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f5f3ee;
  color: #151515;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
.nav {
  height: 76px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9d6cf;
}
.logo {
  color: inherit;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
nav { display: flex; gap: 28px; }
nav a { color: inherit; text-decoration: none; font-size: 14px; }
.hero {
  min-height: calc(100vh - 76px);
  padding: 13vh 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1050px;
}
.eyebrow {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}
h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(58px, 9vw, 128px);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 700;
}
.intro {
  margin: 34px 0 30px;
  max-width: 520px;
  font-size: 20px;
  color: #5e5b55;
}
.button {
  width: fit-content;
  padding: 13px 22px;
  background: #151515;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
}
.section {
  padding: 120px 6vw;
  max-width: 900px;
  border-top: 1px solid #d9d6cf;
}
.section h2 {
  margin: 0 0 24px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
}
.section p:not(.eyebrow) {
  max-width: 650px;
  font-size: 19px;
  color: #5e5b55;
}
.contact { padding-bottom: 160px; }
footer {
  padding: 28px 6vw;
  border-top: 1px solid #d9d6cf;
  color: #77736b;
  font-size: 13px;
}
@media (max-width: 600px) {
  .nav { height: 64px; }
  .hero { min-height: calc(100vh - 64px); padding-top: 8vh; }
  nav { gap: 16px; }
}
