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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body.zw-body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--zw-ink);
  background: var(--zw-paper);
  font-family: var(--zw-font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.zw-menu-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

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

a {
  color: inherit;
}

.zw-skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--zw-lime);
  color: var(--zw-ink);
  padding: 10px 16px;
}

.zw-skip:focus {
  left: 12px;
  top: 12px;
}

.zw-wrap {
  width: min(100% - 40px, var(--zw-max));
  max-width: 100%;
  margin-inline: auto;
}

.zw-kicker {
  margin: 0 0 12px;
  color: var(--zw-muted);
  font-family: var(--zw-font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.zw-kicker--on-dark,
.zw-band--ink .zw-kicker {
  color: var(--zw-lime);
}

.zw-title {
  margin: 0;
  max-width: 100%;
  font-family: var(--zw-font-display);
  font-size: clamp(1.35rem, 5.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.zw-title--sm {
  margin: 48px 0 16px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.zw-lead,
.zw-muted {
  margin: 16px 0 0;
  max-width: 54ch;
  color: var(--zw-muted);
}

.zw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--zw-radius);
  font-family: var(--zw-font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--zw-ease), color var(--zw-ease), opacity var(--zw-ease);
}

.zw-btn:hover {
  opacity: 0.92;
}

.zw-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.zw-btn--lime {
  background: var(--zw-lime);
  color: var(--zw-ink);
}

.zw-btn--ghost {
  background: transparent;
  color: var(--zw-paper);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.zw-btn--ghost:hover {
  background: var(--zw-paper);
  color: var(--zw-ink);
  opacity: 1;
}

.zw-btn--paper-ink {
  background: var(--zw-ink);
  color: var(--zw-paper);
}

.zw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.zw-header {
  position: sticky;
  top: 0;
  z-index: 400;
  width: 100%;
  height: var(--zw-header-h);
  display: flex;
  align-items: center;
  background: var(--zw-paper);
  border-bottom: 1px solid var(--zw-line);
  transition: background var(--zw-ease), border-color var(--zw-ease), box-shadow var(--zw-ease);
}

.zw-header.is-scrolled {
  background: var(--zw-ink);
  border-bottom-color: var(--zw-line-on-dark);
  box-shadow: var(--zw-shadow);
}

.zw-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: min(100% - 40px, var(--zw-max));
  max-width: 100%;
  margin-inline: auto;
}

.zw-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-self: start;
  gap: 3px;
  min-width: 0;
  max-width: 100%;
  color: var(--zw-ink);
  font-family: var(--zw-font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.zw-logo .custom-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.zw-logo__zumba {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
  line-height: 0;
}

.zw-logo__zumba img {
  height: 40px;
  width: auto;
  max-width: min(160px, 42vw);
  display: block;
}

.zw-logo__word {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--zw-ink);
  color: var(--zw-lime);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  line-height: 1.35;
}

.zw-header.is-scrolled .zw-logo__zumba,
.zw-header.is-menu-open .zw-logo__zumba {
  background: var(--zw-paper);
  border-radius: 6px;
  padding: 4px 8px;
}

.zw-header.is-scrolled .zw-logo__word,
.zw-header.is-menu-open .zw-logo__word {
  background: var(--zw-lime);
  color: var(--zw-ink);
}

.zw-header.is-menu-open {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.zw-nav {
  justify-self: center;
}

.zw-nav ul {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zw-nav a {
  color: var(--zw-ink);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.zw-nav a:hover,
.zw-header.is-scrolled .zw-nav a:hover {
  color: var(--zw-lime);
}

.zw-header.is-scrolled .zw-nav a {
  color: var(--zw-paper);
}

.zw-header__cta {
  justify-self: end;
}

.zw-nav__cta {
  display: none;
}

.zw-menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--zw-ink);
  cursor: pointer;
}

.zw-header.is-scrolled .zw-menu-toggle,
.zw-header.is-menu-open .zw-menu-toggle {
  color: var(--zw-paper);
}

.zw-menu-toggle span,
.zw-menu-toggle span::before,
.zw-menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform var(--zw-ease), top var(--zw-ease), background-color var(--zw-ease);
}

.zw-menu-toggle span::before,
.zw-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.zw-menu-toggle span::before {
  top: -6px;
}

.zw-menu-toggle span::after {
  top: 6px;
}

.zw-menu-toggle[aria-expanded="true"] span {
  background-color: transparent;
}

.zw-menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.zw-menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.zw-hero {
  position: relative;
  min-height: calc(100svh - var(--zw-header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--zw-paper);
  background: var(--zw-ink);
}

.zw-hero__media,
.zw-hero__video,
.zw-hero__placeholder {
  position: absolute;
  inset: 0;
}

.zw-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.zw-hero__placeholder {
  background:
    radial-gradient(circle at 20% 20%, rgba(199, 255, 0, 0.12), transparent 36%),
    radial-gradient(circle at 80% 80%, rgba(190, 45, 147, 0.16), transparent 40%),
    #111;
  display: grid;
  place-items: end start;
}

.zw-hero__placeholder span {
  margin: 0 0 28px 28px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.zw-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(134, 14, 102, 0.38) 0%, rgba(134, 14, 102, 0.58) 42%, rgba(134, 14, 102, 0.82) 100%);
  pointer-events: none;
}

.zw-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0 72px;
}

.zw-hero h1 {
  margin: 0 auto;
  max-width: min(16ch, 100%);
  font-family: var(--zw-font-display);
  font-size: clamp(1.55rem, 7.2vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.zw-hero p {
  margin: 16px auto 0;
  max-width: 36ch;
  color: var(--zw-muted-on-dark);
}

.zw-hero .zw-actions {
  justify-content: center;
}

.zw-band {
  padding: clamp(64px, 8vw, 104px) 0;
}

.zw-band--paper {
  background: #f4f4f2;
}

.zw-band--ink {
  background: var(--zw-ink);
  color: var(--zw-paper);
}

.zw-band--ink .zw-lead,
.zw-band--ink .zw-muted {
  color: var(--zw-muted-on-dark);
}

.zw-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.zw-facts,
.zw-places,
.zw-prices {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.zw-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.zw-facts li,
.zw-places li,
.zw-prices li {
  display: flex;
  justify-content: space-between;
  gap: 12px 16px;
  min-width: 0;
  padding: 16px 0;
  border-top: 1px solid var(--zw-line);
}

.zw-band--ink .zw-prices li {
  border-top-color: var(--zw-line-on-dark);
}

.zw-facts li {
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--zw-line);
  padding: 20px;
}

.zw-facts strong {
  font-family: var(--zw-font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.zw-places li {
  flex-direction: column;
  gap: 4px;
}

.zw-prices li {
  flex-wrap: wrap;
}

.zw-prices li span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.zw-prices strong {
  flex: none;
  font-family: var(--zw-font-display);
  white-space: nowrap;
}

.zw-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.zw-cards--two {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.zw-card {
  min-width: 0;
  max-width: 100%;
  padding: 28px 24px;
  border: 1px solid var(--zw-line);
  background: var(--zw-paper);
}

.zw-card h2,
.zw-card h3 {
  margin: 0 0 10px;
  font-family: var(--zw-font-display);
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.zw-card p {
  margin: 0;
  color: var(--zw-muted);
}

.zw-card p + p {
  margin-top: 8px;
}

.zw-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zw-map {
  position: relative;
  z-index: 0;
  isolation: isolate;
  height: min(480px, 62vh);
  margin-top: 32px;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--zw-line);
  background: #ececec;
}

.zw-map-note {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--zw-muted);
}

.zw-pin {
  background: transparent;
  border: 0;
}

.zw-pin span {
  display: block;
  width: 18px;
  height: 18px;
  margin: 2px;
  border: 2px solid var(--zw-ink);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(134, 14, 102, 0.28);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  border-radius: 0;
  box-shadow: var(--zw-shadow);
}

.leaflet-popup-content {
  margin: 12px 14px;
  font-family: var(--zw-font-body);
  font-size: 0.92rem;
  line-height: 1.45;
}

.leaflet-popup-content strong {
  font-family: var(--zw-font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.leaflet-popup-content a {
  color: var(--zw-ink);
  font-weight: 700;
}

.zw-schedule {
  display: grid;
  gap: 0;
  margin-top: 32px;
}

.zw-slot {
  display: grid;
  grid-template-columns: minmax(0, 140px) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  min-width: 0;
  padding: 18px 0;
  border-top: 1px solid var(--zw-line);
}

.zw-band--ink .zw-slot {
  border-top-color: var(--zw-line-on-dark);
}

.zw-slot strong {
  font-family: var(--zw-font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.zw-slot span {
  min-width: 0;
  color: var(--zw-muted);
  overflow-wrap: anywhere;
}

.zw-band--ink .zw-slot span {
  color: var(--zw-muted-on-dark);
}

.zw-slot b {
  color: var(--zw-lime);
  font-variant-numeric: tabular-nums;
}

.zw-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.zw-gallery__item {
  margin: 0;
  overflow: hidden;
  background: var(--zw-ink);
}

.zw-gallery__item--wide {
  grid-column: 1 / -1;
}

.zw-gallery img,
.zw-page__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
}

.zw-gallery__item--wide img,
.zw-page__photo img {
  aspect-ratio: 16 / 9;
}

.zw-page__photo {
  margin: 0 0 32px;
  overflow: hidden;
}

@media (min-width: 760px) {
  .zw-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .zw-gallery__item--wide {
    grid-column: 1 / -1;
  }
}

.zw-people {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.zw-person {
  padding: 0;
}

.zw-person__photo {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  margin-bottom: 14px;
  background: var(--zw-ink);
  color: var(--zw-lime);
  font-family: var(--zw-font-display);
  font-size: 2rem;
  font-weight: 800;
}

.zw-person h2,
.zw-person h3 {
  margin: 0;
  font-family: var(--zw-font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.zw-person p {
  margin: 6px 0 0;
  color: var(--zw-muted);
  font-size: 0.92rem;
}

.zw-faq {
  display: grid;
  gap: 0;
  margin-top: 28px;
}

.zw-faq details {
  border-top: 1px solid var(--zw-line);
}

.zw-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 700;
}

.zw-faq summary::-webkit-details-marker {
  display: none;
}

.zw-faq details p {
  margin: 0 0 18px;
  max-width: 62ch;
  color: var(--zw-muted);
}

.zw-cta-panel {
  text-align: center;
}

.zw-cta-panel .zw-lead,
.zw-cta-panel .zw-actions {
  margin-inline: auto;
}

.zw-cta-panel .zw-actions {
  justify-content: center;
}

.zw-page {
  padding: clamp(48px, 7vw, 88px) 0 96px;
}

.zw-pagehead {
  margin-bottom: 40px;
}

.zw-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}

.zw-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 650;
}

.zw-form input,
.zw-form textarea,
.zw-form select {
  width: 100%;
  border: 1px solid var(--zw-line);
  border-radius: var(--zw-radius);
  padding: 12px 14px;
  font: inherit;
  background: var(--zw-paper);
  color: var(--zw-ink);
}

.zw-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--zw-ink) 50%), linear-gradient(135deg, var(--zw-ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.zw-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.zw-form__opt {
  font-weight: 500;
  color: var(--zw-muted);
}

.zw-form label.zw-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}

.zw-form__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.2em;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--zw-ink);
}

.zw-form__check span {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}

.zw-form__check a {
  text-decoration: underline;
}

.zw-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.zw-form-ok,
.zw-form-errors {
  max-width: 560px;
  margin: 0 0 24px;
  padding: 14px 16px;
  border-radius: var(--zw-radius);
}

.zw-form-ok {
  background: var(--zw-lime);
  color: var(--zw-ink);
  font-weight: 650;
}

.zw-form-errors {
  background: rgba(134, 14, 102, 0.08);
  border: 1px solid var(--zw-line);
}

.zw-form-errors ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.zw-contact__mail {
  margin-top: 28px;
}

.zw-contact__mail a {
  color: var(--zw-ink);
  font-weight: 700;
}

.zw-legal {
  max-width: 46rem;
}

.zw-legal h2 {
  margin: 32px 0 8px;
  font-size: 1.1rem;
  scroll-margin-top: 96px;
}

.zw-legal h3 {
  margin: 20px 0 8px;
  font-size: 1rem;
  font-weight: 800;
}

.zw-legal p + p,
.zw-legal p + ul,
.zw-legal ul + p,
.zw-legal address + p {
  margin-top: 12px;
}

.zw-legal ul,
.zw-legal ol {
  padding-left: 1.2em;
}

.zw-legal li + li {
  margin-top: 6px;
}

.zw-legal a {
  color: var(--zw-ink);
  font-weight: 700;
  text-underline-offset: 0.15em;
}

.zw-legal code {
  font-size: 0.92em;
  word-break: break-word;
}

.zw-legal__meta {
  margin: -8px 0 24px;
  color: var(--zw-muted);
  font-size: 0.88rem;
}

.zw-legal__toc {
  margin: 0 0 28px;
  padding: 18px 20px;
  border: 1px solid var(--zw-line);
  background: rgba(199, 255, 0, 0.12);
}

.zw-legal__toc p {
  margin: 0 0 10px;
  font-family: var(--zw-font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.zw-legal__toc ol {
  margin: 0;
}

.zw-vcard {
  display: block;
  margin: 12px 0;
  font-style: normal;
  line-height: 1.55;
}

.zw-footer {
  background: var(--zw-ink);
  color: var(--zw-paper);
  padding: 48px 0 28px;
}

.zw-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 32px;
}

.zw-footer a {
  color: var(--zw-muted-on-dark);
  text-decoration: none;
}

.zw-footer a:hover {
  color: var(--zw-lime);
}

.zw-footer ul,
.zw-footer .zw-prices {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.zw-footer li + li,
.zw-footer .zw-prices li + li {
  margin-top: 8px;
}

.zw-footer .zw-prices li {
  padding: 0;
  border: 0;
  font-size: 0.92rem;
}

.zw-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--zw-line-on-dark);
}

.zw-footer__copy {
  margin: 0;
  flex: 1 1 16rem;
  color: var(--zw-muted-on-dark);
  font-size: 0.88rem;
}

.zw-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 5px 8px 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--zw-paper);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

.zw-footer .zw-credit:hover {
  color: var(--zw-paper);
  border-color: var(--zw-lime);
}

.zw-credit span {
  min-width: 0;
}

.zw-credit img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}

.zw-footer__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-family: var(--zw-font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.zw-footer__brand .zw-logo__zumba {
  background: var(--zw-paper);
  border-radius: 6px;
  padding: 5px 9px;
}

.zw-footer__brand .zw-logo__word {
  background: var(--zw-lime);
  color: var(--zw-ink);
}

.zw-footer__nap {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--zw-muted-on-dark);
}

.zw-footer__nap strong {
  display: block;
  color: var(--zw-paper);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.zw-footer__nap li + li {
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .zw-header .zw-logo {
    align-items: flex-start;
  }
}

@media (max-width: 980px) {
  .zw-people {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .zw-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .zw-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .zw-header__cta {
    display: none;
  }

  .zw-logo__zumba img {
    height: 32px;
  }

  .zw-logo,
  .zw-menu-toggle {
    position: relative;
    z-index: 2;
  }

  .zw-menu-toggle {
    display: grid;
    place-items: center;
  }

  .zw-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    width: 100%;
    height: 100dvh;
    min-height: 100svh;
    padding: calc(var(--zw-header-h) + 20px) 24px 32px;
    background:
      radial-gradient(ellipse 80% 50% at 110% 110%, rgba(199, 255, 0, 0.28), transparent 58%),
      var(--zw-ink);
    visibility: hidden;
    clip-path: inset(0 0 100% 0);
    -webkit-clip-path: inset(0 0 100% 0);
    pointer-events: none;
    overflow: auto;
    overscroll-behavior: contain;
    transition: clip-path 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.5s;
  }

  .zw-nav.is-open {
    visibility: visible;
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
    pointer-events: auto;
    transition: clip-path 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
  }

  .zw-nav ul {
    flex-direction: column;
    gap: 0;
    counter-reset: zw-menu;
  }

  .zw-nav li {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    border-bottom: 1px solid var(--zw-line-on-dark);
    counter-increment: zw-menu;
  }

  .zw-nav.is-open li {
    animation: zw-menu-item 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .zw-nav.is-open li:nth-child(1) { animation-delay: 0.08s; }
  .zw-nav.is-open li:nth-child(2) { animation-delay: 0.14s; }
  .zw-nav.is-open li:nth-child(3) { animation-delay: 0.2s; }
  .zw-nav.is-open li:nth-child(4) { animation-delay: 0.26s; }
  .zw-nav.is-open li:nth-child(5) { animation-delay: 0.32s; }
  .zw-nav.is-open li:nth-child(6) { animation-delay: 0.38s; }
  .zw-nav.is-open li:nth-child(7) { animation-delay: 0.44s; }

  .zw-nav a:not(.zw-btn) {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 14px 0;
    color: var(--zw-paper);
    font-family: var(--zw-font-display);
    font-size: clamp(1.4rem, 6.4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    text-transform: uppercase;
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
  }

  .zw-nav a:not(.zw-btn)::before {
    content: counter(zw-menu, decimal-leading-zero);
    flex: 0 0 auto;
    color: var(--zw-lime);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
  }

  .zw-nav a:not(.zw-btn):hover,
  .zw-nav .current-menu-item > a,
  .zw-nav .current_page_item > a {
    color: var(--zw-lime);
  }

  .zw-nav__cta {
    display: inline-flex;
    width: 100%;
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  .zw-nav.is-open .zw-nav__cta {
    animation: zw-menu-item 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
  }

  .zw-split,
  .zw-cards,
  .zw-cards--two,
  .zw-slot {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .zw-people,
  .zw-facts {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .zw-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .zw-wrap,
  .zw-header__inner {
    width: min(100% - 28px, var(--zw-max));
  }

  .zw-actions {
    flex-direction: column;
  }

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

  .zw-btn {
    width: 100%;
  }
}

@keyframes zw-menu-item {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .zw-nav,
  .zw-nav.is-open,
  .zw-menu-toggle span,
  .zw-menu-toggle span::before,
  .zw-menu-toggle span::after {
    transition: none;
  }

  .zw-nav li,
  .zw-nav__cta,
  .zw-nav.is-open li,
  .zw-nav.is-open .zw-nav__cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
