/* Base */

html {
  background-color: var(--color-bg-page);
}

body {
  color: var(--color-text-primary);
  font-family: var(--font-sans);
}

body main {
  background-color: var(--color-bg-surface);
}

/* Headings */

h1 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.05;
  margin: 10px 0 30px 0;
  font-stretch: condensed;
  letter-spacing: -0.03em;
  word-spacing: -0.05em;
}

h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 0 15px 0;
  font-stretch: condensed;
  letter-spacing: -0.03em;
  word-spacing: -0.05em;
}

/* Links */

h2 a {
  color: inherit;
  border-bottom: none;
}

h2 a:hover,
h2 a:focus {
  color: var(--color-accent);
  border-bottom: none;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  text-underline-offset: 4px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

a:hover,
a:focus {
  color: var(--color-accent-dark);
  border-bottom: 1px solid var(--color-accent-dark);
}

footer {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-text-subtle);
}

img {
  max-width: 100%;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}