/* Global foundations — document defaults and shared type */
* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(180deg, #faf9f7 0%, var(--bg) 48%, #eef2f1 100%);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
}

a {
  color: var(--sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover { color: var(--shell); }

.page-title {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
}

.lede {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-style: italic;
  font-size: 1.08rem;
}

.wave-rule {
  height: 1px;
  border: 0;
  margin: 1.5rem 0;
  background:
    linear-gradient(90deg, transparent, var(--seafoam), var(--peach), var(--seafoam), transparent);
  opacity: 0.7;
}
