:root {
  --lilac: #CB8FE1;
  --lilac-300: #E7C7F3;
  --lilac-500: #B580C9;
  --lilac-700: #7B3F96;
  --lilac-800: #66317E;
  --lilac-900: #3A2140;
  --amber: #FFC107;
  --amber-700: #8A6000;
  --blush: #FFF3F8;
  --mist: #F8F2FC;
  --paper: #FFFFFF;
  --ink: #2D2D2D;
  --body: #574A5E;
  --line: #EADCF4;
  --shadow: rgba(58, 33, 64, 0.16);
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--lilac-900);
  font-variation-settings: "opsz" 40;
}

h1 {
  font-size: clamp(2.05rem, 7vw, 3.9rem);
}

h2 {
  font-size: clamp(1.75rem, 5.4vw, 3rem);
}

h3 {
  font-size: clamp(1.18rem, 3.4vw, 1.5rem);
  line-height: 1.16;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

::selection {
  background: var(--lilac-300);
  color: var(--lilac-900);
}

:focus-visible {
  outline: 3px solid var(--lilac-700);
  outline-offset: 3px;
  border-radius: 6px;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
