@charset "UTF-8";
@font-face {
  font-family: Quicksand;
  src: url("/assets/fonts/quicksand-variable.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: Nunito Sans;
  src: url("/assets/fonts/nunito-sans-variable.ttf") format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: Author;
  src: url("/assets/fonts/author-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Playwrite US Trad';
  src: url("/assets/fonts/playwrite-variable.ttf") format("truetype");
  font-weight: 100 400;
  font-style: normal;
  font-display: swap; }
@keyframes scrollcue-zoomin-out {
  0%, 100% {
    transform: scale(1); }
  50% {
    transform: scale(2); } }
:root {
  --plum:#2a062c;
  --purple:#674b6e;
  --indigo:#51436d;
  --rose:#d79ba7;
  --peach:#ffded4;
  --ivory:#f8f5f2;
  --blue:#d9e5f1;
  --ink:#311b35;
  --white:#fff;
  --shell:1160px;
  --radius:27px; }

* {
  box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font: 400 21.333px/1.4 'Nunito Sans', sans-serif;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 10;
  -webkit-font-smoothing: antialiased; }
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: .17;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E"); }

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

a {
  color: inherit;
  text-underline-offset: 4px; }

button, input, textarea {
  font: inherit; }

h1, h2, h3, p {
  margin-top: 0; }

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  padding: .7rem 1rem;
  background: var(--plum);
  color: #fff;
  transform: translateY(-200%); }
  .skip-link:focus {
    transform: none; }

.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(30px, calc((100vw - var(--shell))/2));
  background: var(--ivory);
  position: relative;
  z-index: 50; }

.brand img {
  width: 142px;
  height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font: 600 20px/1.2 Quicksand, sans-serif; }
  .site-nav a {
    text-decoration: none; }
    .site-nav a:not(.nav-button):hover {
      text-decoration: underline; }

.nav-button, .pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  font: 700 18.667px/1.2 Quicksand, sans-serif;
  padding: 12px 22px;
  transition: transform 0.2s, background 0.2s; }

.nav-button:hover, .pill-button:hover {
  background: var(--plum);
  transform: translateY(-1px); }

.menu-button {
  display: none; }

.page-shell {
  width: min(var(--shell), calc(100% - 64px));
  margin-inline: auto; }

.centered {
  text-align: center; }

.section-kicker {
  margin-bottom: 24px;
  color: var(--purple);
  font: 400 18.667px/1.2 Author, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.142em; }
  .section-kicker::before {
    content: "✸";
    color: var(--purple);
    margin-right: 10px;
    font-size: 1em; }

h1, h2 {
  font: 500 74.014px/1.07 Quicksand, sans-serif;
  letter-spacing: normal;
  color: var(--plum); }

h1 em, h2 em {
  font: 400 1em/1.07 'Playwrite US Trad', cursive;
  color: var(--purple);
  font-style: normal;
  white-space: nowrap; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 410px;
  align-items: center;
  gap: 95px;
  min-height: 675px;
  padding: 70px max(45px, calc((100vw - var(--shell))/2)) 100px; }

.hero-copy {
  max-width: 620px; }
  .hero-copy h1 {
    font-size: 74.014px;
    margin-bottom: 28px; }
  .hero-copy > p:not(.section-kicker) {
    max-width: 560px;
    margin-bottom: 25px; }
  .hero-copy small {
    display: block;
    margin-top: 12px;
    color: #756d75;
    font-size: 17.333px; }

.image-frame {
  overflow: hidden;
  border-radius: 18px; }
  .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.hero-image {
  height: 520px; }
  .hero-image img {
    object-position: center 38%; }

.scroll-cue {
  position: absolute;
  left: calc(100vw / 2);
  bottom: 45px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .2em;
  font: 400 16px Author, sans-serif; }
  .scroll-cue span {
    display: block;
    text-align: center;
    margin-top: 7px;
    font-size: 16px;
    transform-origin: center;
    will-change: transform;
    animation-name: scrollcue-zoomin-out;
    animation-duration: 3s;
    animation-iteration-count: infinite; }

.pain-section {
  position: relative;
  background: var(--peach);
  padding: 150px 0 170px; }

.hero-wave {
  position: absolute;
  z-index: 1;
  top: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 74px;
  pointer-events: none; }
  .hero-wave path {
    fill: var(--ivory); }

.pain-section > .page-shell {
  position: relative;
  z-index: 2; }
.pain-section h2 {
  font-size: 74.014px;
  margin-bottom: 70px; }
  .pain-section h2 em {
    font-size: 1em; }

.wave-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 45px), 76% calc(100% - 22px), 51% calc(100% - 50px), 25% calc(100% - 20px), 0 calc(100% - 55px)); }

.wave-top {
  padding-top: 150px;
  clip-path: polygon(0 45px, 24% 18px, 50% 50px, 75% 20px, 100% 48px, 100% 100%, 0 100%); }

.card-grid {
  display: grid;
  gap: 20px; }

.card-grid-three {
  grid-template-columns: repeat(3, 1fr); }

.card-grid-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr; }

.card-grid-two {
  grid-template-columns: repeat(2, 1fr); }

.soft-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 27px 25px;
  min-height: 200px; }
  .soft-card > span {
    color: var(--purple); }
  .soft-card h3 {
    margin: 15px 0 12px;
    color: var(--plum);
    font: 700 16px/1.3 'Nunito Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.142em; }
  .soft-card p {
    margin: 0;
    font-size: 17.333px;
    line-height: 1.45; }

.photo-quote {
  min-height: 475px;
  display: grid;
  place-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff; }
  .photo-quote::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(42, 6, 44, 0.65); }
  .photo-quote > div {
    position: relative;
    z-index: 3; }

.peach-photo-wave {
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 78px;
  pointer-events: none; }
  .peach-photo-wave path {
    fill: var(--peach); }

.photo-quote h2 {
  color: #fff;
  font-size: 56px;
  margin: 0 0 50px; }
  .photo-quote h2 em {
    color: #fff;
    font-size: 1em; }
.photo-quote p {
  font: 400 18.667px/1.2 Author, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.142em; }

.photo-quote-one {
  background-image: url("/assets/images/pastel-flatlay.jpg"); }

.photo-quote-two {
  background-image: url("/assets/images/pens-flatlay.jpg"); }

.why-section, .about-section, .audience-section, .principles-section {
  display: grid;
  grid-template-columns: 1fr 465px;
  align-items: center;
  gap: 105px;
  padding-top: 125px;
  padding-bottom: 125px; }

.why-copy {
  padding-left: 35px; }
  .why-copy h2 {
    font-size: 74.014px;
    margin-bottom: 28px; }

.about-copy h2, .audience-copy h2, .principles-copy h2 {
  font-size: 74.014px;
  margin-bottom: 28px; }

.why-copy > p:not(.section-kicker) {
  max-width: 570px;
  font-weight: 500; }

.why-image {
  height: 645px; }

.promise-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 30px; }
  .promise-list li {
    position: relative;
    padding: 0 0 17px 28px;
    font-size: 20px; }
    .promise-list li::before {
      content: "✸";
      position: absolute;
      left: 0;
      color: var(--purple); }
  .promise-list strong {
    color: var(--plum); }

.services-section {
  position: relative;
  background: var(--blue);
  padding-bottom: 0;
  overflow: hidden;
  padding-top: 75px; }
  .services-section .page-shell {
    padding-bottom: 120px; }
  .services-section h2 {
    font-size: 74.014px;
    margin-bottom: 62px; }
  .services-section .card-grid {
    position: relative;
    z-index: 2; }
  .services-section .soft-card {
    min-height: 245px; }

.services-flower {
  position: absolute;
  left: 5%;
  top: 150px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 200px;
  line-height: 1; }

.values-ribbon {
  display: flex;
  justify-content: center;
  gap: 75px;
  background: var(--purple);
  color: #fff;
  padding: 22px 30px;
  font: 400 26.667px/1.2 'Playwrite US Trad', cursive; }

.about-section {
  grid-template-columns: 1fr 480px; }

.about-copy {
  padding-left: 30px; }
  .about-copy p:not(.section-kicker, .signature) {
    max-width: 590px;
    font-size: 20px;
    font-weight: 500; }

.about-image {
  height: 610px; }

.signature {
  font: 400 26.667px/1.2 'Playwrite US Trad', cursive;
  color: var(--purple);
  margin-top: 25px; }

.audience-section {
  grid-template-columns: 1fr 360px; }

.audience-copy h2 {
  font-size: 74.014px; }
  .audience-copy h2 em {
    font-size: .898em; }
.audience-copy .card-grid {
  margin: 38px 0 28px; }
.audience-copy .soft-card {
  min-height: 165px;
  padding: 23px; }
  .audience-copy .soft-card p {
    font-size: 17.333px; }

.audience-image {
  height: 690px; }

.process-section {
  background: var(--blue);
  padding-bottom: 135px;
  padding-top: 75px; }
  .process-section h2 {
    font-size: 74.014px;
    margin-bottom: 45px; }

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0 0 38px;
  padding: 0;
  border: 1px solid rgba(42, 6, 44, 0.2);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.75); }
  .process-grid li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 36px 40px;
    min-height: 190px;
    color: var(--indigo); }
    .process-grid li:nth-child(odd) {
      border-right: 1px solid rgba(42, 6, 44, 0.2); }
    .process-grid li:nth-child(-n+2) {
      border-bottom: 1px solid rgba(42, 6, 44, 0.2); }
  .process-grid > li > span {
    font: 500 52px/1 Quicksand, sans-serif;
    color: var(--purple); }
  .process-grid h3 {
    font: 700 16px/1.2 'Nunito Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.142em; }
  .process-grid p {
    font-size: 17.333px;
    margin: 0; }

.principles-section {
  grid-template-columns: 1fr 405px; }

.principles-copy {
  padding-left: 30px; }

.principles-list {
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
  max-width: 600px; }
  .principles-list li {
    margin-bottom: 24px; }
  .principles-list h3 {
    font: 400 26.667px/1.2 'Playwrite US Trad', cursive;
    color: var(--purple);
    margin: 0 0 7px; }
  .principles-list p {
    font-size: 20px;
    font-weight: 500;
    margin: 0; }

.principles-images {
  display: grid;
  gap: 20px; }
  .principles-images img {
    width: 100%;
    height: 275px;
    object-fit: cover;
    border-radius: 15px; }
    .principles-images img:first-child {
      width: 72%;
      height: 330px;
      justify-self: end; }

.testimonial-section {
  background: var(--peach);
  padding: 110px 0 125px; }
  .testimonial-section h2 {
    font-size: 74.014px; }
  .testimonial-section blockquote {
    max-width: 520px;
    margin: 40px auto 0;
    padding: 38px 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px; }
    .testimonial-section blockquote p {
      margin: 0;
      font-size: 21.333px;
      font-weight: 400; }

.contact-section {
  background: var(--plum);
  color: #fff;
  padding: 100px 0 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 475px;
  gap: 100px;
  align-items: start;
  padding-bottom: 95px; }

.contact-copy .section-kicker {
  color: #d8aac0; }
.contact-copy h2 {
  color: #fff;
  font-size: 69.839px; }
  .contact-copy h2 em {
    color: #e0b1c6;
    font-size: .898em; }
.contact-copy > p:not(.section-kicker) {
  max-width: 540px;
  font-weight: 500; }

.contact-links {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  font: 800 16px/1.2 'Nunito Sans', sans-serif; }

.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 27px;
  color: var(--ink);
  font-size: 16px; }
  .contact-form-card h3 {
    font: 400 25px Author;
    margin: 0 0 20px; }

.field {
  margin-bottom: 13px; }
  .field label {
    display: block;
    font: 600 10px Quicksand;
    margin-bottom: 4px; }
  .field input {
    width: 100%;
    border: 1px solid #d8d1d8;
    border-radius: 4px;
    padding: 9px 10px;
    background: #fff; }
  .field textarea {
    width: 100%;
    border: 1px solid #d8d1d8;
    border-radius: 4px;
    padding: 9px 10px;
    background: #fff;
    resize: vertical; }

.field-validation-error, .validation-summary-errors {
  display: block;
  color: #9c1734;
  font-size: 11px;
  margin-top: 3px; }

.validation-summary-valid {
  display: none; }

.validation-summary-errors ul {
  margin: 0 0 12px;
  padding-left: 18px; }

.consent-field {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
  margin: 16px 0 4px; }
  .consent-field input {
    margin-top: 4px; }
  .consent-field label {
    font-size: 9px;
    line-height: 1.35; }

.contact-form-card button {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 17px;
  padding: 11px;
  border: 0;
  border-radius: 5px;
  background: var(--purple);
  color: #fff;
  font: 700 11px Quicksand;
  cursor: pointer; }

.honeypot {
  position: absolute;
  left: -10000px; }

.form-success {
  padding: 50px 20px;
  text-align: center;
  background: var(--blue);
  border-radius: 12px; }
  .form-success strong {
    font: 400 28px Author; }
  .form-success p {
    margin: 10px 0 0; }

.home-footer {
  display: grid;
  grid-template-columns: 1.6fr .7fr .7fr;
  gap: 80px;
  padding-top: 60px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.25); }
  .home-footer > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 16px; }
  .home-footer h3 {
    font: 700 14.667px/1.2 Quicksand, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.175em; }
  .home-footer a {
    text-decoration: none; }

.footer-brand img {
  filter: brightness(0) invert(1);
  width: 150px;
  margin-bottom: 17px; }
.footer-brand p {
  max-width: 330px;
  font: 400 16px/1.4 Author, sans-serif; }

.copyright {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  margin: 20px 0 0;
  font: 400 13.614px/1.2 Author, sans-serif;
  text-align: center;
  opacity: 0.7; }

.interior .site-header {
  border-bottom: 1px solid rgba(42, 6, 44, 0.1); }

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px 130px; }

.back-link {
  display: inline-block;
  margin-bottom: 55px;
  font: 700 12px Quicksand;
  text-decoration: none; }

.legal-page h1 {
  font-size: 72px; }

.legal-lead {
  font: 600 16px Quicksand;
  color: var(--purple);
  margin-bottom: 55px; }

.legal-page section {
  padding: 28px 0;
  border-top: 1px solid rgba(42, 6, 44, 0.18); }
.legal-page h2 {
  font: 600 21px Quicksand; }
.legal-page address {
  font-style: normal; }
.legal-page a {
  color: var(--purple); }

.interior-footer {
  display: flex;
  gap: 25px;
  justify-content: center;
  padding: 30px;
  background: var(--blue);
  font-size: 12px; }

.coming-soon {
  min-height: 70vh;
  max-width: 900px;
  margin: auto;
  padding: 100px 30px; }
  .coming-soon h1 {
    font-size: 70px; }

@media (max-width: 980px) {
  .page-shell {
    width: min(100% - 42px, var(--shell)); }

  .site-header {
    height: 72px;
    padding: 0 22px; }

  .brand img {
    width: 130px; }

  .menu-button {
    display: block;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent; }
    .menu-button span {
      display: block;
      width: 23px;
      height: 1px;
      background: var(--plum);
      margin: 7px auto; }
    .menu-button b {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0); }

  .site-nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(42, 6, 44, 0.18); }
    .site-nav.open {
      display: flex; }
    .site-nav a {
      text-align: center;
      padding: 8px; }

  .hero {
    grid-template-columns: 1fr 330px;
    gap: 40px;
    padding: 60px 30px 90px; }

  .hero-copy h1 {
    font-size: 60px; }

  .hero-image {
    height: 470px; }

  .why-section, .about-section, .audience-section, .principles-section {
    gap: 45px;
    grid-template-columns: 1fr 40%;
    padding-block: 95px; }

  .card-grid-four {
    grid-template-columns: repeat(2, 1fr); }

  .services-section .soft-card {
    min-height: 200px; }

  .contact-grid {
    grid-template-columns: 1fr 43%;
    gap: 45px; }

  .contact-copy h2 {
    font-size: 55px; } }
@media (max-width: 700px) {
  html {
    scroll-padding-top: 72px; }

  h1, h2 {
    font-size: 47px; }

  .section-kicker {
    margin-bottom: 18px; }

  .hero {
    display: flex;
    flex-direction: column;
    padding: 55px 21px 80px;
    min-height: 0;
    align-items: stretch; }

  .hero-copy h1 {
    font-size: 55px; }
  .hero-copy > p:not(.section-kicker) {
    font-size: 15px; }

  .hero-image {
    height: 470px;
    order: -1; }

  .scroll-cue {
    display: none; }

  .pain-section {
    padding: 110px 0 125px; }

  .hero-wave {
    height: 54px; }

  .peach-photo-wave {
    height: 52px; }

  .pain-section h2, .services-section h2, .process-section h2, .testimonial-section h2 {
    font-size: 48px; }

  .card-grid-three, .card-grid-four, .card-grid-two {
    grid-template-columns: 1fr; }

  .soft-card {
    min-height: 0; }

  .photo-quote {
    min-height: 380px; }
    .photo-quote h2 {
      width: calc(100vw - 32px);
      font-size: clamp(29px, 9.2vw, 37px); }

  .why-section, .about-section, .audience-section, .principles-section {
    display: flex;
    flex-direction: column;
    padding-block: 85px;
    gap: 45px; }

  .why-copy, .about-copy, .principles-copy {
    padding-left: 0; }

  .why-copy h2, .about-copy h2, .audience-copy h2, .principles-copy h2 {
    font-size: 50px; }

  .why-image, .about-image, .audience-image {
    width: 100%;
    height: 520px; }

  .services-section {
    padding-top: 120px; }
    .services-section .page-shell {
      padding-bottom: 90px; }

  .values-ribbon {
    gap: 25px;
    justify-content: flex-start;
    overflow: hidden;
    font-size: 12px; }
    .values-ribbon span {
      white-space: nowrap; }

  .about-section .about-image, .audience-section .audience-image {
    order: -1; }

  .process-grid {
    grid-template-columns: 1fr; }
    .process-grid li:nth-child(n) {
      border-right: 0;
      border-bottom: 1px solid rgba(42, 6, 44, 0.2); }
    .process-grid li:last-child {
      border-bottom: 0; }

  .principles-images {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    align-items: end; }
    .principles-images img {
      width: 100%;
      height: 260px; }
      .principles-images img:first-child {
        width: 100%;
        height: 260px; }

  .testimonial-section {
    padding: 85px 0; }
    .testimonial-section blockquote {
      padding: 30px 25px; }

  .contact-section {
    padding-top: 80px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-bottom: 70px; }

  .contact-copy h2 {
    font-size: 52px; }

  .contact-links {
    flex-direction: column;
    gap: 8px; }

  .home-footer {
    grid-template-columns: 1fr 1fr;
    gap: 40px; }

  .footer-brand, .copyright {
    grid-column: 1 / -1; }

  .wave-top {
    clip-path: polygon(0 25px, 25% 10px, 50% 28px, 75% 12px, 100% 25px, 100% 100%, 0 100%); }

  .wave-bottom {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), 75% calc(100% - 12px), 50% calc(100% - 28px), 25% calc(100% - 10px), 0 calc(100% - 25px)); } }
@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 47px; }

  .hero-image {
    height: 400px; }

  .why-copy h2, .about-copy h2, .audience-copy h2, .principles-copy h2, .contact-copy h2 {
    font-size: 44px; }

  .process-grid li {
    padding: 28px 23px; }

  .contact-form-card {
    padding: 20px; }

  .home-footer {
    grid-template-columns: 1fr; }
    .home-footer > div {
      grid-column: 1; }

  .principles-images {
    grid-template-columns: 1fr; }
    .principles-images img {
      height: 300px; }
      .principles-images img:first-child {
        height: 300px; } }
.motion-character {
  display: inline-block;
  white-space: pre; }

.motion-ready [data-motion="blur-pop"]:not(.motion-active, .motion-complete), .motion-ready [data-motion="rise-fade"]:not(.motion-active, .motion-complete), .motion-ready [data-motion="slide-right"]:not(.motion-active, .motion-complete) {
  opacity: 0; }
.motion-ready [data-motion="card-up"]:not(.motion-active, .motion-complete) {
  opacity: 0;
  transform: translateY(100%); }
.motion-ready [data-motion="characters"]:not(.motion-active, .motion-complete) .motion-character {
  opacity: 0; }
.motion-ready [data-motion="blur-pop"].motion-active:not(.motion-complete) {
  animation: motion-blur-pop 600ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.motion-ready [data-motion="rise-fade"].motion-active:not(.motion-complete) {
  animation: motion-rise-fade 1000ms cubic-bezier(0.2, 0.65, 0.25, 1) both; }
.motion-ready [data-motion="card-up"].motion-active:not(.motion-complete) {
  animation: motion-card-up 500ms cubic-bezier(0.16, 1, 0.3, 1) both; }
.motion-ready [data-motion="slide-right"].motion-active:not(.motion-complete) {
  animation: motion-slide-right 550ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.motion-ready [data-motion="characters"].motion-active:not(.motion-complete) .motion-character {
  animation: motion-character 50ms linear both;
  animation-delay: calc(var(--character-index) * 35ms); }

@keyframes motion-blur-pop {
  from {
    opacity: 0;
    transform: scale(0.75);
    filter: blur(24px); }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0); } }
@keyframes motion-rise-fade {
  from {
    opacity: 0;
    transform: translateY(80px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes motion-card-up {
  from {
    transform: translateY(100%); }
  to {
    transform: translateY(0); } }
@keyframes motion-slide-right {
  from {
    opacity: 0;
    transform: translateX(-80px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@keyframes motion-character {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto; }

  .nav-button, .pill-button, .scroll-cue span {
    animation: none;
    transition: none; }

  [data-motion], .motion-character {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important; } }
