*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; font-weight: 600; letter-spacing: -0.02em; }
h1 { font-weight: 600; }
h1 em, h2 em, h3 em { font-style: normal; color: var(--color-rust); }
.section-forest h2 em, .hero h1 em, .page-hero h1 em, .course-hero h1 em { color: var(--color-rust-light); }
:focus-visible {
  outline: 3px solid var(--color-rust);
  outline-offset: 3px;
}
