/* ==========================================================================
   Base Typography and Global HTML Element Styles
   ========================================================================== */

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-ink);
  background-color: var(--color-sand);
  line-height: 1.68;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.font-display {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  font-size: var(--text-h2);
  line-height: 1.25;
}

h3 {
  font-size: var(--text-2xl);
  line-height: 1.3;
}

h4 {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 700;
}

p {
  color: var(--color-muted);
  font-size: 1.03125rem;
}

p.lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-ink-light);
}

strong, b {
  color: var(--color-ink);
  font-weight: 700;
}

a {
  color: var(--color-teal);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-teal-dark);
}

/* Accessible Focus States */
:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
}

/* Custom Text Selection */
::selection {
  background-color: var(--color-teal-light);
  color: var(--color-teal-deep);
}

/* Section Dividers */
hr {
  border: none;
  border-top: 1px solid var(--color-rule);
  margin: var(--space-5) 0;
}
