*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--lunar-blue);
  background: var(--grey-fold);
  background-attachment: fixed;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  color: var(--lunar-blue-deep);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 4.6vw, 3.6rem); letter-spacing: 0.04em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; }

a {
  color: var(--lunar-blue-deep);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover, a:focus-visible { color: var(--nova-purple); }

ul, ol { padding-left: 1.2em; margin: 0 0 1em; }

::selection { background: var(--nova-pink); color: var(--lunar-blue-deep); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(56px, 9vw, 120px) 0;
  position: relative;
}

.section--tight { padding: clamp(40px, 6vw, 80px) 0; }

.section-title {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 56px);
}

.section-title .eyebrow {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--nova-purple);
  margin-bottom: 12px;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--lunar-blue-soft);
  max-width: 720px;
  margin: 0 auto;
}

.text-center { text-align: center; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--lunar-blue-deep);
  color: #fff;
  padding: 12px 18px;
  z-index: 10000;
}
.skip-link:focus { left: 12px; top: 12px; }

main { display: block; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
