@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --www-plum: #921F7A;
  --www-plum-dark: #4d1040;
  --www-plum-soft: #fbf2f9;
  --www-ink: #19131a;
  --www-muted: #6f6670;
  --www-light: #fbf2f9;
  --www-white: #ffffff;
  --www-shadow: 0 18px 48px rgba(146, 31, 122, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: var(--site-header-height, 0px);
  color: var(--www-ink);
  background: #fff;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.container-xl {
  width: min(100% - 2rem, 1140px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(16px);
  transition: box-shadow 240ms ease, transform 240ms ease, background-color 240ms ease;
}

.site-header .container-xl {
  width: min(100% - 2rem, 1280px);
}

.top-bar {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--www-plum-dark), var(--www-plum), var(--www-plum-dark));
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.84rem;
  letter-spacing: 0;
  padding: 0.48rem 0;
}

.top-bar::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 45%, rgba(255, 255, 255, 0.16) 0 1px, transparent 2px);
  background-size: 34px 20px, 48px 24px;
  opacity: 0.45;
  animation: headerSparkle 13s linear infinite;
}

.top-bar .container-xl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 1;
}

.top-bar__text {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1 1 auto;
  font-weight: 800;
  text-align: left;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.top-bar__text span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.16);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.top-bar__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  flex-wrap: wrap;
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100%;
  font-weight: 700;
}

.top-bar__links a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.top-bar__links a:hover {
  color: #fff;
  opacity: 0.82;
}

.top-bar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.45);
}

.site-navbar {
  min-height: 88px;
  padding: 0.72rem 0 0.9rem;
  background: transparent;
}

.nav-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  border: 1px solid rgba(146, 31, 122, 0.12);
  border-radius: 999px;
  padding: 0.5rem 0.65rem 0.5rem 1.05rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(251, 242, 249, 0.9)),
    var(--www-white);
  box-shadow: 0 20px 54px rgba(77, 16, 64, 0.12);
  isolation: isolate;
  transition: border-radius 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}

.nav-panel::before,
.nav-panel::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.nav-panel::before {
  left: 18%;
  top: -10px;
  width: 42px;
  height: 42px;
  background: rgba(146, 31, 122, 0.08);
  animation: floatSlow 8s ease-in-out infinite;
}

.nav-panel::after {
  right: 12%;
  bottom: -12px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(146, 31, 122, 0.14);
  animation: headerOrbit 9s ease-in-out infinite;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(25, 19, 26, 0.1);
}

.site-header.is-scrolled .top-bar {
  padding: 0.35rem 0;
}

.site-header.is-scrolled .site-navbar {
  min-height: 70px;
  padding: 0.45rem 0;
}

.site-header.is-scrolled .nav-panel {
  box-shadow: 0 16px 44px rgba(77, 16, 64, 0.14);
  padding-block: 0.42rem;
}

.site-header.is-scrolled .site-brand img {
  max-height: 56px;
}

.site-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: min(300px, 25vw);
  max-width: min(300px, 25vw);
  min-width: 0;
  padding: 0;
}

.site-brand img {
  display: block;
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  transition: max-height 240ms ease, transform 240ms ease, filter 240ms ease;
}

.site-brand:hover img {
  filter: drop-shadow(0 10px 18px rgba(146, 31, 122, 0.16));
  transform: translateY(-1px);
}

.site-brand__chapter {
  position: absolute;
  right: -0.7rem;
  bottom: 0.2rem;
  border-radius: 999px;
  padding: 0.18rem 0.62rem;
  color: #fff;
  background: var(--www-plum);
  box-shadow: 0 10px 22px rgba(146, 31, 122, 0.22);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.navbar-collapse {
  flex-grow: 1;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.28rem;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  list-style: none;
}

.site-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(146, 31, 122, 0.18);
  border-radius: 50%;
  padding: 0;
  background: #fff;
  box-shadow: 0 12px 28px rgba(146, 31, 122, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-toggler:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(146, 31, 122, 0.18);
}

.site-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(146, 31, 122, 0.18);
}

.site-toggler span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--www-plum);
  border-radius: 999px;
  transform-origin: center;
  transition: opacity 160ms ease, transform 180ms ease;
}

.site-toggler.is-open span:nth-child(1),
.site-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-toggler.is-open span:nth-child(2),
.site-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-toggler.is-open span:nth-child(3),
.site-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-button {
  display: none;
}

.site-navbar .nav-link {
  position: relative;
  color: var(--www-ink);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.62rem 0.68rem !important;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-navbar .nav-link::after {
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-navbar .nav-link:not(.dropdown-toggle)::before,
.site-navbar .dropdown-toggle::before {
  position: absolute;
  left: 50%;
  bottom: 0.38rem;
  width: 22px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: var(--www-plum);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active {
  color: var(--www-plum);
  background: rgba(146, 31, 122, 0.08);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
  background: rgba(146, 31, 122, 0.06);
  transform: translateY(-1px);
}

.site-navbar .nav-link:hover::before,
.site-navbar .nav-link:focus::before,
.site-navbar .nav-link.active::before {
  transform: translateX(-50%) scaleX(1);
}

.site-dropdown {
  min-width: 260px;
  border: 1px solid rgba(146, 31, 122, 0.12);
  border-radius: 18px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(77, 16, 64, 0.16);
  backdrop-filter: blur(12px);
}

.site-dropdown .dropdown-item {
  border-radius: 12px;
  color: var(--www-ink);
  font-size: 0.94rem;
  font-weight: 600;
  padding: 0.7rem 0.85rem;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-dropdown .dropdown-item:hover,
.site-dropdown .dropdown-item:focus,
.site-dropdown .dropdown-item.active {
  color: var(--www-plum);
  background: var(--www-light);
  transform: translateX(3px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  min-height: 42px;
  border: 1px solid var(--www-plum);
  border-radius: 999px;
  padding: 0.55rem 0.82rem 0.55rem 0.55rem;
  color: #fff;
  background: var(--www-plum);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(146, 31, 122, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-cta span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}

.nav-cta span::before {
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--www-plum);
  border-right: 2px solid var(--www-plum);
  content: "";
  transform: rotate(45deg);
}

.nav-cta:hover,
.nav-cta:focus,
.nav-cta.active {
  color: #fff;
  background: var(--www-plum-dark);
  border-color: var(--www-plum-dark);
  box-shadow: 0 18px 36px rgba(146, 31, 122, 0.28);
  transform: translateY(-2px);
}

.placeholder-page {
  display: grid;
  min-height: 52vh;
  place-content: center;
  padding: 4rem 1.25rem;
  text-align: center;
  background: linear-gradient(180deg, #fff, var(--www-light));
}

.placeholder-page h1 {
  width: min(100%, 900px);
  margin: 0 auto 1rem;
  color: var(--www-plum-dark);
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.placeholder-page p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--www-muted);
  font-size: 1.05rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4.5rem;
  background:
    linear-gradient(135deg, rgba(146, 31, 122, 0.12), rgba(255, 255, 255, 0.88)),
    url("../../logo.png");
  background-position: center, calc(100% + 5rem) center;
  background-repeat: no-repeat;
  background-size: auto, min(430px, 45vw);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.page-hero::before {
  left: -4rem;
  bottom: 2rem;
  width: min(360px, 36vw);
  height: 160px;
  background-image: url("data:image/svg+xml,%3Csvg width='360' height='160' viewBox='0 0 360 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23921F7A' stroke-linecap='round'%3E%3Cpath stroke-opacity='.13' stroke-width='11' d='M18 132C82 92 150 70 252 58'/%3E%3Cpath stroke-opacity='.1' stroke-width='7' d='M24 98c90-44 172-62 318-72'/%3E%3Cpath stroke-opacity='.1' stroke-width='3' d='M34 50h112M70 76h142M114 104h118'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.page-hero::after {
  right: -2rem;
  bottom: -2rem;
  width: min(280px, 30vw);
  height: 240px;
  background-image: url("data:image/svg+xml,%3Csvg width='280' height='240' viewBox='0 0 280 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23921F7A' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke-opacity='.12' stroke-width='6' d='M140 210C82 168 34 128 34 80c0-31 24-55 54-55 22 0 41 13 52 33 12-20 30-33 53-33 30 0 54 24 54 55 0 48-48 88-107 130z'/%3E%3Cpath stroke-opacity='.1' stroke-width='2' d='M64 206h156M84 174h116M104 142h78'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.page-hero .container-xl {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0 0 1rem;
  color: var(--www-plum-dark);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--www-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.content-card,
.info-card,
.arm-card,
.nation-card {
  border: 1px solid rgba(146, 31, 122, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(77, 16, 64, 0.08);
}

.content-card {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.content-card + .content-card {
  margin-top: 1.25rem;
}

.content-card h2,
.info-card h2,
.arm-card h2 {
  margin: 0 0 1rem;
  color: var(--www-plum-dark);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 900;
  line-height: 1.08;
}

.content-card h3 {
  margin: 1.3rem 0 0.65rem;
  color: var(--www-plum-dark);
  font-size: 1.1rem;
  font-weight: 900;
}

.content-card p,
.content-card li,
.info-card p,
.arm-card p,
.nation-card p {
  color: var(--www-muted);
  font-size: 1rem;
  line-height: 1.78;
  overflow-wrap: anywhere;
}

.content-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.page-aside {
  position: sticky;
  top: calc(var(--site-header-height, 120px) + 1rem);
}

.info-card {
  overflow: hidden;
}

.info-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.info-card__body {
  padding: 1.35rem;
}

.quick-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--www-muted);
  line-height: 1.65;
}

.quick-list li::before {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  margin-top: 0.55rem;
  content: "";
  background: var(--www-plum);
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.2rem;
  border: 1px solid rgba(146, 31, 122, 0.12);
  border-radius: 8px;
  padding: 0.9rem;
  background: rgba(146, 31, 122, 0.035);
}

.contact-list strong {
  color: var(--www-plum-dark);
  font-size: 1rem;
  line-height: 1.3;
}

.contact-list span {
  color: var(--www-muted);
  line-height: 1.4;
}

.contact-list a {
  width: max-content;
  max-width: 100%;
  color: var(--www-plum);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: normal;
  word-break: normal;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

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

.arm-card,
.nation-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.nation-card:hover,
.nation-card:focus {
  color: inherit;
}

.nation-card h2 {
  margin: 0 0 0.5rem;
  color: var(--www-plum-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

.nation-card p {
  margin: 0;
}

.nation-card > span:not(.flag-icon) {
  font-size: 0.8rem;
}

.contact-grid .event-form {
  margin: 0;
}

.content-card a {
  color: var(--www-plum);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.content-card a:hover,
.content-card a:focus {
  color: var(--www-plum-dark);
}

.content-card a.btn-brand {
  color: #fff;
  text-decoration: none;
}

.content-card a.btn-brand:hover,
.content-card a.btn-brand:focus {
  color: #fff;
}

.arm-card,
.nation-card {
  padding: 1.45rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.arm-card:hover,
.nation-card:hover {
  box-shadow: 0 24px 60px rgba(77, 16, 64, 0.13);
  transform: translateY(-6px);
}

.arm-card span,
.nation-card > span:not(.flag-icon) {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: #fff;
  background: var(--www-plum);
  font-weight: 900;
}

.nation-card .flag-icon {
  display: block;
  width: 64px;
  height: 42px;
  border-radius: 6px;
  margin-bottom: 1rem;
  box-shadow: 0 12px 28px rgba(25, 19, 26, 0.12);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-page-grid button {
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
  box-shadow: 0 18px 48px rgba(77, 16, 64, 0.1);
}

.gallery-page-grid img {
  display: block;
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-page-grid button:hover img,
.gallery-page-grid button:focus img {
  filter: saturate(1.07);
  transform: scale(1.04);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(146, 31, 122, 0.11), rgba(255, 255, 255, 0.96)),
    url("../../logo.png");
  background-position: center, calc(100% + 6rem) center;
  background-repeat: no-repeat;
  background-size: auto, 420px auto;
}

.contact-hero::before,
.contact-hero::after,
.contact-experience::before {
  position: absolute;
  content: "";
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.contact-hero::before {
  left: -4rem;
  bottom: 2rem;
  width: min(360px, 34vw);
  height: 170px;
  background-image: url("data:image/svg+xml,%3Csvg width='360' height='170' viewBox='0 0 360 170' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23921F7A' stroke-linecap='round'%3E%3Cpath stroke-opacity='.14' stroke-width='10' d='M18 140C88 94 160 72 342 38'/%3E%3Cpath stroke-opacity='.1' stroke-width='6' d='M28 98c96-42 184-62 300-74'/%3E%3Cpath stroke-opacity='.09' stroke-width='3' d='M56 54h112M78 80h172M118 110h112'/%3E%3C/g%3E%3C/svg%3E");
}

.contact-hero::after {
  right: 2rem;
  top: 2rem;
  width: min(260px, 26vw);
  height: 220px;
  opacity: 0.65;
  background-image: url("data:image/svg+xml,%3Csvg width='260' height='220' viewBox='0 0 260 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23921F7A'%3E%3Cpath stroke-opacity='.11' stroke-width='4' d='M130 190C78 154 34 118 34 74c0-28 21-49 48-49 20 0 37 12 48 30 11-18 28-30 48-30 27 0 48 21 48 49 0 44-44 80-96 116z'/%3E%3Cpath stroke-opacity='.08' d='M58 190h142M82 164h96M104 138h54'/%3E%3C/g%3E%3C/svg%3E");
}

.contact-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.contact-hero__copy h1 {
  max-width: 850px;
  margin: 0 0 1rem;
  color: var(--www-plum-dark);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
}

.contact-hero__copy p {
  max-width: 700px;
  margin: 0;
  color: var(--www-muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.contact-hero__image {
  position: relative;
  min-height: 460px;
}

.contact-hero__image img {
  width: 100%;
  height: 460px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(77, 16, 64, 0.18);
}

.contact-hero__note {
  position: absolute;
  right: clamp(1rem, 4vw, 2.2rem);
  bottom: -1.6rem;
  max-width: 310px;
  border-left: 5px solid var(--www-plum);
  border-radius: 8px;
  padding: 1.2rem 1.35rem;
  background: #fff;
  box-shadow: 0 24px 60px rgba(146, 31, 122, 0.16);
}

.contact-hero__note strong,
.contact-hero__note span {
  display: block;
}

.contact-hero__note strong {
  color: var(--www-plum-dark);
  font-size: 1.1rem;
  font-weight: 900;
}

.contact-hero__note span {
  margin-top: 0.35rem;
  color: var(--www-muted);
  line-height: 1.5;
}

.contact-experience {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.contact-experience::before {
  right: -5rem;
  bottom: 4rem;
  width: min(360px, 30vw);
  height: 360px;
  opacity: 0.58;
  background-image: url("data:image/svg+xml,%3Csvg width='360' height='360' viewBox='0 0 360 360' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23921F7A' stroke-opacity='.09'%3E%3Ccircle cx='180' cy='180' r='146'/%3E%3Cpath d='M34 180h292M180 34v292M76 76l208 208M284 76 76 284'/%3E%3C/g%3E%3C/svg%3E");
}

.contact-card-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.91fr) minmax(0, 0.91fr);
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.contact-method-card {
  border: 1px solid rgba(146, 31, 122, 0.13);
  border-radius: 8px;
  padding: clamp(1.2rem, 2vw, 1.55rem);
  background: #fff;
  box-shadow: 0 16px 40px rgba(77, 16, 64, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.contact-method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--www-shadow);
}

.contact-method-card span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  padding: 0.34rem 0.8rem;
  color: #fff;
  background: var(--www-plum);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-method-card h2 {
  margin: 0 0 0.8rem;
  color: var(--www-plum-dark);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 900;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.contact-method-card a {
  color: var(--www-plum);
  font-weight: 900;
  text-decoration: none;
}

.contact-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  border: 1px solid rgba(146, 31, 122, 0.1);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(146, 31, 122, 0.06), rgba(255, 255, 255, 0.96));
  box-shadow: 0 24px 64px rgba(77, 16, 64, 0.08);
}

.contact-panel__intro {
  padding: clamp(0.4rem, 2vw, 1rem);
}

.contact-panel__intro h2 {
  margin: 0 0 1rem;
  color: var(--www-plum-dark);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.14;
}

.contact-panel__intro p {
  color: var(--www-muted);
  line-height: 1.75;
}

.contact-promise {
  margin-top: 1.25rem;
}

.contact-form {
  box-shadow: 0 18px 44px rgba(146, 31, 122, 0.1);
}

.form-status {
  margin-top: 1rem;
  color: var(--www-plum-dark);
  font-weight: 700;
}

.section-pad {
  padding: 6.5rem 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--www-plum);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading h2,
.intro-section h2,
.events-section h2,
.coordinators-section h2 {
  margin: 0 0 1.2rem;
  color: var(--www-plum-dark);
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  font-weight: 800;
  line-height: 1.14;
}

.section-heading p,
.intro-section p,
.events-section p,
.coordinators-section p {
  color: var(--www-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.btn-brand,
.btn-ghost,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.btn-brand {
  border: 1px solid var(--www-plum);
  padding: 0.95rem 1.35rem;
  color: #fff;
  background: var(--www-plum);
  box-shadow: 0 18px 34px rgba(146, 31, 122, 0.22);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  background: var(--www-plum-dark);
  border-color: var(--www-plum-dark);
  transform: translateY(-2px);
}

.btn-brand--light {
  color: var(--www-plum);
  background: #fff;
  border-color: #fff;
}

.btn-brand--light:hover,
.btn-brand--light:focus {
  color: #fff;
  background: var(--www-plum-dark);
  border-color: var(--www-plum-dark);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.75);
  padding: 0.95rem 1.3rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.text-link {
  min-height: 0;
  color: var(--www-plum);
  font-size: 1rem;
}

.text-link:hover,
.text-link:focus {
  color: var(--www-plum-dark);
  transform: translateX(4px);
}

.hero-carousel {
  width: min(100% - 3.5rem, 1826px);
  min-height: 720px;
  margin: 2.3rem auto 4rem;
  overflow: hidden;
  border-radius: 28px;
  background: #d7d7d7;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  min-height: 720px;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  box-shadow: none;
  transform: translateY(12px) scale(0.98);
  transition: transform 1.2s ease, opacity 1.2s ease;
  z-index: 1;
}

.carousel-item.active .hero-img {
  transform: translateY(0) scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 19, 26, 0.44), rgba(25, 19, 26, 0.2), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(146, 31, 122, 0.025), rgba(146, 31, 122, 0.07));
  z-index: 2;
}

.conference-slide .hero-img {
  object-position: center center;
}

.conference-slide .hero-overlay {
  background:
    linear-gradient(90deg, rgba(25, 19, 26, 0.48), rgba(25, 19, 26, 0.22), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(146, 31, 122, 0.035), rgba(146, 31, 122, 0.08));
}

.conference-slide .hero-content h1,
.conference-slide .hero-content p {
  color: #fff;
  text-shadow: 0 7px 24px rgba(25, 19, 26, 0.2);
}

.conference-slide .hero-secondary {
  color: #fff;
  border-bottom-color: #fff;
}

.hero-shapes::before,
.hero-shapes::after {
  position: absolute;
  content: "";
  background: rgba(146, 31, 122, 0.2);
  z-index: 1;
}

.hero-shapes::before {
  top: 4.2rem;
  right: 32%;
  width: 54px;
  height: 54px;
}

.hero-shapes::after {
  right: 6%;
  bottom: 3.4rem;
  width: 54px;
  height: 54px;
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 720px;
  flex-direction: column;
  justify-content: center;
  max-width: 1080px;
  margin-left: max(2rem, calc((100vw - 1140px) / 2));
  padding-top: 0;
  color: #fff;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 44px;
  margin-bottom: 1.6rem;
  border: 1px solid var(--www-plum);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  color: var(--www-plum);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.05rem;
  font-weight: 500;
}

.hero-content h1,
.hero-content h2 {
  max-width: 1040px;
  margin: 0 0 1.55rem;
  color: #fff;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: clamp(3.2rem, 5.4vw, 5.35rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
  text-shadow: 0 7px 24px rgba(25, 19, 26, 0.18);
}

.hero-content p {
  max-width: 760px;
  margin: 0 0 2.05rem;
  color: #fff;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 600;
  line-height: 1.65;
  text-shadow: 0 4px 16px rgba(25, 19, 26, 0.2);
}

.hero-date {
  font-size: clamp(1.3rem, 2.4vw, 2rem) !important;
  font-weight: 800 !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.35rem;
}

.carousel-indicators [data-bs-target] {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: #fff;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5.5%;
  z-index: 5;
  opacity: 0.9;
}

.carousel-control-prev:hover,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-next:focus {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2.4rem;
  height: 2.4rem;
  filter: drop-shadow(0 4px 12px rgba(25, 19, 26, 0.35));
}

.hero-primary {
  gap: 0.65rem;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.42rem 1.05rem 0.42rem 0.42rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-primary span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--www-plum);
  background: #fff;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
}

.hero-secondary {
  min-height: 0;
  border: 0;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  padding: 0 0 0.35rem;
  color: #fff;
  background: transparent;
  font-weight: 800;
  box-shadow: none;
}

.hero-secondary:hover,
.hero-secondary:focus {
  background: transparent;
  transform: translateY(-1px);
}

.intro-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.intro-section.sketch-section::before {
  inset: 34% auto auto -13%;
  width: min(340px, 26vw);
  height: min(310px, 24vw);
  background-image: url("data:image/svg+xml,%3Csvg width='360' height='330' viewBox='0 0 360 330' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23921F7A' stroke-width='15' stroke-linecap='round' stroke-opacity='.16'%3E%3Cpath d='M-8 198C74 151 152 110 247 76'/%3E%3Cpath d='M-16 226C84 168 171 127 304 90'/%3E%3Cpath d='M-22 252C94 189 190 148 338 111'/%3E%3Cpath d='M4 279C116 219 210 179 342 143'/%3E%3Cpath d='M28 304C129 250 218 212 326 183'/%3E%3C/g%3E%3Cg fill='none' stroke='%23921F7A' stroke-width='7' stroke-linecap='round' stroke-opacity='.09'%3E%3Cpath d='M16 170C95 119 183 83 286 50'/%3E%3Cpath d='M44 318C133 273 211 239 314 214'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  filter: none;
}

.intro-section.sketch-section::after {
  right: -3rem;
  bottom: 0.2rem;
  width: min(300px, 22vw);
  height: min(260px, 20vw);
  border: 0;
  border-radius: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='300' height='260' viewBox='0 0 300 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23921F7A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.16'%3E%3Cpath d='M150 231C86 183 37 142 37 91c0-33 26-59 58-59 23 0 43 13 55 34 12-21 32-34 55-34 32 0 58 26 58 59 0 51-49 92-113 140z'/%3E%3Cpath d='M145 210c-35-29-61-57-61-87 0-20 15-36 35-36 14 0 25 8 32 20 8-12 19-20 33-20 19 0 35 16 35 36 0 30-27 58-61 87'/%3E%3Cpath d='M124 122c12 14 25 28 39 43'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.intro-section h2 {
  max-width: 660px;
  font-size: clamp(2rem, 2.75vw, 2.75rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
}

.intro-section p {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.75;
}

.sketch-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.sketch-section::before {
  position: absolute;
  inset: 5% auto auto -6%;
  width: min(560px, 48vw);
  height: min(560px, 48vw);
  content: "";
  background: url("../../logo.png") center / contain no-repeat;
  opacity: 0.035;
  filter: grayscale(1);
  z-index: -1;
}

.sketch-section::after {
  position: absolute;
  right: -7%;
  bottom: 8%;
  width: min(420px, 38vw);
  height: min(420px, 38vw);
  content: "";
  border: 1px solid rgba(146, 31, 122, 0.08);
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(146, 31, 122, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(146, 31, 122, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.45;
  z-index: -1;
}

.intro-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-stack__main,
.section-photo {
  width: 100%;
  min-height: 440px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--www-shadow);
}

.image-stack__main {
  position: relative;
  z-index: 2;
}

.image-stack__small {
  position: absolute;
  left: -2rem;
  bottom: 0;
  z-index: 3;
  width: 240px;
  height: 180px;
  border: 8px solid #fff;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--www-shadow);
}

.image-stack__panel {
  position: absolute;
  right: 2rem;
  bottom: -1.5rem;
  width: min(280px, 72%);
  border-left: 5px solid var(--www-plum);
  border-radius: 8px;
  padding: 1.4rem;
  background: #fff;
  box-shadow: var(--www-shadow);
}

.image-stack__panel strong,
.image-stack__panel span {
  display: block;
}

.image-stack__panel strong {
  color: var(--www-plum-dark);
  font-size: 1.15rem;
}

.image-stack__panel span {
  color: var(--www-muted);
  margin-top: 0.35rem;
}

.mission-flow {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  background: linear-gradient(180deg, #fff 0%, var(--www-light) 100%);
}

.mission-flow::before {
  position: absolute;
  left: 50%;
  top: 18%;
  width: min(760px, 64vw);
  height: min(760px, 64vw);
  content: "";
  border: 1px solid rgba(146, 31, 122, 0.08);
  border-radius: 50%;
  transform: translateX(-50%);
}

.flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.flow-card {
  min-height: 360px;
  border: 1px solid rgba(146, 31, 122, 0.12);
  border-radius: 8px;
  padding: clamp(2rem, 4vw, 3.4rem);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(146, 31, 122, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

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

.flow-card span,
.panel-number {
  display: inline-grid;
  min-width: 48px;
  min-height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--www-plum);
  font-size: 0.82rem;
  font-weight: 900;
}

.flow-card h2 {
  margin: 1.35rem 0 1rem;
  color: var(--www-plum-dark);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.05;
}

.flow-card p {
  margin: 0;
  color: var(--www-muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.flow-card--solid {
  color: #fff;
  background: var(--www-plum);
}

.flow-card--solid span {
  color: var(--www-plum);
  background: #fff;
}

.flow-card--solid h2,
.flow-card--solid p {
  color: #fff;
}

.feature-band,
.values-section,
.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(146, 31, 122, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--www-light) 100%);
}

.faq-section::before,
.faq-section::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.faq-section::before {
  left: -5rem;
  top: 8rem;
  width: min(360px, 34vw);
  height: 280px;
  background-image: url("data:image/svg+xml,%3Csvg width='360' height='280' viewBox='0 0 360 280' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23921F7A' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke-opacity='.1' stroke-width='22' d='M22 210c72-70 131-101 205-120 38-10 76-16 112-36'/%3E%3Cpath stroke-opacity='.08' stroke-width='12' d='M28 246c84-74 149-107 235-131'/%3E%3Cpath stroke-opacity='.13' stroke-width='2' d='M50 70h96M70 102h128M92 134h92M42 166h150'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
}

.faq-section::after {
  right: -3rem;
  bottom: -2rem;
  width: min(390px, 38vw);
  height: 330px;
  background-image: url("data:image/svg+xml,%3Csvg width='390' height='330' viewBox='0 0 390 330' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23921F7A' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke-opacity='.1' stroke-width='7' d='M204 286C124 228 58 174 58 109c0-43 34-76 75-76 30 0 56 17 72 44 16-27 42-44 72-44 41 0 75 33 75 76 0 65-66 119-148 177z'/%3E%3Cpath stroke-opacity='.1' stroke-width='2' d='M66 290h248M92 252h196M116 214h148M142 176h96'/%3E%3Ccircle cx='88' cy='60' r='20' stroke-opacity='.12' stroke-width='3'/%3E%3Ccircle cx='326' cy='244' r='24' stroke-opacity='.12' stroke-width='3'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.85;
}

.feature-band .section-heading {
  max-width: 760px;
  margin-bottom: 3.2rem;
}

.feature-band .section-heading h2 {
  margin: 0;
  color: var(--www-muted);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  font-weight: 500;
  line-height: 1.7;
}

.what-tabs {
  position: relative;
  border: 1px solid rgba(146, 31, 122, 0.1);
  border-radius: 8px;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--www-shadow);
  backdrop-filter: blur(10px);
}

.what-tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.what-tab {
  min-height: 58px;
  border: 1px solid rgba(146, 31, 122, 0.16);
  border-radius: 8px;
  color: var(--www-plum-dark);
  background: #fff;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.what-tab:hover,
.what-tab:focus,
.what-tab.active {
  color: #fff;
  background: var(--www-plum);
  box-shadow: 0 14px 30px rgba(146, 31, 122, 0.2);
  transform: translateY(-2px);
}

.what-tab-content {
  overflow: hidden;
  border-radius: 8px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.what-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  min-height: 440px;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background:
    linear-gradient(135deg, rgba(146, 31, 122, 0.08), rgba(255, 255, 255, 0.95)),
    #fff;
}

.what-panel h3 {
  margin: 1.2rem 0 1rem;
  color: var(--www-plum-dark);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.14;
}

.what-panel p {
  max-width: 680px;
  color: var(--www-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.what-panel ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.what-panel li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--www-plum-dark);
  font-weight: 700;
}

.what-panel li::before {
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--www-plum);
}

.what-panel img {
  width: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--www-shadow);
  animation: imageBreath 6s ease-in-out infinite;
}

.feature-card {
  height: 100%;
  border: 1px solid rgba(146, 31, 122, 0.12);
  border-radius: 8px;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(146, 31, 122, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover {
  border-color: rgba(146, 31, 122, 0.35);
  box-shadow: var(--www-shadow);
  transform: translateY(-8px);
}

.feature-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--www-plum);
  font-weight: 900;
}

.feature-card h3 {
  margin: 1.4rem 0 0.8rem;
  color: var(--www-plum-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.feature-card p {
  margin: 0;
  color: var(--www-muted);
  line-height: 1.65;
}

.gallery-ribbon {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--www-light), #fff);
  isolation: isolate;
}

.gallery-ribbon::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    url("data:image/svg+xml,%3Csvg width='260' height='180' viewBox='0 0 260 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23921F7A' stroke-opacity='.13' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M38 128c26-28 58-28 84 0M138 128c26-28 58-28 84 0'/%3E%3Ccircle cx='80' cy='72' r='22'/%3E%3Ccircle cx='180' cy='72' r='22'/%3E%3Cpath d='M54 146c20-16 48-16 68 0M154 146c20-16 48-16 68 0M68 42c18-18 42-18 60 0M132 42c18-18 42-18 60 0'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='240' height='180' viewBox='0 0 240 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23921F7A' stroke-opacity='.11' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M44 54c34-18 58-12 76 14 18-26 42-32 76-14v82c-34-18-58-12-76 14-18-26-42-32-76-14z'/%3E%3Cpath d='M120 68v82M62 82c20-8 34-4 48 10M130 92c16-14 34-18 52-10'/%3E%3C/g%3E%3C/svg%3E");
  background-position: 4% 16%, 94% 76%;
  background-repeat: no-repeat;
  background-size: 250px auto, 230px auto;
  opacity: 0.9;
  z-index: -1;
}

.gallery-ribbon::after {
  position: absolute;
  left: 50%;
  top: 14%;
  width: min(720px, 62vw);
  height: min(720px, 62vw);
  content: "";
  border: 1px solid rgba(146, 31, 122, 0.08);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.gallery-ribbon__header {
  width: min(100% - 2rem, 880px);
  margin: 0 auto 2.2rem;
  text-align: center;
}

.gallery-ribbon__header h2 {
  margin: 0;
  color: var(--www-plum-dark);
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  font-weight: 800;
  line-height: 1.14;
}

.gallery-slider {
  position: relative;
  width: min(100% - 2rem, 1240px);
  margin: 0 auto;
}

.gallery-track {
  display: grid;
  grid-auto-columns: minmax(280px, 33.333%);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #fff;
  box-shadow: 0 16px 38px rgba(146, 31, 122, 0.13);
  scroll-snap-align: start;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-slide:hover,
.gallery-slide:focus {
  box-shadow: var(--www-shadow);
  transform: translateY(-8px);
}

.gallery-slide::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  content: "View";
  color: #fff;
  background: rgba(146, 31, 122, 0.38);
  font-weight: 900;
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-slide:hover::after,
.gallery-slide:focus::after {
  opacity: 1;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-slide:hover img,
.gallery-slide:focus img {
  filter: saturate(1.08);
  transform: scale(1.04);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(146, 31, 122, 0.2);
  border-radius: 50%;
  color: #fff;
  background: var(--www-plum);
  font-size: 2rem;
  line-height: 1;
  box-shadow: var(--www-shadow);
  transform: translateY(-50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.gallery-nav:hover,
.gallery-nav:focus {
  background: var(--www-plum-dark);
  transform: translateY(-50%) scale(1.05);
}

.gallery-nav--prev {
  left: -1.2rem;
}

.gallery-nav--next {
  right: -1.2rem;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(25, 19, 26, 0.86);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox img {
  display: block;
  max-width: min(100%, 1100px);
  max-height: 86vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.gallery-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #fff;
  background: var(--www-plum);
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: #fff;
  background: var(--www-plum);
  font-size: 2.6rem;
  line-height: 1;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transform: translateY(-50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus {
  background: var(--www-plum-dark);
  transform: translateY(-50%) scale(1.05);
}

.gallery-lightbox__nav--prev {
  left: max(1rem, calc((100vw - 1160px) / 2));
}

.gallery-lightbox__nav--next {
  right: max(1rem, calc((100vw - 1160px) / 2));
}

.nation-flags-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(146, 31, 122, 0.96), rgba(77, 16, 64, 0.96)),
    var(--www-plum);
}

.nation-flags-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 90px 90px, 54px 54px, 54px 54px;
  opacity: 0.32;
}

.flags-heading {
  position: relative;
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.flags-heading .section-kicker,
.flags-heading h2,
.flags-heading p {
  color: #fff;
}

.flags-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  font-weight: 800;
  line-height: 1.14;
}

.flags-heading p {
  margin: 0 auto;
  max-width: 620px;
  line-height: 1.7;
}

.flag-carousel {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.flag-track {
  display: grid;
  grid-auto-columns: minmax(150px, 170px);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.flag-track::-webkit-scrollbar {
  display: none;
}

.flag-card {
  display: grid;
  min-height: 160px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 1.1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.flag-card:hover,
.flag-card:focus {
  color: var(--www-plum);
  background: #fff;
  box-shadow: 0 18px 44px rgba(25, 19, 26, 0.22);
  transform: translateY(-6px);
}

.flag-card span {
  line-height: 1;
}

.flag-icon {
  display: inline-block;
  width: 82px;
  height: 54px;
  overflow: hidden;
  border: 1px solid rgba(25, 19, 26, 0.16);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(25, 19, 26, 0.12);
}

.flag-fr {
  background: linear-gradient(90deg, #0055a4 0 33.333%, #fff 33.333% 66.666%, #ef4135 66.666%);
}

.flag-ie {
  background: linear-gradient(90deg, #169b62 0 33.333%, #fff 33.333% 66.666%, #ff883e 66.666%);
}

.flag-it {
  background: linear-gradient(90deg, #009246 0 33.333%, #fff 33.333% 66.666%, #ce2b37 66.666%);
}

.flag-be {
  background: linear-gradient(90deg, #000 0 33.333%, #ffd90c 33.333% 66.666%, #ef3340 66.666%);
}

.flag-de {
  background: linear-gradient(180deg, #000 0 33.333%, #dd0000 33.333% 66.666%, #ffce00 66.666%);
}

.flag-nl {
  background: linear-gradient(180deg, #ae1c28 0 33.333%, #fff 33.333% 66.666%, #21468b 66.666%);
}

.flag-at {
  background: linear-gradient(180deg, #ed2939 0 33.333%, #fff 33.333% 66.666%, #ed2939 66.666%);
}

.flag-es {
  background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%);
}

.flag-se {
  background:
    linear-gradient(90deg, transparent 0 30%, #fecc00 30% 42%, transparent 42%),
    linear-gradient(180deg, transparent 0 38%, #fecc00 38% 54%, transparent 54%),
    #006aa7;
}

.flag-fi {
  background:
    linear-gradient(90deg, transparent 0 30%, #002f6c 30% 44%, transparent 44%),
    linear-gradient(180deg, transparent 0 38%, #002f6c 38% 55%, transparent 55%),
    #fff;
}

.flag-dk {
  background:
    linear-gradient(90deg, transparent 0 30%, #fff 30% 42%, transparent 42%),
    linear-gradient(180deg, transparent 0 38%, #fff 38% 54%, transparent 54%),
    #c60c30;
}

.flag-fo {
  background:
    linear-gradient(90deg, transparent 0 30%, #0065bd 30% 36%, #ed2939 36% 45%, transparent 45%),
    linear-gradient(180deg, transparent 0 36%, #0065bd 36% 42%, #ed2939 42% 54%, transparent 54%),
    #fff;
}

.flag-pt {
  background:
    radial-gradient(circle at 40% 50%, #ffcc00 0 9%, transparent 10%),
    linear-gradient(90deg, #006600 0 40%, #ff0000 40%);
}

.flag-gb {
  background:
    linear-gradient(27deg, transparent 44%, #fff 44% 50%, #c8102e 50% 55%, #fff 55% 61%, transparent 61%),
    linear-gradient(153deg, transparent 44%, #fff 44% 50%, #c8102e 50% 55%, #fff 55% 61%, transparent 61%),
    linear-gradient(90deg, transparent 0 42%, #fff 42% 58%, transparent 58%),
    linear-gradient(180deg, transparent 0 36%, #fff 36% 64%, transparent 64%),
    linear-gradient(90deg, transparent 0 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(180deg, transparent 0 42%, #c8102e 42% 58%, transparent 58%),
    #012169;
}

.flag-au {
  background:
    radial-gradient(circle at 78% 68%, #fff 0 4%, transparent 5%),
    radial-gradient(circle at 66% 44%, #fff 0 3%, transparent 4%),
    radial-gradient(circle at 86% 34%, #fff 0 3%, transparent 4%),
    linear-gradient(27deg, transparent 0 18%, #fff 18% 21%, #c8102e 21% 24%, #fff 24% 27%, transparent 27%),
    linear-gradient(153deg, transparent 0 18%, #fff 18% 21%, #c8102e 21% 24%, #fff 24% 27%, transparent 27%),
    linear-gradient(90deg, transparent 0 17%, #fff 17% 28%, transparent 28%),
    linear-gradient(180deg, transparent 0 18%, #fff 18% 30%, transparent 30%),
    linear-gradient(90deg, transparent 0 20%, #c8102e 20% 25%, transparent 25%),
    linear-gradient(180deg, transparent 0 21%, #c8102e 21% 27%, transparent 27%),
    #00008b;
}

.flag-card strong {
  font-size: 0.95rem;
  font-weight: 900;
}

.flag-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--www-plum);
  background: #fff;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 18px 44px rgba(25, 19, 26, 0.2);
  transform: translateY(-50%);
}

.flag-nav--prev {
  left: -1.25rem;
}

.flag-nav--next {
  right: -1.25rem;
}

.coordinator-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(77, 16, 64, 0.96), rgba(146, 31, 122, 0.9)),
    var(--www-plum);
}

.coordinator-hero::after {
  position: absolute;
  right: -6rem;
  bottom: -8rem;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.coordinator-hero .section-kicker,
.coordinator-hero h1,
.coordinator-hero p {
  color: #fff;
}

.coordinator-hero h1 {
  max-width: 880px;
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
}

.coordinator-hero p {
  max-width: 680px;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.75;
}

.coordinator-directory {
  background: var(--www-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.coordinator-preview-grid,
.coordinator-full-grid {
  display: grid;
  gap: 1.5rem;
}

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

.coordinator-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.coordinator-category-card {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(146, 31, 122, 0.14);
  border-radius: 8px;
  padding: 1.35rem;
  color: var(--www-plum-dark);
  background: #fff;
  box-shadow: 0 14px 34px rgba(146, 31, 122, 0.08);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.coordinator-category-card:hover,
.coordinator-category-card:focus,
.coordinator-category-card.active {
  border-color: rgba(146, 31, 122, 0.35);
  box-shadow: var(--www-shadow);
  transform: translateY(-4px);
}

.coordinator-category-card span {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
}

.coordinator-category-card strong {
  margin-top: 0.5rem;
  color: var(--www-muted);
  font-size: 0.95rem;
}

.coordinator-full-grid {
  grid-template-columns: repeat(4, 1fr);
}

.coordinator-preview-card,
.coordinator-full-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(146, 31, 122, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(146, 31, 122, 0.1);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.coordinator-preview-card:hover,
.coordinator-full-card:hover {
  box-shadow: var(--www-shadow);
  transform: translateY(-7px);
}

.coordinator-preview-card img,
.coordinator-full-card img {
  display: block;
  width: 100%;
  background: var(--www-light);
  object-fit: cover;
}

.coordinator-preview-card img {
  height: 210px;
}

.coordinator-full-card img {
  height: 250px;
}

.coordinator-preview-card div,
.coordinator-full-card h2,
.coordinator-full-card p {
  position: relative;
  z-index: 2;
}

.coordinator-preview-card div,
.coordinator-full-card {
  isolation: isolate;
}

.coordinator-preview-card div {
  width: calc(100% - 2rem);
  min-height: 112px;
  margin: -38px auto 1rem;
  border-radius: 8px;
  padding: 1.1rem 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(146, 31, 122, 0.1);
}

.coordinator-full-card h2 {
  width: calc(100% - 2rem);
  margin: -42px auto 0;
  border-radius: 8px 8px 0 0;
  padding: 1.05rem 0.85rem 0.25rem;
  color: var(--www-plum-dark);
  background: rgba(255, 255, 255, 0.96);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.25;
}

.coordinator-full-card p {
  width: calc(100% - 2rem);
  min-height: 68px;
  margin: 0 auto 1rem;
  border-radius: 0 0 8px 8px;
  padding: 0.2rem 0.85rem 1rem;
  color: var(--www-muted);
  background: rgba(255, 255, 255, 0.96);
}

.coordinator-full-card a {
  color: var(--www-plum);
  font-weight: 800;
  text-decoration: none;
}

.coordinator-preview-card h3 {
  margin: 0 0 0.4rem;
  color: var(--www-plum-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

.coordinator-preview-card p {
  margin: 0;
  color: var(--www-muted);
}

.coordinator-preview-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.coordinator-directory--contacts {
  background: #fff;
}

.team-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(146, 31, 122, 0.12);
  border-radius: 8px;
  padding: 1.6rem;
  background: #fff;
  box-shadow: 0 12px 30px rgba(146, 31, 122, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.team-card:target {
  outline: 3px solid rgba(146, 31, 122, 0.35);
  scroll-margin-top: 150px;
}

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

.team-avatar {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--www-plum);
  font-size: 1.35rem;
  font-weight: 900;
}

.team-flag {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  width: 48px;
  height: 32px;
}

.team-card .flag-icon.team-flag,
.team-card .team-flag--text {
  width: 48px;
  height: 32px;
}

.team-flag--text {
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--www-plum);
  font-size: 0.85rem;
  font-weight: 900;
}

.team-card h2 {
  margin: 1.4rem 0 0.4rem;
  color: var(--www-plum-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.team-card p {
  margin: 0 0 0.9rem;
  color: var(--www-muted);
}

.team-card strong {
  display: block;
  color: var(--www-plum);
}

.team-phone {
  display: inline-block;
  margin-top: 0.65rem;
  color: var(--www-plum-dark);
  font-weight: 800;
  text-decoration: none;
}

.events-section,
.coordinators-section {
  background: #fff;
}

.events-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(4.5rem, 8vw, 7.5rem);
  background:
    radial-gradient(circle at 93% 14%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(135deg, var(--www-plum-dark), var(--www-plum));
  isolation: isolate;
}

.events-showcase::before {
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 104px;
  content: "";
  border-radius: 0 0 36px 36px;
  background: #fff;
  z-index: -1;
}

.events-showcase::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    url("data:image/svg+xml,%3Csvg width='260' height='260' viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.18' stroke-width='2'%3E%3Ccircle cx='82' cy='172' r='64'/%3E%3Ccircle cx='82' cy='172' r='50'/%3E%3Ccircle cx='82' cy='172' r='36'/%3E%3Cpath d='M145 42h73v73M218 42l-84 84'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='320' height='320' viewBox='0 0 320 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.11' stroke-width='2'%3E%3Cpath d='M44 292C106 168 177 80 296 24'/%3E%3Cpath d='M68 300C128 184 195 98 306 42'/%3E%3Cpath d='M92 308C148 204 210 122 314 66'/%3E%3C/g%3E%3C/svg%3E");
  background-position: 0 45%, 100% 8%;
  background-repeat: no-repeat;
  background-size: 230px auto, 280px auto;
  z-index: -1;
}

.events-showcase__header {
  max-width: 760px;
  margin: 0 0 2.6rem;
  padding-top: 4rem;
}

.events-showcase .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.events-showcase h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
}

.event-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: stretch;
  max-width: 1120px;
  border-radius: 8px;
  padding: clamp(1.2rem, 2vw, 1.7rem);
  background: #fff;
  box-shadow: 0 26px 56px rgba(25, 19, 26, 0.22);
}

.event-feature-card__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0.8rem, 2vw, 1.5rem);
}

.event-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(146, 31, 122, 0.42);
  border-radius: 999px;
  padding: 0.42rem 1rem;
  color: var(--www-plum-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.event-feature-card h3 {
  margin: 1.2rem 0 0.8rem;
  color: var(--www-ink);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 900;
}

.event-feature-card p {
  max-width: 680px;
  margin: 0 0 1rem;
  color: var(--www-muted);
  line-height: 1.7;
}

.event-meta-list {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1.4rem;
  color: var(--www-muted);
  line-height: 1.55;
}

.event-meta-list strong {
  color: var(--www-plum-dark);
}

.event-detail-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 50px;
  border-radius: 999px;
  padding: 0.35rem 1.25rem 0.35rem 0.35rem;
  color: #fff;
  background: var(--www-plum-dark);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.event-detail-button span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--www-plum-dark);
  background: #fff;
  font-size: 1.45rem;
  line-height: 1;
}

.event-detail-button:hover,
.event-detail-button:focus {
  color: #fff;
  background: var(--www-plum);
  box-shadow: 0 18px 36px rgba(146, 31, 122, 0.24);
  transform: translateY(-2px);
}

.event-feature-card__image img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  border-radius: 8px;
  object-fit: cover;
}

.event-feature-card__image--flyer,
.event-card__image--flyer,
.event-detail-image--flyer {
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf0;
}

.event-feature-card__image--flyer {
  align-self: center;
}

.event-card__image--flyer {
  aspect-ratio: 1600 / 1066;
  min-height: 0;
}

.event-feature-card__image.event-feature-card__image--flyer img,
.event-card__image.event-card__image--flyer img,
.event-detail-image.event-detail-image--flyer img {
  display: block;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.event-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.4rem;
  align-items: start;
  border: 1px solid rgba(146, 31, 122, 0.12);
  border-radius: 8px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(146, 31, 122, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.event-card--featured {
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(1.3rem, 3vw, 2.4rem);
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.event-card--featured .event-card__image {
  width: 100%;
  max-width: 420px;
  align-self: center;
  justify-self: start;
}

.event-card + .event-card {
  margin-top: 1rem;
}

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

.event-date {
  position: relative;
  display: grid;
  min-height: 94px;
  place-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--www-plum);
  text-align: center;
}

.event-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 280px;
  border-radius: 8px;
  background: var(--www-plum);
  box-shadow: 0 18px 44px rgba(77, 16, 64, 0.14);
}

.event-card__image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.event-card__image.event-card__image--flyer img {
  height: 100%;
}

.event-card__image.event-card__image--flyer {
  background: #fffaf0;
}

.event-card--featured .event-card__image--flyer {
  aspect-ratio: 1600 / 1066;
}

.event-card:hover .event-card__image--flyer img {
  filter: none;
  transform: none;
}

.event-card__image .event-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 104px;
  min-height: 94px;
  box-shadow: 0 14px 34px rgba(77, 16, 64, 0.22);
}

.event-card:hover .event-card__image img {
  filter: saturate(1.06);
  transform: scale(1.04);
}

.event-date span,
.event-date strong {
  display: block;
}

.event-date span {
  font-size: 1.5rem;
  font-weight: 900;
}

.event-date strong {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 0 0 0.75rem;
  color: var(--www-plum-dark);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1.06;
}

.event-card p {
  margin-bottom: 0.6rem;
}

.event-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0.6rem, 2vw, 1rem);
}

.event-card__kicker {
  display: inline-flex;
  width: max-content;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(146, 31, 122, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  color: var(--www-plum);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card__excerpt {
  max-width: 720px;
  color: var(--www-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.event-card__meta {
  display: grid;
  gap: 0.15rem;
  margin: 0.3rem 0 1.15rem;
}

.event-card__meta p {
  margin: 0;
  color: var(--www-muted);
  line-height: 1.6;
}

.event-card__meta strong {
  color: var(--www-plum-dark);
}

.event-card a {
  color: var(--www-plum);
  font-weight: 800;
  text-decoration: none;
}

.event-card .event-detail-button {
  width: max-content;
  color: #fff;
}

.event-card .event-detail-button:hover,
.event-card .event-detail-button:focus {
  color: #fff;
}

.event-detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.13), transparent 20%),
    linear-gradient(135deg, var(--www-plum-dark), var(--www-plum));
}

.event-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.event-detail-copy .section-kicker,
.event-detail-copy h1,
.event-detail-copy p {
  color: #fff;
}

.event-detail-copy h1 {
  max-width: 840px;
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
}

.event-detail-date {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
}

.event-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

.event-detail-copy .text-link {
  color: #fff;
}

.event-detail-image img {
  width: 100%;
  min-height: 440px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 26px 62px rgba(25, 19, 26, 0.3);
}

.event-detail-image.event-detail-image--flyer img {
  min-height: 0;
  box-shadow: 0 26px 62px rgba(25, 19, 26, 0.3);
}

.event-info-section,
.event-enquiry-section {
  background: var(--www-light);
}

.event-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.event-info-card,
.event-form {
  border: 1px solid rgba(146, 31, 122, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(146, 31, 122, 0.08);
}

.event-info-card {
  padding: 1.6rem;
}

.event-info-card span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--www-plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-info-card strong {
  display: block;
  color: var(--www-plum-dark);
  font-size: 1.15rem;
  line-height: 1.35;
}

.event-info-card p {
  margin: 0.6rem 0 0;
  color: var(--www-muted);
  line-height: 1.65;
}

.event-map-frame {
  overflow: hidden;
  border: 1px solid rgba(146, 31, 122, 0.12);
  border-radius: 8px;
  box-shadow: var(--www-shadow);
}

.event-map-frame iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.event-map-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--www-plum);
  font-weight: 900;
  text-decoration: none;
}

.event-map-link:hover,
.event-map-link:focus {
  color: var(--www-plum-dark);
}

.event-enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.event-enquiry-grid h2 {
  margin: 0 0 1rem;
  color: var(--www-plum-dark);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1.06;
}

.event-email {
  color: var(--www-plum);
  font-weight: 800;
}

.event-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.event-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--www-plum-dark);
  font-weight: 800;
}

.event-form input,
.event-form textarea {
  width: 100%;
  border: 1px solid rgba(146, 31, 122, 0.18);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--www-ink);
  background: #fff;
  font: inherit;
}

.event-form input:focus,
.event-form textarea:focus {
  border-color: var(--www-plum);
  outline: 3px solid rgba(146, 31, 122, 0.12);
}

.values-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.values-section::before,
.values-section::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}

.values-section::before {
  left: -3rem;
  top: 16%;
  width: min(280px, 22vw);
  height: min(240px, 20vw);
  background-image: url("data:image/svg+xml,%3Csvg width='280' height='240' viewBox='0 0 280 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23921F7A' stroke-width='7' stroke-linecap='round' stroke-opacity='.14'%3E%3Cpath d='M-12 154C58 116 126 84 206 56'/%3E%3Cpath d='M-18 180C76 132 151 98 246 72'/%3E%3Cpath d='M-6 204C90 158 170 124 260 100'/%3E%3Cpath d='M22 222C112 184 188 152 266 132'/%3E%3C/g%3E%3C/svg%3E");
}

.values-section::after {
  right: -2.5rem;
  bottom: 8%;
  width: min(280px, 22vw);
  height: min(250px, 20vw);
  background-image: url("data:image/svg+xml,%3Csvg width='280' height='250' viewBox='0 0 280 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23921F7A' stroke-width='7' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.16'%3E%3Cpath d='M140 219C82 176 38 138 38 91c0-30 24-54 54-54 21 0 39 12 48 30 10-18 28-30 49-30 30 0 54 24 54 54 0 47-44 85-103 128z'/%3E%3Cpath d='M136 196c-31-25-55-50-55-77 0-18 14-33 32-33 12 0 23 7 29 18 7-11 17-18 30-18 18 0 32 15 32 33 0 27-24 52-55 77'/%3E%3C/g%3E%3C/svg%3E");
}

.values-section .section-heading {
  max-width: 780px;
}

.values-section .section-heading h2 {
  font-size: clamp(1.85rem, 3vw, 2.85rem);
}

.values-section .section-heading p {
  margin: 0 auto;
  max-width: 680px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}

.value-item {
  min-height: 310px;
  border: 1px solid rgba(146, 31, 122, 0.12);
  border-radius: 8px;
  padding: 1.8rem 1.25rem;
  color: var(--www-plum-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(146, 31, 122, 0.08);
  text-align: center;
  transition: background-color 220ms ease, box-shadow 220ms ease, color 220ms ease, transform 220ms ease;
}

.value-item span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(146, 31, 122, 0.24);
  border-radius: 50%;
  color: var(--www-plum);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 900;
}

.value-item h3 {
  margin: 1.2rem 0 0.8rem;
  color: var(--www-plum-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.value-item p {
  margin: 0;
  color: var(--www-muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.value-item:hover {
  color: #fff;
  background: var(--www-plum);
  box-shadow: var(--www-shadow);
  transform: translateY(-7px);
}

.value-item:hover h3,
.value-item:hover p {
  color: #fff;
}

.section-photo {
  display: block;
}

.faq-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  z-index: 1;
}

.faq-intro {
  max-width: 440px;
}

.faq-intro h2 {
  max-width: 420px;
  margin: 0.6rem 0 1.2rem;
  color: var(--www-plum-dark);
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  font-weight: 800;
  line-height: 1.14;
}

.faq-intro p {
  margin: 0 0 1.5rem;
  color: var(--www-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.faq-panel {
  position: relative;
  border: 1px solid rgba(146, 31, 122, 0.12);
  border-radius: 8px;
  padding: clamp(1rem, 2.5vw, 1.7rem);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(88, 11, 72, 0.1);
  backdrop-filter: blur(8px);
}

.faq-panel::before {
  position: absolute;
  top: -1.1rem;
  right: 2.1rem;
  width: 92px;
  height: 92px;
  border-radius: 8px;
  content: "";
  background: var(--www-plum);
  opacity: 0.12;
  transform: rotate(10deg);
  z-index: -1;
}

.faq-accordion {
  max-width: none;
  margin: 0;
}

.faq-accordion .accordion-item {
  border: 1px solid rgba(146, 31, 122, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 36px rgba(88, 11, 72, 0.06);
}

.faq-accordion .accordion-item + .accordion-item {
  margin-top: 0.9rem;
}

.faq-accordion .accordion-button {
  gap: 0.9rem;
  min-height: 68px;
  padding: 1rem 1.25rem;
  color: var(--www-plum-dark);
  background: #fff;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.faq-accordion .accordion-button span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--www-plum);
  font-size: 0.75rem;
  font-weight: 900;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #fff;
  background: var(--www-plum);
}

.faq-accordion .accordion-button:not(.collapsed) span {
  color: var(--www-plum);
  background: #fff;
}

.faq-accordion .accordion-button::after {
  width: 0.8rem;
  height: 0.8rem;
  margin-left: auto;
  background-size: 0.8rem;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
  padding: 1.2rem 1.4rem 1.35rem 4.95rem;
  color: var(--www-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.site-footer {
  position: relative;
  overflow: visible;
  margin-top: 6rem;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  isolation: isolate;
}

.site-footer::before {
  position: absolute;
  inset: 66px 0 0;
  content: "";
  background-image:
    radial-gradient(circle at 4% 12%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg width='300' height='250' viewBox='0 0 300 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.1' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M150 219C90 174 42 135 42 88c0-31 25-56 55-56 22 0 40 12 53 32 11-20 30-32 52-32 30 0 55 25 55 56 0 47-48 86-107 131z'/%3E%3C/g%3E%3C/svg%3E");
  background-color: #103a33;
  background-position: 0 0, calc(100% + 4rem) 5rem;
  background-repeat: repeat, no-repeat;
  background-size: 28px 28px, 300px auto;
  opacity: 1;
  z-index: 0;
}

.site-footer::after {
  position: absolute;
  top: -8.5rem;
  right: 1.5rem;
  width: min(360px, 28vw);
  height: 150px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='360' height='150' viewBox='0 0 360 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='%23921F7A' stroke-opacity='.14' d='M18 148C28 92 32 42 16 8M58 148c8-50 10-95-4-132M104 148c8-50 8-94-6-132M150 148c8-50 7-95-5-132M196 148c8-50 7-94-6-132M242 148c8-50 7-94-6-132M288 148c8-50 7-94-6-132M334 148c8-50 7-94-6-132'/%3E%3Cpath stroke='%23921F7A' stroke-opacity='.12' d='M24 42l7 9 7-9M108 52l7 9 7-9M200 38l7 9 7-9M292 50l7 9 7-9'/%3E%3Cpath stroke='%23921F7A' stroke-opacity='.12' d='M66 84c14-16 23-16 37 0M252 86c14-16 23-16 37 0'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

.footer-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
  width: min(100% - 2rem, 1170px);
  min-height: 132px;
  margin: 0 auto 7rem;
  border-radius: 16px;
  padding: 1.45rem clamp(2rem, 4vw, 3.1rem);
  color: #fff;
  background: var(--www-plum);
  box-shadow: 0 26px 60px rgba(25, 19, 26, 0.18);
  z-index: 1;
}

.footer-cta__message {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 0;
}

.footer-cta__icon {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.footer-cta__pin {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.footer-cta__pin::after {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  content: "";
  background: #fff;
}

.footer-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.18rem, 1.45vw, 1.32rem);
  font-weight: 700;
  line-height: 1.12;
}

.footer-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 216px;
  min-height: 42px;
  border-radius: 12px;
  padding: 0.65rem 1.25rem;
  color: #10362f;
  background: #fff;
  box-shadow: none;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-cta__button:hover,
.footer-cta__button:focus {
  color: #10362f;
  box-shadow: 0 22px 50px rgba(25, 19, 26, 0.2);
  transform: translateY(-3px);
}

.footer-main {
  position: relative;
  align-items: flex-start;
  padding-bottom: 5.2rem;
  z-index: 1;
}

.footer-logo {
  width: min(300px, 100%);
  margin-bottom: 2.1rem;
  background: transparent;
}

.site-footer h2 {
  position: relative;
  margin: 0 0 2rem;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer h2::after {
  position: absolute;
  left: 0;
  bottom: -0.7rem;
  width: 108px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--www-plum) 0 18%, transparent 18% 28%, var(--www-plum) 28%);
}

.site-footer p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.site-footer a {
  display: block;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
}

.footer-links a::before {
  margin-right: 0.65rem;
  content: "»";
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.footer-contact p {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: 0 0 1rem;
}

.footer-links a::before {
  content: "\00BB";
}

.footer-contact a {
  display: inline;
  margin: 0;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2.4rem;
}

.footer-socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.footer-socials a:hover,
.footer-socials a:focus {
  color: #fff;
  background: var(--www-plum);
  transform: translateY(-2px);
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fff;
  transform: translateX(4px);
}

.site-footer .footer-cta__button {
  display: inline-flex;
  margin-bottom: 0;
  color: #10362f;
}

.site-footer .footer-cta__button:hover,
.site-footer .footer-cta__button:focus {
  color: #10362f;
  transform: translateY(-3px);
}

.footer-bottom {
  position: relative;
  padding: 1rem;
  color: #fff;
  background: var(--www-plum);
  font-weight: 700;
  text-align: center;
  z-index: 1;
}

.js .reveal-on-scroll,
.js .reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .section-reveal {
  transform: translateY(34px) scale(0.985);
  transition-duration: 840ms;
  transition-timing-function: cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .reveal-on-scroll.is-visible,
.js .carousel-item.active .reveal-up {
  opacity: 1;
  transform: translateY(0);
}

.js .section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body:not([data-page="home"]) .reveal-on-scroll,
body:not([data-page="home"]) .reveal-up {
  opacity: 1 !important;
  transform: none !important;
}

.float-slow {
  animation: floatSlow 7s ease-in-out infinite;
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal-delay-3 {
  transition-delay: 320ms;
}

@media (min-width: 1200px) {
  .top-bar .container-xl {
    flex-direction: row;
  }

  .navbar-collapse {
    display: block !important;
  }

  .site-navbar .dropdown:hover > .dropdown-menu {
    display: block;
    animation: dropdownReveal 180ms ease both;
  }

  .site-navbar .dropdown:hover > .dropdown-toggle {
    color: var(--www-plum);
  }
}

@media (max-width: 1199.98px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-intro {
    max-width: 720px;
  }

  .faq-intro h2 {
    max-width: 640px;
  }

  .site-navbar {
    min-height: 76px;
    position: relative;
    padding: 0.62rem 0;
  }

  .nav-panel {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    border-radius: 24px;
    padding: 0.55rem 4.3rem;
  }

  .nav-panel::before,
  .nav-panel::after {
    display: none;
  }

  .site-brand {
    width: min(235px, 58vw);
    max-width: min(235px, 58vw);
    margin: 0 !important;
  }

  .site-brand img {
    max-height: 54px;
    filter: contrast(1.18) saturate(1.12) drop-shadow(0 7px 12px rgba(146, 31, 122, 0.14));
  }

  .site-brand__chapter {
    display: none;
  }

  .site-toggler {
    display: none !important;
  }

  .mobile-menu-button {
    display: inline-flex;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(146, 31, 122, 0.18);
    border-radius: 50%;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 1rem;
    right: auto;
    background: var(--www-plum);
    box-shadow: 0 12px 28px rgba(146, 31, 122, 0.18);
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-50%);
    z-index: 10;
  }

  .mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: #fff;
    border-radius: 999px;
    transform-origin: center;
    transition: opacity 160ms ease, transform 180ms ease;
  }

  .mobile-menu-button.is-open span:nth-child(1),
  .mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-button.is-open span:nth-child(2),
  .mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-menu-button.is-open span:nth-child(3),
  .mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-button.is-open,
  .mobile-menu-button[aria-expanded="true"] {
    top: 1rem;
    transform: none;
  }

  .navbar-collapse:not(.show) {
    display: none;
  }

  .navbar-collapse {
    width: 100%;
    flex-basis: 100%;
    border-top: 1px solid rgba(146, 31, 122, 0.12);
    margin-top: 1rem;
    padding: 1rem 0 0.4rem;
  }

  .navbar-collapse.show {
    animation: mobileMenuReveal 220ms ease both;
  }

  .navbar-collapse.show + * {
    min-width: 0;
  }

  .site-navbar .nav-link {
    padding: 0.82rem 1rem !important;
    white-space: normal;
  }

  .navbar-nav {
    display: block;
    padding-top: 0.25rem;
  }

  .site-navbar .nav-link::before {
    left: 1rem;
    right: auto;
    width: 32px;
    transform: scaleX(0);
    transform-origin: left center;
  }

  .site-navbar .nav-link:hover::before,
  .site-navbar .nav-link:focus::before,
  .site-navbar .nav-link.active::before {
    transform: scaleX(1);
  }

  .site-dropdown {
    border: 0;
    border-radius: 16px;
    margin: 0.25rem 0 0.4rem 0.7rem;
    box-shadow: none;
    padding: 0.35rem;
    background: var(--www-light);
  }

  .nav-cta {
    width: 100%;
    justify-content: flex-start;
    padding-right: 1rem;
    white-space: normal;
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 4.5rem 0;
  }

  .page-grid,
  .contact-hero__grid,
  .contact-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-row {
    grid-template-columns: 1fr;
  }

  .contact-hero__image {
    min-height: auto;
  }

  .contact-hero__image img {
    height: 360px;
  }

  .contact-hero__note {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -2rem 1rem 0 auto;
  }

  .page-aside {
    position: static;
  }

  .cards-grid,
  .cards-grid--three,
  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-content {
    min-height: 680px;
  }

  .hero-content {
    margin-left: 1rem;
    padding-right: 1rem;
    width: calc(100% - 2rem);
  }

  .image-stack {
    min-height: auto;
    padding-bottom: 1.5rem;
  }

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

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

  .coordinator-preview-grid,
  .coordinator-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-grid,
  .what-panel {
    grid-template-columns: 1fr;
  }

  .what-tab-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-panel img {
    min-height: 300px;
  }

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

  .event-feature-card,
  .event-detail-hero__grid,
  .event-enquiry-grid {
    grid-template-columns: 1fr;
  }

  .event-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-cta__button {
    justify-self: start;
  }
}

@media (max-width: 575.98px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body * {
    min-width: 0;
  }

  main,
  section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main > section,
  main .container-xl,
  .page-hero .container-xl,
  .section-pad .container-xl,
  .contact-hero__grid,
  .page-grid,
  .what-panel,
  .event-card,
  .event-card--featured,
  .event-detail-hero__grid,
  .event-info-grid,
  .event-enquiry-grid,
  .event-map-frame,
  .event-map-frame iframe,
  .contact-panel,
  .contact-card-row,
  .team-grid,
  .coordinator-preview-grid,
  .coordinator-full-grid,
  .cards-grid,
  .cards-grid--three,
  .gallery-page-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  main *,
  .site-footer * {
    max-width: 100%;
  }

  main h1,
  main h2,
  main h3,
  main p,
  main li,
  main a,
  main strong,
  main span {
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal;
  }

  main h1,
  main h2,
  main h3,
  main p,
  main li {
    width: 100%;
  }

  main .container-xl {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  main .row > * {
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .sketch-section::before {
    width: 310px;
    height: 310px;
    inset: 3rem auto auto -7rem;
  }

  .sketch-section::after {
    width: 260px;
    height: 260px;
    right: -8rem;
  }

  .intro-section.sketch-section::before {
    inset: 36% auto auto -10rem;
    width: 260px;
    height: 240px;
  }

  .intro-section.sketch-section::after {
    right: -6.5rem;
    bottom: 1rem;
    width: 190px;
    height: 170px;
  }

  .site-brand {
    width: min(230px, 58vw);
    max-width: min(230px, 58vw);
    margin: 0 auto !important;
  }

  .top-bar {
    font-size: 0.72rem;
  }

  .top-bar .container-xl {
    width: min(100% - 1rem, 1140px);
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .top-bar__text {
    display: none;
  }

  .top-bar__links {
    gap: 0.5rem;
  }

  .top-bar__links span,
  .top-bar__links a {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .top-bar__divider {
    display: none;
  }

  .placeholder-page {
    display: block;
    padding: 4rem 1rem;
  }

  .placeholder-page h1 {
    max-width: 330px;
    font-size: 1.75rem;
    line-height: 1.15;
  }

  .placeholder-page p {
    max-width: 330px;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
  }

  .section-pad {
    padding: 2rem 0;
  }

  .page-hero {
    padding: 2.15rem 0 1.8rem;
    background-position: center, right 1rem center;
    background-size: auto, 210px auto;
  }

  .page-hero::before,
  .page-hero::after {
    display: none;
  }

  .page-hero .container-xl,
  .section-pad .container-xl {
    width: calc(100% - 2rem);
    max-width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: 1.95rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .contact-hero {
    background-size: auto, 230px auto;
  }

  .contact-hero__copy h1,
  .contact-panel__intro h2 {
    max-width: min(100%, 320px);
    font-size: 1.85rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .contact-hero__copy p,
  .contact-panel__intro p {
    font-size: 0.95rem;
  }

  .contact-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    width: min(100%, 300px);
  }

  .contact-hero__actions .btn-brand,
  .contact-hero__actions .text-link {
    width: 100%;
  }

  .contact-hero__image img {
    height: 240px;
  }

  .contact-hero__note {
    max-width: calc(100% - 1rem);
    margin: -1.35rem auto 0;
    padding: 0.85rem;
  }

  .contact-method-card,
  .contact-panel {
    padding: 1rem;
  }

  .contact-method-card h2 {
    font-size: 1rem;
    line-height: 1.28;
  }

  .page-hero p,
  .content-card,
  .info-card,
  .arm-card,
  .nation-card,
  .event-card,
  .event-info-card,
  .event-form,
  .contact-grid,
  .contact-panel,
  .contact-method-card {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    overflow: hidden;
  }

  .content-card,
  .info-card,
  .arm-card,
  .nation-card,
  .event-card,
  .event-form,
  .contact-panel,
  .contact-method-card {
    margin-left: auto;
    margin-right: auto;
  }

  .content-card > *,
  .info-card__body > *,
  .event-card__content > *,
  .contact-panel__intro > *,
  .contact-hero__copy > * {
    max-width: 100%;
  }

  .content-card,
  .info-card__body,
  .arm-card,
  .nation-card {
    padding: 0.95rem;
  }

  .page-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .page-aside {
    width: 100%;
  }

  .cards-grid,
  .cards-grid--three,
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page-grid img {
    height: 255px;
  }

  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-content {
    min-height: 650px;
  }

  .hero-carousel {
    width: calc(100% - 1rem);
    margin: 2rem auto 3rem;
    border-radius: 24px;
  }

  .hero-img {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0.72;
    box-shadow: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(25, 19, 26, 0.48), rgba(25, 19, 26, 0.22), rgba(255, 255, 255, 0.04)),
      linear-gradient(180deg, rgba(146, 31, 122, 0.025), rgba(146, 31, 122, 0.08));
  }

  .hero-shapes {
    display: none;
  }

  .hero-pill {
    max-width: 100%;
    min-height: 40px;
    padding: 0.58rem 0.9rem;
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: 100%;
    font-size: 2.42rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-content .section-kicker,
  .hero-content p {
    max-width: 340px;
    overflow-wrap: anywhere;
  }

  .section-heading h2,
  .intro-section h2,
  .events-section h2,
  .coordinators-section h2 {
    width: 100%;
    max-width: 100%;
    font-size: 1.58rem;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .intro-section h2 {
    font-size: 1.38rem;
    line-height: 1.18;
  }

  .intro-section p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .intro-section .col-lg-6,
  .events-section .col-lg-5,
  .events-section .col-lg-7,
  .coordinators-section .col-lg-6 {
    width: 100%;
    max-width: 100%;
  }

  .intro-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .image-stack {
    display: grid;
    gap: 0.85rem;
    min-height: 0;
    padding-bottom: 0;
  }

  .image-stack__main {
    min-height: 300px;
  }

  .image-stack__small {
    position: static;
    width: 100%;
    height: 180px;
    border-width: 6px;
  }

  .image-stack__panel {
    position: static;
    width: 100%;
    border-left-width: 4px;
    padding: 1rem;
  }

  .flow-grid,
  .what-tab-list,
  .what-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .flow-card {
    min-height: auto;
  }

  .flow-card h2,
  .what-panel h3 {
    font-size: 1.75rem;
  }

  .what-tabs {
    padding: 0.55rem;
  }

  .what-panel {
    min-height: auto;
    padding: 0.95rem;
  }

  .events-showcase {
    padding: 2.15rem 0;
  }

  .events-showcase::before {
    left: 18%;
    right: 18%;
    height: 64px;
  }

  .events-showcase__header {
    padding-top: 1rem;
  }

  .events-showcase h2,
  .event-detail-copy h1,
  .event-enquiry-grid h2 {
    font-size: 1.9rem;
  }

  .event-detail-copy p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .event-feature-card {
    padding: 0.85rem;
  }

  .event-detail-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-detail-actions .btn-brand,
  .event-detail-actions .text-link {
    width: min(100%, 310px);
  }

  .footer-cta {
    min-height: auto;
    margin-bottom: 3rem;
    padding: 1.5rem;
  }

  .site-footer::before {
    top: 54px;
  }

  .footer-cta__message {
    align-items: center;
    flex-direction: row;
  }

  .footer-cta__icon {
    width: 52px;
    height: 52px;
  }

  .footer-cta h2 {
    font-size: 1.08rem;
    line-height: 1.2;
  }

  .footer-cta__button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    text-align: center;
  }

  .event-feature-card__image img,
  .event-detail-image img {
    min-height: 210px;
  }

  .event-map-frame iframe {
    height: 330px;
  }

  .what-panel img {
    min-height: 210px;
  }

  .container-xl > .row {
    margin-left: 0;
    margin-right: 0;
  }

  .section-heading,
  .intro-section p,
  .events-section p,
  .coordinators-section p {
    max-width: 100%;
  }

  .hero-actions,
  .btn-brand,
  .btn-ghost {
    width: auto;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 0.75rem;
    width: min(100%, 300px);
  }

  .hero-primary {
    width: fit-content;
    max-width: 100%;
    min-height: 42px;
    padding: 0.32rem 0.78rem 0.32rem 0.32rem;
    font-size: 0.78rem;
    white-space: normal;
  }

  .conference-slide .hero-img {
    opacity: 0.95;
    object-fit: cover;
    object-position: 70% center;
  }

  .conference-slide .hero-overlay {
    background:
      linear-gradient(90deg, rgba(25, 19, 26, 0.48), rgba(25, 19, 26, 0.2), rgba(255, 255, 255, 0)),
      linear-gradient(180deg, rgba(146, 31, 122, 0.02), rgba(146, 31, 122, 0.06));
  }

  .hero-primary span {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    font-size: 1.15rem;
  }

  .hero-secondary {
    width: fit-content;
    min-height: 38px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    padding: 0.56rem 0.9rem;
    font-size: 0.78rem;
  }

  .gallery-ribbon,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .nation-flags-section {
    padding: 2.15rem 0;
  }

  .flags-heading {
    padding: 0 1rem;
  }

  .flags-heading h2 {
    font-size: 1.8rem;
  }

  .flag-track {
    grid-auto-columns: 132px;
    gap: 0.75rem;
  }

  .flag-card {
    min-height: 132px;
    padding: 0.85rem;
  }

  .flag-card span {
    font-size: 2.6rem;
  }

  .flag-nav {
    width: 38px;
    height: 38px;
    font-size: 1.65rem;
  }

  .flag-nav--prev {
    left: 0.15rem;
  }

  .flag-nav--next {
    right: 0.15rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .coordinator-preview-grid,
  .coordinator-category-grid,
  .coordinator-full-grid {
    grid-template-columns: 1fr;
  }

  .coordinator-category-card {
    min-height: 108px;
    padding: 1rem;
  }

  .coordinator-category-card span {
    font-size: 1.05rem;
  }

  .coordinator-preview-card img,
  .coordinator-full-card img {
    height: 190px;
  }

  .team-card {
    padding: 0.95rem;
  }

  .team-card .flag-icon.team-flag,
  .team-card .team-flag--text {
    position: static;
    display: block;
    margin-top: 0.9rem;
    width: 42px;
    height: 28px;
  }

  .team-card h2 {
    margin-top: 1rem;
  }

  .coordinator-hero h1 {
    font-size: 1.95rem;
  }

  .coordinator-hero p {
    max-width: 20rem;
    overflow-wrap: break-word;
  }

  .gallery-ribbon {
    padding: 3.6rem 0;
  }

  .gallery-ribbon::before {
    background-position: -42px 1.5rem, calc(100% + 42px) calc(100% - 2rem);
    background-size: 190px auto, 170px auto;
  }

  .gallery-ribbon__header {
    padding: 0 1rem;
  }

  .gallery-ribbon__header h2 {
    max-width: calc(100vw - 3rem);
    margin-inline: auto;
    font-size: 1.45rem;
    overflow-wrap: break-word;
  }

  .gallery-track {
    grid-auto-columns: 82%;
    gap: 0.75rem;
    padding: 0 0.25rem;
  }

  .gallery-slide img {
    height: 300px;
  }

  .gallery-nav {
    width: 38px;
    height: 38px;
    font-size: 1.65rem;
  }

  .gallery-nav--prev {
    left: 0.2rem;
  }

  .gallery-nav--next {
    right: 0.2rem;
  }

  .gallery-lightbox {
    padding: 0.75rem;
  }

  .gallery-lightbox img {
    max-height: 78vh;
  }

  .gallery-lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 2rem;
  }

  .gallery-lightbox__nav--prev {
    left: 0.75rem;
  }

  .gallery-lightbox__nav--next {
    right: 0.75rem;
  }

  .event-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .event-card--featured .event-card__image {
    max-width: 100%;
  }

  .events-section,
  .events-showcase,
  .event-info-section,
  .event-map-section,
  .event-enquiry-section,
  .event-detail-hero {
    contain: layout paint;
    overflow-x: clip;
  }

  .event-detail-hero__grid,
  .event-info-grid,
  .event-enquiry-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .event-map-frame,
  .event-map-frame iframe {
    display: block;
    overflow: hidden;
  }

  .event-date {
    width: 110px;
  }

  .image-stack__main,
  .section-photo {
    min-height: 320px;
  }

  .image-stack__panel {
    right: auto;
    bottom: auto;
  }

  .faq-section::before {
    width: 260px;
    opacity: 0.55;
  }

  .faq-section::after {
    width: 270px;
    opacity: 0.5;
  }

  .faq-intro h2 {
    font-size: 1.85rem;
  }

  .faq-panel {
    padding: 0.85rem;
  }

  .faq-accordion .accordion-button {
    align-items: flex-start;
    min-height: 62px;
    padding: 0.95rem;
  }

  .faq-accordion .accordion-button span {
    width: 32px;
    height: 32px;
  }

  .faq-accordion .accordion-body {
    padding: 1rem;
  }
}

@keyframes dropdownReveal {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes headerSparkle {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 136px 0, -144px 0;
  }
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.14);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 11px rgba(255, 255, 255, 0.05);
    transform: scale(0.86);
  }
}

@keyframes headerOrbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-10px, -8px, 0) rotate(12deg);
  }
}

@keyframes mobileMenuReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes imageBreath {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}
