* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f5f2;
  color: #111;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  border-bottom: 1px solid #111;
}

.logo {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.04em;
}

nav {
  display: flex;
  gap: 24px;
}

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

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 1400px;
  margin: 0 auto;
}

section {
  padding: 120px 40px;
  border-bottom: 1px solid #111;
}

.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

h1 {
  margin: 0;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.07em;
}

h2 {
  margin: 0 0 30px;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

p {
  max-width: 700px;
  font-size: 20px;
  line-height: 1.5;
}

.intro {
  margin-top: 50px;
}

section a {
  color: inherit;
  font-weight: 700;
}

footer {
  padding: 30px 40px;
  font-size: 12px;
}