/* Base typography and page scaffold */
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background: var(--color-canvas);
}

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--color-ink);
  line-height: var(--leading-tight);
  font-weight: var(--weight-semibold);
}
h1 { font-size: var(--text-4xl); letter-spacing: -0.015em; }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-base); font-weight: var(--weight-semibold); color: var(--color-ink); }

a { color: var(--color-ink); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--color-coral); }

:focus-visible {
  outline: 3px solid var(--color-coral);
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: var(--z-skip);
  background: var(--color-ink);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

.eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: var(--space-2);
}

.prose { max-width: var(--container-narrow); }
.prose h2 { margin-top: var(--space-6); margin-bottom: var(--space-3); }
.prose p { margin-bottom: var(--space-4); }
.prose-note { font-size: var(--text-sm); color: var(--color-text-muted); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
