:root {
  --ink: #080808;
  --paper: #f6f4f1;
  --lilac: #9d88e7;
  --plum: #5d4b9b;
  --mist: #ded7f7;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  background-color: var(--paper);
}

.lila-page {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 94% 7%, rgba(157, 136, 231, .24) 0, rgba(157, 136, 231, .24) 150px, transparent 151px),
    var(--paper);
}

.display {
  font-family: "Fraunces", serif;
}

.focus-ring:focus-visible {
  outline: 3px solid var(--lilac);
  outline-offset: 4px;
}

.logo-frame {
  display: inline-flex;
  align-items: center;
  transition: transform .25s ease;
}

.logo-frame:hover {
  transform: rotate(-2deg) scale(1.02);
}

.hero-photo {
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 180px 180px 28px 28px;
  box-shadow: 12px 12px 0 var(--ink);
  position: relative;
}

.hero-photo::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -25%;
  width: 48%;
  aspect-ratio: 1;
  border: 3px solid var(--lilac);
  border-radius: 50%;
  pointer-events: none;
}

.pillar-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.pillar-card:hover {
  transform: translateY(-7px) rotate(-.45deg);
  box-shadow: 10px 10px 0 var(--ink);
}

.reveal { animation: reveal .7s both cubic-bezier(.2,.8,.2,1); }
.reveal-delay { animation: reveal .7s .14s both cubic-bezier(.2,.8,.2,1); }
.reveal-delay-2 { animation: reveal .7s .25s both cubic-bezier(.2,.8,.2,1); }

@keyframes reveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-status[hidden] { display: none; }
input, textarea, select { font: inherit; }

.activity-item + .activity-item {
  border-top: 1px solid rgba(8, 8, 8, .18);
}