:root {
  --font-heading: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --color-bg: #f7f7f5;
  --color-bg-alt: #eeeeec;
  --color-surface: #ffffff;
  --color-text: #171b1e;
  --color-text-muted: #545e63;
  --color-border: #dcdedd;
  --color-accent: #2b4356;
  --color-accent-strong: #1c2e3b;
  --color-accent-soft: #e4e9ec;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --container-width: 1180px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 2.4vw + 1rem, 2.5rem);
}

h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

p {
  color: var(--color-text-muted);
  line-height: 1.65;
}

a {
  color: var(--color-accent);
}

a:hover {
  color: var(--color-accent-strong);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

small,
.eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
