/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: #fafaf9;
  color: #1c1917;
  line-height: 1.6;
}

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.nav-brand {
  font-family: Fraunces, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #57534e;
  text-decoration: none;
}

.nav-links a:hover {
  color: #1c1917;
}

.nav-links a.active {
  color: #1c1917;
  border-bottom: 2px solid #1c1917;
  padding-bottom: 2px;
}

/* ── Page container ── */
.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 3rem 0 4rem;
}

.hero h1 {
  font-family: Fraunces, serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.125rem;
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Sections ── */
section {
  margin-bottom: 4rem;
}

section h2 {
  font-family: Fraunces, serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

section p {
  color: #44403c;
  margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: #1c1917;
  color: #fafaf9;
}

.btn-primary:hover {
  background: #292524;
}

.btn-secondary {
  background: #fff;
  color: #1c1917;
  border-color: #d6d3d1;
}

.btn-secondary:hover {
  background: #f5f5f4;
}

/* ── CTA row ── */
.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding-top: 2rem;
}

/* ── Footer ── */
.public-footer {
  text-align: center;
  max-width: 960px;
  margin: 3rem auto 0;
  padding: 2rem 2rem 4rem;
  border-top: 1px solid #e7e5e4;
  font-size: 0.8125rem;
  color: #a8a29e;
}

.public-footer a {
  color: #a8a29e;
  text-decoration: none;
}

/* ── Responsive ── */
@media (width <= 640px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .page {
    padding: 0 1.25rem 3rem;
  }

  .nav-links {
    gap: 1rem;
  }
}
