*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-ink);
  background: var(--color-canvas);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #f4f1ff url("../Assets/generated/v9-hd-layers/backgrounds/pearl-lavender-field-v9-hd.png") center top / cover fixed;
  opacity: .22;
  pointer-events: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); }
p { margin-bottom: 1rem; }
:focus-visible { outline: 3px solid var(--color-brand); outline-offset: 4px; }
[hidden] { display: none !important; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.wrap { width: min(calc(100% - 3rem), var(--content-width)); margin-inline: auto; }
.reading-wrap { width: min(calc(100% - 3rem), var(--reading-width)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 1000;
  padding: .7rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--color-brand-deep);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }
.eyebrow {
  margin-bottom: .8rem;
  color: var(--color-brand);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.section-heading {
  margin-bottom: var(--space-6);
  text-align: center;
}
.section-title {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .08em;
}
.section-copy {
  max-width: 42rem;
  margin-inline: auto;
  color: var(--color-muted);
  line-height: 1.9;
}
[data-reveal] {
  opacity: 1;
  transform: none;
}
[data-reveal][data-visible="true"] { animation: reveal-in var(--motion-slow) ease both; }
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
section[id] { scroll-margin-top: 7rem; }
