.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--text);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
}

.hero {
  padding: 4rem 0;
  background: var(--panel);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0 0 1rem;
}

.section {
  padding: 3rem 0;
}

.site-footer {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
