*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-base);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--sp-24);
  color: var(--c-text);
  font-weight: var(--fw-bold);
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-h1-fluid);
  line-height: 1.11;
}

h2 {
  font-size: var(--fs-h2-fluid);
  line-height: 1.24;
}

h3 {
  font-size: var(--fs-h3-fluid);
  line-height: 1.22;
}

h4 {
  font-size: var(--fs-h4-fluid);
  line-height: 1.25;
}

h5 {
  font-size: var(--fs-subhead);
  line-height: var(--lh-subhead);
}

h6 {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

p {
  margin: 0 0 var(--sp-20);
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

a:hover {
  opacity: 0.75;
}

:focus-visible {
  outline: 3px solid var(--c-focus);
  outline-offset: 3px;
  border-radius: 2px;
}

.section--bg-purple :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--c-white);
}

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

svg {
  fill: currentColor;
}

ul, ol {
  margin: 0 0 var(--sp-20);
  padding-left: var(--sp-24);
}

li {
  margin-bottom: var(--sp-8);
}

blockquote {
  margin: var(--sp-32) 0;
  padding-left: var(--sp-24);
  border-left: var(--border-width) solid var(--c-lavender);
  font-size: var(--fs-lead-fluid);
  line-height: var(--lh-lead);
}

hr {
  height: 1px;
  margin: var(--sp-48) 0;
  border: 0;
  background: currentColor;
  opacity: 0.25;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: var(--sp-12) var(--sp-16);
  border-bottom: 1px solid var(--c-lavender);
  text-align: left;
}

th {
  font-weight: var(--fw-bold);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

.t-h1 {
  font-size: var(--fs-h1-fluid);
  line-height: 1.11;
  font-weight: var(--fw-bold);
}

.t-h2 {
  font-size: var(--fs-h2-fluid);
  line-height: 1.24;
  font-weight: var(--fw-bold);
}

.t-h3 {
  font-size: var(--fs-h3-fluid);
  line-height: 1.22;
  font-weight: var(--fw-bold);
}

.t-h4 {
  font-size: var(--fs-h4-fluid);
  line-height: 1.25;
  font-weight: var(--fw-bold);
}

.t-subhead {
  font-size: var(--fs-subhead);
  line-height: var(--lh-subhead);
  font-weight: var(--fw-bold);
}

.t-lead {
  font-size: var(--fs-lead-fluid);
  line-height: var(--lh-lead);
}

.t-body {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.t-small {
  font-size: var(--fs-small);
  line-height: var(--lh-small);
  font-family: var(--ff-secondary);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: var(--sp-8);
  left: var(--sp-8);
  z-index: var(--z-modal);
  padding: var(--sp-12) var(--sp-20);
  background: var(--c-purple);
  color: var(--c-white);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-button);
  transform: translateY(-200%);
  transition: transform var(--duration) var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: calc(var(--container-narrow) + var(--gutter) * 2);
}

.container--text {
  max-width: calc(var(--container-text) + var(--gutter) * 2);
}

.container--full {
  max-width: none;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section__inner {
  position: relative;
  z-index: var(--z-base);
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.section__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--bg-default {
  background: var(--c-bg);
}

.section--bg-white {
  background: var(--c-white);
}

.section--bg-lavender {
  background: var(--c-lavender);
}

.section--bg-purple {
  background: var(--c-purple);
  color: var(--c-text-invert);
}

.section--bg-gradient {
  background: linear-gradient(270deg, var(--c-purple-mid) 0%, var(--c-lavender) 100%);
}

.section--bg-purple :is(h1, h2, h3, h4, h5, h6) {
  color: var(--c-text-invert);
}

.section--space-none {
  padding-block: 0;
}

.section--flush {
  padding-block: 0;
}

.section--space-tight {
  padding-block: var(--section-space-tight);
}

.section--space-loose {
  padding-block: var(--section-space-loose);
}

.section--space-top-only {
  padding-bottom: 0;
}

.section--space-bottom-only {
  padding-top: 0;
}

.section--width-narrow .section__inner {
  max-width: calc(var(--container-narrow) + var(--gutter) * 2);
}

.section--width-text .section__inner {
  max-width: calc(var(--container-text) + var(--gutter) * 2);
}

.section--width-full .section__inner {
  max-width: none;
  padding-inline: 0;
}

.section-header {
  margin-bottom: var(--sp-48);
}

.section-header--center {
  margin-inline: auto;
  max-width: 800px;
  text-align: center;
}

.section-header--right {
  text-align: right;
}

.section-header__eyebrow {
  margin-bottom: var(--sp-12);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-header__heading {
  margin-bottom: var(--sp-16);
}

.section-header__heading:last-child {
  margin-bottom: 0;
}

.section-header__intro {
  font-size: var(--fs-lead-fluid);
  line-height: var(--lh-lead);
}

.grid {
  display: grid;
  gap: var(--sp-40);
  grid-template-columns: repeat(var(--grid-cols, 1), minmax(0, 1fr));
}

@media (min-width: 640px) {
  .grid--2, .grid--3, .grid--4 {
    --grid-cols: 2;
  }
}
@media (min-width: 1024px) {
  .grid--3 {
    --grid-cols: 3;
  }
  .grid--4 {
    --grid-cols: 4;
  }
}
.flow > * + * {
  margin-top: var(--flow-space, var(--sp-20));
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.site-main {
  flex: 1 0 auto;
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: var(--z-base);
}

.section--bg-default {
  background: transparent;
}

.section--bg-purple .button--primary,
.site-footer .button--primary {
  background: var(--c-white);
  color: var(--c-purple);
}

.site-footer {
  background: var(--c-purple);
  color: var(--c-text-invert);
}

.site-footer :is(h1, h2, h3, h4) {
  color: var(--c-text-invert);
}

.footer-contact {
  padding-block: var(--section-space) var(--section-space-tight);
}

.footer-contact__heading {
  margin-bottom: var(--sp-24);
}

.footer-contact__intro {
  max-width: 80ch;
  margin-bottom: var(--sp-48);
}

.footer-contact__lines {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-32);
  margin-bottom: var(--sp-40);
}

@media (min-width: 1280px) {
  .footer-contact__lines {
    flex-wrap: nowrap;
  }
  .footer-contact__line--chat {
    min-width: 0;
  }
}
.footer-contact__line + .footer-contact__line {
  padding-left: var(--sp-32);
  border-left: var(--border-hair) solid var(--c-cream);
}

.footer-contact__phone,
.footer-contact__chat {
  display: block;
  font-weight: var(--fw-bold);
  line-height: 1.22;
  text-decoration: none;
}

.footer-contact__phone {
  font-size: var(--fs-h3-fluid);
}

.footer-contact__chat {
  font-size: var(--fs-h4-fluid);
}

.footer-contact__region {
  margin: var(--sp-4) 0 0;
  font-size: var(--fs-lead);
}

.footer-accreditations {
  padding-block: var(--sp-48);
}

.footer-accreditations__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--sp-32), 5vw, var(--sp-80));
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-accreditations__item {
  margin: 0;
}

.footer-accreditations__logo {
  max-height: 120px;
  width: auto;
  object-fit: contain;
}

.footer-land {
  padding-block: var(--sp-48);
  border-top: var(--border-hair) solid rgba(247, 237, 235, 0.35);
}

.footer-land__heading {
  margin-bottom: var(--sp-20);
}

.footer-land__body {
  max-width: 90ch;
}

.footer-bottom {
  padding-block: var(--sp-32);
  border-top: var(--border-hair) solid rgba(247, 237, 235, 0.35);
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-24);
}

.footer-bottom__logo img {
  width: 164px;
  height: auto;
}

.footer-bottom__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-12);
}

.social-list {
  display: flex;
  gap: var(--sp-20);
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-list__item {
  margin: 0;
}

.social-list__link {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--c-white);
}

.social-list__icon {
  width: 20px;
  height: 20px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--fs-small);
  font-family: var(--ff-secondary);
}

.footer-legal li {
  margin: 0;
}

.footer-legal li + li::before {
  content: "/ ";
  opacity: 0.7;
}

.footer-legal a {
  text-decoration: none;
}

@media (max-width: 720px) {
  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom__meta {
    align-items: flex-start;
  }
  .footer-contact__line + .footer-contact__line {
    padding-left: 0;
    border-left: 0;
  }
}
.search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 220px;
  max-width: 260px;
  border: var(--border-width) solid var(--c-purple);
  border-radius: 0;
  background: var(--c-white);
}

.search-form__icon {
  display: flex;
  padding-left: var(--sp-12);
  color: var(--c-purple);
}

.search-form__icon svg {
  width: 16px;
  height: 16px;
}

.search-form__input {
  flex: 1;
  min-width: 0;
  padding: var(--sp-12);
  border: 0;
  background: none;
  font-size: var(--fs-body);
}

.search-form__input:focus {
  outline: none;
}

.search-form:focus-within {
  outline: 3px solid var(--c-focus);
  outline-offset: 2px;
}

.search-form__submit {
  padding: var(--sp-12);
  border: 0;
  background: none;
  cursor: pointer;
}

.site-header {
  position: relative;
  z-index: var(--z-header);
}

.site-header__main {
  background: var(--c-white);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-32);
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding: var(--sp-20) var(--gutter);
}

.site-logo {
  display: block;
  flex: none;
}

.site-logo__image {
  width: clamp(140px, 14vw, 196px);
  height: auto;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-24);
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(var(--sp-12), 1.8vw, var(--sp-24));
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list li {
  margin: 0;
}

.site-nav__list a {
  color: var(--c-purple);
  font-weight: var(--fw-bold);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_ancestor > a {
  text-decoration: underline;
}

.site-nav__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-8);
}

.site-nav__lang-slot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  min-height: 22px;
  max-width: 100%;
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
}
.site-nav__lang-slot a + a::before {
  content: "/";
  margin: 0 2px;
  color: #666; /* Adjust color to match your theme */
  pointer-events: none;
}

.site-nav__lang {
  font-weight: var(--fw-bold);
  color: var(--c-purple);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__lang-slot select {
  padding: var(--sp-4) var(--sp-8);
  background: var(--c-white);
  border: var(--border-hair) solid var(--c-purple);
  border-radius: var(--radius-button);
  color: var(--c-purple);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
}

.site-nav__lang-slot a {
  color: var(--c-purple);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__lang-slot img {
  display: inline-block;
}

.site-nav__lang-slot .goog-te-gadget {
  font-size: 0;
  color: transparent;
}

.site-nav__lang-slot .goog-te-gadget > span {
  display: none;
}

.site-nav__lang-slot .goog-logo-link {
  display: none !important;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  padding: var(--sp-12);
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle__bars {
  display: block;
  width: 26px;
}

.nav-toggle__bars span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--c-purple);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

.nav-toggle[aria-expanded=true] .nav-toggle__bars span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded=true] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded=true] .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-20);
    padding: var(--sp-24) var(--gutter) var(--sp-32);
    background: var(--c-white);
    border-top: var(--border-hair) solid var(--c-lavender);
    box-shadow: 0 12px 24px rgba(59, 31, 115, 0.12);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-16);
  }
  .site-nav__list a {
    display: block;
    padding: var(--sp-8) 0;
    font-size: var(--fs-lead);
  }
  .site-nav__actions {
    align-items: stretch;
  }
  .site-nav__lang-slot {
    justify-content: flex-start;
  }
  .search-form {
    max-width: none;
  }
}
.utility-bar {
  background: var(--c-lavender);
  font-size: var(--fs-body);
}

.utility-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0;
  min-height: 55px;
}

.utility-bar__lines {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-8);
  flex: 1;
  margin: 0;
  padding: var(--sp-8) var(--sp-24) var(--sp-8) 0;
  justify-content: flex-end;
  color: var(--c-purple);
}

.utility-bar__line {
  white-space: nowrap;
}

.utility-bar__region {
  font-weight: var(--fw-regular);
}

.utility-bar__phone {
  font-weight: var(--fw-bold);
  text-decoration: none;
}

.utility-bar__divider {
  opacity: 0.6;
}

.utility-bar__chat,
.utility-bar__exit {
  display: flex;
  align-items: center;
  padding: var(--sp-16) var(--sp-24);
  font-weight: var(--fw-bold);
  text-align: center;
  text-decoration: none;
}

.utility-bar__chat {
  background: var(--c-purple);
  color: var(--c-white);
}

.utility-bar__exit {
  background: var(--c-yellow);
  color: var(--c-purple);
}

.utility-bar__chat:hover,
.utility-bar__exit:hover {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .utility-bar__inner {
    flex-wrap: wrap;
  }
  .utility-bar__lines {
    order: 3;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .utility-bar__chat,
  .utility-bar__exit {
    flex: 1;
    justify-content: center;
    font-size: var(--fs-small);
  }
}
.archive__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: var(--sp-24);
  margin-bottom: var(--sp-32);
}

.filter-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.filter-group__label {
  display: block;
  margin-bottom: var(--sp-8);
  padding: 0;
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-group__options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
}

.filter-pill {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.filter-pill__input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.filter-pill__label {
  padding: var(--sp-8) var(--sp-20);
  background: var(--c-white);
  border: var(--border-hair) solid var(--c-purple);
  border-radius: var(--radius-pill);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--c-purple);
  transition: background-color var(--duration) var(--ease), color var(--duration) var(--ease);
}

.filter-pill__input:checked + .filter-pill__label {
  background: var(--c-purple);
  color: var(--c-white);
}

.filter-pill__input:focus-visible + .filter-pill__label {
  outline: 3px solid var(--c-focus);
  outline-offset: 3px;
}

.filter-pill:hover .filter-pill__label {
  background: var(--c-lavender-light);
}

.filter-pill__input:checked:hover + .filter-pill__label {
  background: var(--c-purple);
}

.filter-group__select,
.filter-group__search {
  padding: var(--sp-12) var(--sp-16);
  background: var(--c-white);
  border: var(--border-width) solid var(--c-purple);
  border-radius: var(--radius-button);
  font-size: var(--fs-body);
}

.archive__count {
  margin-bottom: var(--sp-24);
  font-size: var(--fs-small);
}

.archive__grid {
  margin-bottom: var(--sp-48);
  transition: opacity var(--duration) var(--ease);
}

.archive__empty {
  grid-column: 1/-1;
  font-size: var(--fs-lead);
  text-align: center;
}

.archive__more {
  text-align: center;
}

.archive.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

.js .archive__more .page-numbers,
.js .archive__apply {
  display: none;
}

.page-numbers {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-numbers li {
  margin: 0;
}

.page-numbers a,
.page-numbers span {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 var(--sp-12);
  border: var(--border-hair) solid var(--c-purple);
  border-radius: var(--radius-button);
  text-decoration: none;
  font-weight: var(--fw-bold);
}

.page-numbers .current {
  background: var(--c-purple);
  color: var(--c-white);
}

.no-results {
  padding-block: var(--sp-64);
  text-align: center;
}

.no-results__search {
  max-width: 420px;
  margin: var(--sp-24) auto 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  padding: var(--sp-15) var(--sp-40);
  border: 0;
  border-radius: var(--radius-button);
  font-family: var(--ff-base);
  font-size: var(--fs-button);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease), transform var(--duration-fast) var(--ease);
}

.button + .button {
  margin-left: var(--sp-16);
}

.button:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button--primary {
  background: var(--c-purple);
  color: var(--c-white);
}

.button--primary:hover {
  background: #2c1657;
}

.button--secondary {
  background: var(--c-lavender-light);
  color: var(--c-purple);
  border: var(--border-width) solid var(--c-purple);
  padding-block: calc(var(--sp-15) - var(--border-width));
}

.button--secondary:hover {
  background: var(--c-lavender);
}

.button--tertiary {
  background: var(--c-white);
  color: var(--c-purple);
  border: var(--border-hair) solid var(--c-purple);
  padding-block: calc(var(--sp-15) - var(--border-hair));
}

.button--tertiary:hover {
  background: var(--c-lavender-light);
}

.button--outline-invert {
  background: transparent;
  color: var(--c-white);
  border: var(--border-hair) solid var(--c-white);
  padding-block: calc(var(--sp-15) - var(--border-hair));
}

.button--outline-invert:hover {
  background: var(--c-white);
  color: var(--c-purple);
}

.button--text {
  padding: 0;
  background: none;
  color: var(--c-purple);
  font-size: var(--fs-body);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.button--text:hover {
  transform: none;
  opacity: 0.7;
}

.button__icon {
  width: 1em;
  height: 1em;
  flex: none;
}

@media (max-width: 480px) {
  .button {
    width: 100%;
  }
  .button + .button {
    margin-left: 0;
    margin-top: var(--sp-12);
  }
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--c-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  color: var(--c-text-card);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card__media {
  position: relative;
  margin: var(--sp-20) var(--sp-20) 0;
}

.card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.card--event {
  height: 100%;
}

.card--event .card__media {
  margin: var(--card-event-pad) var(--card-event-pad) 0;
}

.card--event .card__image {
  aspect-ratio: 637/302;
}

.card--event .card__body {
  padding: var(--sp-24) var(--card-event-pad) var(--card-event-pad);
}

.card--event .card__title {
  margin-bottom: var(--sp-4);
}

.card--event .card__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-32);
  margin-top: var(--sp-8);
}

.card--event .card__cta {
  margin-top: auto;
  padding-top: var(--sp-20);
  text-align: right;
}

@media (min-width: 640px) {
  .card--event .card__body {
    position: relative;
  }
  .card--event .card__cta {
    position: absolute;
    right: var(--card-event-pad);
    bottom: var(--card-event-pad);
    margin: 0;
    padding: 0;
  }
  .card--event .card__details {
    padding-right: 220px;
  }
}
.card__badge {
  position: absolute;
  top: var(--sp-12);
  left: var(--sp-12);
  margin: 0;
  padding: var(--sp-4) var(--sp-12);
  background: var(--c-purple);
  color: var(--c-white);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-pill);
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-12);
  padding: var(--sp-20);
}

.card__eyebrow {
  margin: 0;
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-purple);
}

.card__title {
  margin: 0;
  color: var(--c-purple);
}

.card__link {
  text-decoration: none;
}

.card__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.card__link:hover {
  opacity: 1;
  text-decoration: underline;
}

.card__summary {
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.card__meta {
  margin: 0;
  font-size: var(--fs-small);
  opacity: 0.8;
}

.card__details {
  margin: auto 0 0;
  padding: 0;
  display: grid;
  gap: var(--sp-12);
}

.card__detail {
  margin: 0;
}

.card__detail-label {
  margin: 0;
  font-size: var(--fs-subhead);
  font-weight: var(--fw-bold);
  line-height: var(--lh-subhead);
  color: var(--c-purple);
}

.card__detail-value {
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.card__detail-time {
  display: block;
}

.card__cta {
  margin: var(--sp-16) 0 0;
}

.card__cta .button {
  pointer-events: none;
}

.card--past {
  opacity: 0.85;
}

.entry-header {
  padding-block: var(--section-space-tight) var(--sp-32);
}

.entry-header__meta {
  display: flex;
  gap: var(--sp-16);
  align-items: center;
  font-size: var(--fs-small);
}

.entry-header__title {
  margin-bottom: var(--sp-20);
}

.entry-media {
  margin: 0 auto var(--sp-48);
}

.entry-media__image {
  width: 100%;
  border-radius: var(--radius-card);
}

.entry-content {
  padding-bottom: var(--section-space-tight);
}

.tag {
  padding: var(--sp-4) var(--sp-12);
  background: var(--c-lavender);
  border-radius: var(--radius-pill);
  font-weight: var(--fw-bold);
  color: var(--c-purple);
}

.wysiwyg > :first-child {
  margin-top: 0;
}

.wysiwyg > :last-child {
  margin-bottom: 0;
}

.wysiwyg--narrow {
  max-width: var(--container-text);
  margin-inline: auto;
}

.wysiwyg :is(h2, h3, h4) {
  margin-top: var(--sp-40);
}

.wysiwyg img {
  border-radius: var(--radius-card);
}

.wysiwyg a {
  font-weight: var(--fw-bold);
}

.error-page {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.error-page__code {
  margin: 0 0 var(--sp-8);
  font-size: clamp(64px, 12vw, 140px);
  font-weight: var(--fw-bold);
  line-height: 1;
  opacity: 0.35;
}

.error-page__heading {
  margin-bottom: var(--sp-20);
}

.error-page__search {
  max-width: 420px;
  margin: var(--sp-32) auto;
}

.error-page__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-16);
  margin: 0;
  padding: 0;
  list-style: none;
}

.error-page__links li {
  margin: 0;
}

.page-intro {
  padding-block: var(--section-space-tight);
}

.page-intro--center {
  text-align: center;
}

.page-intro--center .page-intro__body {
  margin-inline: auto;
}

.page-intro__title {
  margin-bottom: var(--sp-16);
}

.page-intro__body {
  max-width: 65ch;
}

.page-intro__search {
  margin-top: var(--sp-24);
  max-width: 420px;
}

.events-listing--carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  gap: var(--card-event-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  margin-inline: calc(50% - 50vw);
  padding-inline: max(var(--gutter), 50vw - var(--card-event-w) / 2);
  padding-block: var(--sp-8);
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__slide {
  flex: 0 0 min(100vw - var(--gutter) * 2, var(--card-event-w));
  scroll-snap-align: center;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: var(--z-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  translate: 0 -50%;
  background: none;
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--c-purple);
  cursor: pointer;
  transition: background-color var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

.carousel__arrow--prev {
  right: calc(50% + var(--card-event-w) / 2 + 20px);
}

.carousel__arrow--prev svg {
  transform: scaleX(-1);
}

.carousel__arrow--next {
  left: calc(50% + var(--card-event-w) / 2 + 20px);
}

.carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.55);
}

.carousel__arrow[disabled] {
  opacity: 0.25;
  cursor: default;
}

.carousel__arrow svg {
  width: 26px;
  height: 26px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: var(--sp-12);
  margin-top: var(--sp-32);
}

.carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: var(--c-white);
  border: 0;
  border-radius: var(--radius-pill);
  opacity: 0.6;
  cursor: pointer;
  transition: opacity var(--duration) var(--ease), background-color var(--duration) var(--ease);
}

.carousel__dot.is-active {
  background: var(--c-purple);
  opacity: 1;
}

.events-listing__cta {
  margin-top: var(--sp-40);
  text-align: center;
}

@media (max-width: 1100px) {
  .carousel__arrow {
    display: none;
  }
}
@media (max-width: 720px) {
  .carousel__track {
    gap: var(--sp-24);
  }
  .carousel__slide {
    flex-basis: min(88vw, var(--card-event-w));
  }
}
.counters {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.counter {
  margin: 0;
}

.counter__value {
  margin: 0 0 var(--sp-12);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--c-stat);
  font-variant-numeric: tabular-nums;
}

.counter__affix {
  font-size: 0.7em;
}

.counter__label {
  margin: 0;
  font-size: var(--fs-small);
  line-height: 1.4;
  max-width: 24ch;
  margin-inline: auto;
}

.counters__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-16);
  margin-top: var(--sp-48);
}

.counters__actions .button + .button {
  margin-left: 0;
}

.section--bg-purple .counter__value {
  color: var(--c-white);
}

.section {
  position: relative;
}

.section--decor > .section__inner {
  position: relative;
  z-index: 2;
}

.section__decor {
  --decor-stage: min(100%, var(--canvas));
  position: absolute;
  top: 0;
  left: calc(50% - var(--decor-stage) / 2 + var(--decor-stage) * var(--decor-left, 0));
  width: calc(var(--decor-stage) * var(--decor-width, 1));
  translate: 0 calc(var(--decor-shift, 0px) - var(--decor-lift, 0px));
  pointer-events: none;
  color: var(--c-purple);
  opacity: 0.45;
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 var(--decor-fade, 9%), #000 calc(100% - var(--decor-fade, 9%)), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 var(--decor-fade, 9%), #000 calc(100% - var(--decor-fade, 9%)), transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.section__decor svg {
  display: block;
  width: 100%;
  height: auto;
}

@property --decor-draw {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
.section__decor path {
  stroke-dasharray: 1 1;
  stroke-dashoffset: calc(var(--decor-draw, 0) * var(--decor-dir, 1));
}

.section__decor path:nth-of-type(2) {
  stroke-dashoffset: calc(min(1, var(--decor-draw, 0) * 1.18) * var(--decor-dir, 1));
}

.section__decor--contained {
  --decor-left: -0.075;
  --decor-width: 1.1472;
}

.section--decor-overhang {
  overflow: visible;
}

.section__decor--overhang {
  --decor-left: -0.0653;
  --decor-width: 1.1243;
  --decor-shift: -0.4%;
}

.section--decor-overlap {
  overflow: visible;
  z-index: 3;
}

.section__decor--overlap {
  --decor-left: -0.0889;
  --decor-width: 1.2229;
  top: 100%;
  --decor-shift: -70%;
}

.section--decor-underhang {
  overflow: visible;
}

.section__decor--underhang {
  --decor-left: -0.0861;
  --decor-width: 1.1688;
  top: 100%;
  --decor-shift: -50%;
  --decor-lift: 80px;
  --decor-dir: -1;
  z-index: 1;
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    @keyframes decor-draw {
      from {
        --decor-draw: 1;
      }
      to {
        --decor-draw: 0;
      }
    }
    .section__decor {
      animation: decor-draw linear both;
      animation-timeline: view();
      animation-range: entry calc(100vh * (1 - var(--decor-anchor, 0.5))) entry calc(100% * var(--decor-span, 1) + 100vh * (1 - var(--decor-anchor, 0.5)));
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  .section__decor {
    --decor-draw: 0;
    animation: none !important;
  }
}
@media (max-width: 720px) {
  .section__decor {
    display: none;
  }
}
.downloads {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--sp-12);
}

.downloads__item {
  margin: 0;
}

.download {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  padding: var(--sp-16) var(--sp-20);
  background: var(--c-white);
  border: var(--border-hair) solid var(--c-lavender);
  border-radius: var(--radius-button);
  text-decoration: none;
  transition: border-color var(--duration) var(--ease);
}

.download:hover {
  opacity: 1;
  border-color: var(--c-purple);
}

.download__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--c-lavender);
  border-radius: var(--radius-button);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--c-purple);
}

.download__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.download__label {
  font-weight: var(--fw-bold);
}

.download__meta {
  opacity: 0.75;
}

.event-header__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--sp-48);
}

.event-header__breadcrumb {
  margin-bottom: var(--sp-16);
  font-weight: var(--fw-bold);
}

.event-header__title {
  margin-bottom: var(--sp-20);
}

.event-header__summary {
  margin-bottom: var(--sp-24);
}

.event-header__notice {
  display: inline-block;
  padding: var(--sp-8) var(--sp-16);
  background: var(--c-white);
  border-radius: var(--radius-button);
  font-weight: var(--fw-bold);
}

.event-meta {
  display: grid;
  gap: var(--sp-12);
  margin: var(--sp-24) 0;
}

.event-meta__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
}

.event-meta dt {
  margin: 0;
  font-weight: var(--fw-bold);
  font-size: var(--fs-subhead);
}

.event-meta dd {
  margin: 0;
  font-size: var(--fs-lead);
}

.event-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-16);
}

.event-header__actions .button + .button {
  margin-left: 0;
}

.event-header__image {
  width: 100%;
  border-radius: var(--radius-card);
}

@media (max-width: 860px) {
  .event-header__grid {
    grid-template-columns: 1fr;
  }
}
.faq__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
  margin-bottom: var(--sp-24);
}

.faq__tab {
  padding: var(--sp-12) var(--sp-24);
  background: var(--c-white);
  border: var(--border-hair) solid var(--c-purple);
  border-radius: var(--radius-button) var(--radius-button) 0 0;
  color: var(--c-purple);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: background-color var(--duration) var(--ease), color var(--duration) var(--ease);
}

.faq__tab:hover {
  background: var(--c-lavender-light);
}

.faq__tab.is-active {
  background: var(--c-purple);
  color: var(--c-white);
}

.faq__group + .faq__group {
  margin-top: var(--sp-32);
}

.faq__group-heading {
  margin-bottom: var(--sp-16);
}

.js .faq__group {
  display: none;
}

.js .faq__group.is-active {
  display: block;
}

.js .faq__group + .faq__group {
  margin-top: 0;
}

.faq__item {
  margin-bottom: var(--sp-12);
  background: var(--c-purple);
  border-radius: var(--radius-button);
  overflow: hidden;
}

.faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  padding: var(--sp-16) var(--sp-24);
  color: var(--c-white);
  font-weight: var(--fw-bold);
  cursor: pointer;
  list-style: none;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__marker {
  flex: none;
  font-size: var(--fs-h4);
  line-height: 1;
  transition: transform var(--duration) var(--ease);
}

.faq__item[open] .faq__marker {
  transform: rotate(90deg);
}

.faq__answer {
  padding: var(--sp-24);
  background: var(--c-white);
  color: var(--c-text-card);
}

.feature-cards {
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: start;
}

.feature-card {
  position: relative;
  display: flex;
  margin: 0;
  min-height: 420px;
  border-radius: var(--radius-card);
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 900px) {
  .feature-cards--stagger > .feature-card:nth-child(even) {
    margin-top: var(--sp-48);
  }
}
.feature-card__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.feature-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(59, 31, 115, 0.15) 0%, rgba(59, 31, 115, 0.65) 45%, rgba(59, 31, 115, 0.92) 100%);
}

.feature-card__body {
  margin-top: auto;
  padding: var(--sp-24);
  color: var(--c-white);
}

.feature-card__heading {
  margin-bottom: var(--sp-8);
  color: var(--c-white);
}

.feature-card__link {
  text-decoration: none;
}

.feature-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.feature-card__link:hover {
  opacity: 1;
  text-decoration: underline;
}

.feature-card__text {
  margin: 0;
  font-size: var(--fs-small);
  line-height: 1.5;
}

.feature-cards__cta {
  margin-top: var(--sp-48);
  text-align: center;
}

.featured-event {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sp-40);
  align-items: center;
  padding: var(--sp-32);
  background: var(--c-white);
  border-radius: var(--radius-card);
}

.featured-event__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.featured-event__eyebrow {
  margin-bottom: var(--sp-8);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.featured-event__title {
  margin-bottom: var(--sp-16);
}

.featured-event__title a {
  text-decoration: none;
}

.featured-event__summary {
  margin-bottom: var(--sp-20);
}

.featured-event__cta {
  margin: var(--sp-24) 0 0;
}

@media (max-width: 860px) {
  .featured-event {
    grid-template-columns: 1fr;
  }
}
.form-block__note {
  margin-bottom: var(--sp-20);
  font-size: var(--fs-small);
}

.form-block :is(input[type=text], input[type=email], input[type=tel],
input[type=url], input[type=number], input[type=date], select, textarea) {
  width: 100%;
  padding: var(--sp-16) var(--sp-20);
  background: var(--c-white);
  border: 0;
  border-radius: var(--radius-button);
  color: var(--c-text-card);
  font-size: var(--fs-body);
}

.form-block textarea {
  min-height: 140px;
  resize: vertical;
}

.form-block :is(input, select, textarea)::placeholder {
  color: var(--c-text-card);
  opacity: 0.65;
}

.form-block :is(input, select, textarea):focus-visible {
  outline: 3px solid var(--c-lavender);
  outline-offset: 2px;
}

.form-block :is(input[type=submit], button[type=submit]) {
  padding: var(--sp-15) var(--sp-40);
  background: var(--c-lavender);
  border: 0;
  border-radius: var(--radius-button);
  color: var(--c-purple);
  font-size: var(--fs-button);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: background-color var(--duration) var(--ease);
}

.form-block :is(input[type=submit], button[type=submit]):hover {
  background: var(--c-lavender-light);
}

.form-block label {
  display: block;
  margin-bottom: var(--sp-8);
  font-size: var(--fs-small);
}

.form-block :is(input[type=checkbox], input[type=radio]) {
  width: 22px;
  height: 22px;
  accent-color: var(--c-lavender);
}

.gallery {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery__item {
  margin: 0;
}

.gallery__figure {
  margin: 0;
}

.gallery__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.gallery__caption {
  margin-top: var(--sp-8);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--sp-48);
  position: relative;
}

.hero__content {
  align-self: start;
}

.hero__heading {
  margin-bottom: 13px;
}

.hero__body {
  margin-bottom: 45px;
  max-width: 34ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-16);
  margin-bottom: 41px;
}

.hero__actions .button + .button {
  margin-left: 0;
}

.hero__text-link {
  margin: 0;
}

.hero__actions:last-child, .hero__body:last-child {
  margin-bottom: 0;
}

.hero__media {
  position: relative;
  align-self: center;
}

.hero__frame {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-pill);
}

.hero__ring {
  position: absolute;
  inset: -8%;
  display: block;
  color: var(--c-white);
  pointer-events: none;
}

.hero__ring svg {
  width: 100%;
  height: 100%;
}

.hero--primary {
  --hero-pad-top: 45px;
  --hero-pad-bottom: 110px;
  min-height: var(--hero-h);
  padding-block: var(--hero-pad-top) var(--hero-pad-bottom);
}

.hero--primary .hero__body {
  max-width: 551px;
}

.hero--primary .hero__frame {
  width: min(100%, 575px);
}

@media (min-width: 901px) {
  .hero--primary {
    overflow: clip;
  }
  .hero--primary .hero__media {
    position: relative;
    align-self: stretch;
  }
  .hero--primary .hero__frame {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% calc(-50% + (var(--hero-pad-bottom) - var(--hero-pad-top)) / 2);
  }
}
.hero--secondary {
  min-height: var(--hero-h-secondary);
}

.hero--secondary .hero__body {
  max-width: 46ch;
  margin-bottom: var(--sp-24);
}

.hero--secondary .hero__frame {
  width: min(100%, 340px);
}

@media (max-width: 900px) {
  .hero--primary,
  .hero--secondary {
    min-height: 0;
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero--primary .hero__media {
    order: -1;
  }
  .hero__body {
    max-width: none;
  }
}
.section--bg-purple .icon-grid--dark .button--primary,
.section--bg-purple .card .button--primary,
.section--bg-purple .link-box .button--primary {
  background: var(--c-purple);
  color: var(--c-white);
}

.icon-grid__field {
  --icon-grid-overhang: 60px;
}

.icon-grid {
  margin: 0;
  padding: var(--icon-grid-overhang, 60px) 0 0;
  list-style: none;
  gap: var(--sp-64);
  row-gap: calc(var(--sp-40) + 60px);
}

.icon-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
  margin: 0;
  padding: var(--sp-80) var(--sp-48) var(--sp-32);
  border-radius: var(--radius-card);
}

.icon-card__icon {
  position: absolute;
  top: -62px;
  display: grid;
  place-items: center;
  width: 126px;
  height: 121px;
}

.icon-card__icon-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.icon-card__icon--lavender {
  color: var(--c-lavender);
}

.icon-card__icon--light {
  color: var(--c-lavender-light);
}

.icon-card__icon--yellow {
  color: var(--c-yellow);
}

.icon-card__icon--none .icon-card__icon-shape {
  display: none;
}

.icon-card__icon-glyph {
  position: relative;
  width: 54px;
  height: 54px;
  object-fit: contain;
  color: var(--c-purple);
}

.icon-card__heading {
  margin-bottom: var(--sp-8);
}

.icon-card__text {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.icon-card__cta {
  margin: auto 0 0;
  padding-top: var(--sp-16);
}

.icon-grid--light .icon-card {
  background: var(--c-purple);
  color: var(--c-white);
  align-items: center;
  text-align: center;
}

.icon-grid--light .icon-card__icon {
  left: 50%;
  translate: -50% 0;
}

.icon-grid--light .icon-card__heading {
  color: var(--c-white);
}

.icon-grid--dark .icon-card {
  background: var(--c-cream);
  color: var(--c-text-card);
  text-align: left;
}

.icon-grid--dark .icon-card__icon {
  left: var(--sp-24);
}

.icon-grid--dark .icon-card__heading {
  color: var(--c-purple);
}

@media (max-width: 640px) {
  .icon-card__icon {
    width: 96px;
    height: 96px;
    top: -48px;
  }
  .icon-grid {
    padding-top: 48px;
    row-gap: calc(var(--sp-32) + 48px);
  }
  .icon-card {
    padding-top: var(--sp-40);
  }
}
.icon-grid__field {
  position: relative;
  overflow: visible clip;
}

.icon-grid__field > .section__decor {
  top: var(--icon-grid-overhang, 60px);
  bottom: 0;
  --decor-stage: min(100vw, var(--canvas));
  translate: none;
}

.icon-grid__field > .section__decor svg {
  width: 100%;
  height: 100%;
}

.link-boxes-wrap--aside {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(var(--sp-32), 5vw, var(--sp-80));
  align-items: start;
}

.link-boxes-wrap--aside .section-header {
  margin-bottom: 0;
}

.link-boxes-wrap--aside .section-header__heading {
  font-size: var(--fs-h2-fluid);
}

.link-boxes {
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-box {
  margin: 0;
}

.link-box__link {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
  height: 100%;
  text-decoration: none;
  transition: transform var(--duration) var(--ease);
}

.link-box__link:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.link-box__media {
  display: block;
}

.link-box__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-button);
}

.link-box__icon svg {
  width: 40px;
  height: 40px;
  color: var(--c-purple);
}

.link-box__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  flex: 1;
}

.link-box__heading {
  display: block;
  color: var(--c-purple);
}

.link-box__text {
  display: block;
  font-size: var(--fs-small);
  color: var(--c-text-card);
}

.link-box__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  margin-top: auto;
  padding-top: var(--sp-8);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--c-purple);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.link-box__arrow {
  transition: transform var(--duration) var(--ease);
}

.link-box__link:hover .link-box__arrow {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .link-boxes-wrap--aside {
    grid-template-columns: 1fr;
  }
}
.section-header--stacked .section-header__heading {
  text-wrap: balance;
}

.logo-wall {
  overflow-x: clip;
  mask-image: linear-gradient(to right, transparent, #000 var(--sp-64, 4rem), #000 calc(100% - var(--sp-64, 4rem)), transparent);
}

.logo-wall__track {
  display: flex;
  width: max-content;
  animation: logo-wall-scroll var(--logo-wall-duration, 48s) linear infinite;
}

.logo-wall:hover .logo-wall__track,
.logo-wall:focus-within .logo-wall__track {
  animation-play-state: paused;
}

.logo-wall__set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(var(--sp-24), 4vw, var(--sp-64));
  margin: 0;
  padding: 0 clamp(var(--sp-12), 2vw, var(--sp-32));
  list-style: none;
}

.logo-wall__item {
  flex: 0 0 auto;
  margin: 0;
}

.logo-wall__image {
  max-height: 88px;
  width: auto;
  object-fit: contain;
}

@keyframes logo-wall-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-wall {
    mask-image: none;
  }
  .logo-wall__track {
    width: 100%;
    animation: none;
  }
  .logo-wall__set {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0;
  }
  .logo-wall__set[aria-hidden=true] {
    display: none;
  }
}
.logo-wall__cta {
  margin-top: var(--sp-40);
  text-align: center;
}

.section--bg-purple .logo-wall__image {
  filter: brightness(0) invert(1);
}

.media-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(var(--sp-32), 5vw, var(--sp-80));
}

.media-text--right .media-text__media {
  order: 2;
}

.media-text__image {
  width: 100%;
  object-fit: cover;
}

.media-text__media--rounded .media-text__image {
  border-radius: var(--radius-card);
}

.media-text__media--circle .media-text__image {
  border-radius: var(--radius-pill);
  aspect-ratio: 1;
}

.media-text__eyebrow {
  margin-bottom: var(--sp-12);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--fs-body);
}

.media-text__heading {
  margin-bottom: var(--sp-20);
}

.media-text__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-16);
  margin-top: var(--sp-32);
}

.media-text__actions .button + .button {
  margin-left: 0;
}

@media (max-width: 860px) {
  .media-text {
    grid-template-columns: 1fr;
  }
  .media-text--right .media-text__media {
    order: 0;
  }
}
.media-text--bleed {
  gap: clamp(var(--sp-24), 4vw, var(--sp-64));
  align-items: stretch;
}

.media-text--bleed .media-text__media {
  align-self: stretch;
}

.media-text--bleed .media-text__image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 0;
}

.media-text--bleed .media-text__content {
  align-self: center;
  padding-block: var(--sp-32);
}

@media (min-width: 861px) {
  .media-text--bleed.media-text--left .media-text__media {
    margin-left: calc(50% - 50vw);
  }
  .media-text--bleed.media-text--right .media-text__media {
    margin-right: calc(50% - 50vw);
  }
}
.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--sp-40);
}

@media (max-width: 860px) {
  .newsletter {
    grid-template-columns: 1fr;
  }
}
.newsletter__action {
  justify-self: end;
}

.newsletter__heading {
  margin-bottom: var(--sp-12);
}

@media (max-width: 860px) {
  .newsletter__action {
    justify-self: start;
  }
}
.programs {
  position: relative;
  z-index: 1;
  padding: clamp(var(--sp-32), 4vw, var(--sp-48));
  border: var(--border-hair) solid var(--c-purple);
  border-radius: 40px;
  margin-top: 100px;
  background: var(--c-bg);
}

.programs__title {
  width: fit-content;
  margin: -80px auto 30px;
  padding: 20px 50px;
  background: var(--c-bg);
  display: block;
  text-align: center;
}

.programs__list {
  margin: 0;
  padding: 0;
  list-style: none;
  row-gap: var(--sp-32);
}

.programs__item {
  margin: 0;
}

.programs__item-heading {
  margin-bottom: var(--sp-8);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  line-height: 1.35;
  color: var(--c-purple);
}

.programs__item-body {
  margin: 0;
  font-size: var(--fs-small);
  line-height: 1.5;
}

.programs__cta {
  margin-top: var(--sp-48);
  text-align: center;
}

.programs__field {
  position: relative;
}

.programs__field > .section__decor {
  top: 0;
  --decor-shift: -13.3%;
  --decor-lift: 150px;
  --decor-stage: min(100vw, var(--canvas));
}

.programs__field {
  timeline-scope: --hwp-programs-panel;
}

.programs {
  view-timeline-name: --hwp-programs-panel;
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .programs__field > .section__decor {
      animation-timeline: --hwp-programs-panel;
      animation-range: entry calc(100vh * (1 - var(--decor-anchor, 0.5))) exit calc(100% - 100vh * var(--decor-anchor, 0.5));
    }
  }
}
.side-by-side {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--sp-40);
  align-items: start;
}

.side-by-side__tabs {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.side-by-side__tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  width: 100%;
  padding: var(--sp-16) var(--sp-24);
  background: var(--c-white);
  border: var(--border-hair) solid var(--c-purple);
  border-radius: var(--radius-button);
  color: var(--c-purple);
  font-weight: var(--fw-bold);
  text-align: left;
  cursor: pointer;
  transition: background-color var(--duration) var(--ease), color var(--duration) var(--ease);
}

.side-by-side__tab:hover {
  background: var(--c-lavender-light);
}

.side-by-side__tab.is-active {
  background: var(--c-purple);
  color: var(--c-white);
}

.side-by-side__tab-arrow {
  font-size: var(--fs-h4);
  line-height: 1;
}

.side-by-side__panel {
  padding: var(--sp-32);
  border: var(--border-hair) solid var(--c-purple);
  border-radius: var(--radius-button);
}

.side-by-side__panel + .side-by-side__panel {
  margin-top: var(--sp-16);
}

.side-by-side__image {
  width: 100%;
  border-radius: var(--radius-button);
  margin-bottom: var(--sp-20);
}

.side-by-side__heading {
  margin-bottom: var(--sp-16);
}

.side-by-side__cta {
  margin: var(--sp-24) 0 0;
}

.js .side-by-side__panel {
  display: none;
}

.js .side-by-side__panel.is-active {
  display: block;
}

.js .side-by-side__panel + .side-by-side__panel {
  margin-top: 0;
}

@media (max-width: 860px) {
  .side-by-side {
    grid-template-columns: 1fr;
  }
}
.spacer--small {
  height: var(--sp-32);
}

.spacer--medium {
  height: var(--sp-64);
}

.spacer--large {
  height: var(--sp-120);
}

.spacer__rule {
  margin: 0;
  position: relative;
  top: 50%;
}

.section--support_bar {
  padding-block: 0;
}

.section--support_bar .section__inner {
  max-width: none;
  padding-inline: 0;
}

.support-bar {
  background: var(--c-purple);
  color: var(--c-white);
  text-align: center;
}

.support-bar__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: center;
}

.support-bar__item {
  padding: var(--sp-24) var(--sp-20);
}

.support-bar__item + .support-bar__item {
  box-shadow: inset 1px 0 0 rgba(247, 237, 235, 0.4);
}

.support-bar__heading {
  margin: 0 0 var(--sp-4);
  font-size: var(--fs-h4-fluid);
  font-weight: var(--fw-bold);
  line-height: 1.25;
}

.support-bar__phone,
.support-bar__chat {
  display: inline-block;
  margin: 0;
  font-size: var(--fs-h4-fluid);
  font-weight: var(--fw-bold);
  line-height: 1.25;
  text-decoration: none;
  color: var(--c-white);
}

.support-bar__chat {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.support-bar__note {
  margin: var(--sp-4) 0 0;
  font-size: var(--fs-small);
  line-height: var(--lh-small);
  opacity: 0.9;
}

@media (max-width: 720px) {
  .support-bar__inner {
    grid-template-columns: 1fr;
  }
  .support-bar__item + .support-bar__item {
    box-shadow: inset 0 1px 0 rgba(247, 237, 235, 0.4);
  }
}
.video {
  position: relative;
}

.video__frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.video__frame :is(iframe, video) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video__trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
}

.video__poster {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video__play {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 84px;
  height: 84px;
  background: var(--c-purple);
  border-radius: var(--radius-pill);
  transition: transform var(--duration) var(--ease);
}

.video__play::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 54%;
  translate: -50% -50%;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--c-white);
}

.video__trigger:hover .video__play {
  transform: scale(1.08);
}

.component-index {
  margin-top: var(--sp-32);
}

.component-index__count {
  margin-bottom: var(--sp-12);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.component-index__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
  margin: 0;
  padding: 0;
  list-style: none;
}

.component-index__list li {
  margin: 0;
}

.component-index__list a {
  display: block;
  padding: var(--sp-4) var(--sp-12);
  border: var(--border-hair) solid var(--c-purple);
  border-radius: var(--radius-pill);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--fs-small);
  text-decoration: none;
}

.component-index__list a:hover {
  background: var(--c-lavender-light);
  opacity: 1;
}

.component-label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-12);
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: var(--sp-64) auto 0;
  padding: var(--sp-8) var(--gutter);
  border-top: var(--border-width) dashed var(--c-lavender);
  position: relative;
  z-index: var(--z-raised);
  scroll-margin-top: var(--sp-24);
}

.component-label__index {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--c-lavender);
}

.component-label__name {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--c-purple);
}

.component-label__file {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--fs-small);
  opacity: 0.6;
}

.u-center {
  text-align: center;
}

.u-left {
  text-align: left;
}

.u-right {
  text-align: right;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-16 {
  margin-bottom: var(--sp-16) !important;
}

.u-mb-24 {
  margin-bottom: var(--sp-24) !important;
}

.u-mb-40 {
  margin-bottom: var(--sp-40) !important;
}

.u-measure {
  max-width: 65ch;
}

.u-measure-center {
  max-width: 65ch;
  margin-inline: auto;
}

.u-hidden {
  display: none !important;
}

.u-visually-hidden:not(:focus):not(:active) {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .u-hide-mobile {
    display: none !important;
  }
}
@media (min-width: 721px) {
  .u-hide-desktop {
    display: none !important;
  }
}
.alignleft {
  float: left;
  margin: 0 var(--sp-24) var(--sp-16) 0;
}

.alignright {
  float: right;
  margin: 0 0 var(--sp-16) var(--sp-24);
}

.aligncenter {
  display: block;
  margin-inline: auto;
}

.alignwide, .alignfull {
  margin-inline: auto;
}
