*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f5f2ee;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation */
header {
  padding: 2rem 4rem;
  border-bottom: 1px solid #e0dbd4;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.site-name {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #1a1a1a;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul a {
  text-decoration: none;
  color: #888;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover {
  color: #1a1a1a;
}

/* Hero */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.hero {
  max-width: 620px;
}

.label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1.2rem;
}

h1 {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.intro {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta {
  font-size: 0.9rem;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.cta:hover {
  color: #888;
  border-color: #888;
}

/* Footer */
footer {
  padding: 2rem 4rem;
  text-align: center;
  font-size: 0.8rem;
  color: #bbb;
  border-top: 1px solid #e0dbd4;
}