*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
p,
ul {
  margin-top: 0;
}
h1,
h2,
h3 {
  color: var(--color-surface-strong);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(2.65rem, 7vw, 5rem);
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.35rem);
}
h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
}
p {
  color: var(--color-text-muted);
}
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}
.container {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: var(--page-padding);
}
.section {
  padding-block: clamp(4rem, 8vw, 7.5rem);
}
.section--soft {
  background: var(--color-surface);
}
.section--dark {
  background: var(--color-surface-strong);
  color: #fff;
}
.section--dark h2,
.section--dark h3 {
  color: #fff;
}
.section--dark p {
  color: #e8dbe2;
}
.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section--dark .eyebrow {
  color: #ff8fbd;
}
.section-heading {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-heading h2 {
  margin-bottom: 1rem;
}
.section-heading p {
  max-width: 42rem;
  font-size: 1.08rem;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-primary-dark);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
