:root {
  --brand-primary: #610c7d;
  --brand-primary-hover: #752a8d;
  --brand-primary-deep: #3f1151;
  --brand-secondary: #752a8d;
  --brand-accent: #89499e;
  --brand-accent-deep: #610c7d;
  --brand-background: #140d18;
  --brand-surface: #211326;
  --brand-surface-alt: #f6f0f8;
  --brand-line: rgba(97, 12, 125, 0.22);
  --brand-text: #fff;
  --brand-muted: #d8cce0;
  --brand-body: #2b1d32;
  --brand-ink: #2a1c31;
  --brand-ink-muted: #6f5d79;
  --brand-surface-border: rgba(97, 12, 125, 0.14);
  --font-heading: "Bahnschrift", "Franklin Gothic Book", "Microsoft YaHei", "Open Sans", sans-serif;
  --font-body: "Microsoft YaHei", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-height: 78px;
  --content-width: min(1440px, calc(100vw - 64px));
  --content-padding: clamp(24px, 2.4vw, 32px);
  --ease-fast: 180ms ease;
  --ease-slow: 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(97, 12, 125, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(137, 73, 158, 0.12), transparent 20%),
    linear-gradient(180deg, #140d18 0%, #100914 50%, #180f1d 100%);
  color: var(--brand-text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body.has-event-modal {
  overflow: hidden;
}

body.has-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wabo-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  background: linear-gradient(180deg, rgba(252, 249, 253, 0.98), rgba(245, 239, 248, 0.96));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(97, 12, 125, 0.12);
  box-shadow: 0 10px 24px rgba(42, 28, 49, 0.08);
}

body.admin-bar .wabo-site-header {
  z-index: 100001;
}

.wabo-header-shell {
  position: relative;
  width: var(--content-width);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(20px, 3vw, 48px);
}

.wabo-header-brand {
  position: relative;
  z-index: 3;
}

.wabo-brand-logo {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}

.wabo-brand-logo__image {
  display: block;
  width: auto;
  height: 40px;
  max-width: min(100%, 230px);
}

.wabo-header-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 2vw, 34px);
  justify-self: stretch;
}

.wabo-top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2vw, 42px);
  min-width: 0;
}

.wabo-top-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(42, 28, 49, 0.82);
  transition: color var(--ease-fast), opacity var(--ease-fast);
}

.wabo-top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ease-fast);
}

.wabo-top-nav a:hover,
.wabo-top-nav a.is-current {
  color: var(--brand-primary);
}

.wabo-top-nav a:hover::after,
.wabo-top-nav a.is-current::after {
  transform: scaleX(1);
}

.wabo-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}

.wabo-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(97, 12, 125, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.wabo-lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  padding: 0 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(42, 28, 49, 0.8);
  transition: background var(--ease-fast), color var(--ease-fast);
}

.wabo-lang-switcher a.is-active,
.wabo-lang-switcher a:hover {
  background: var(--brand-primary);
  color: #fff;
}

.wabo-header-divider {
  width: 1px;
  height: 30px;
  background: rgba(97, 12, 125, 0.16);
}

.wabo-header-utility-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wabo-utility-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(97, 12, 125, 0.24);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-primary);
  transition: border-color var(--ease-fast), background var(--ease-fast), color var(--ease-fast);
}

.wabo-utility-link::after {
  content: "↗";
  font-size: 0.8rem;
  line-height: 1;
}

.wabo-utility-link:hover {
  border-color: rgba(97, 12, 125, 0.42);
  background: rgba(97, 12, 125, 0.08);
  color: var(--brand-primary-deep);
}

.wabo-utility-link--solid {
  background: linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-primary-deep) 100%);
  border-color: var(--brand-primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(97, 12, 125, 0.18);
}

.wabo-utility-link--solid:hover {
  background: linear-gradient(180deg, var(--brand-primary-hover) 0%, var(--brand-primary) 100%);
  color: #fff;
}

.wabo-menu-toggle,
.wabo-header-backdrop {
  display: none;
}

.wabo-menu-state {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wabo-menu-toggle {
  position: relative;
  z-index: 3;
  appearance: none;
  border: 0;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  color: var(--brand-primary);
  cursor: pointer;
}

.wabo-menu-toggle span {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background: currentColor;
  transition: transform var(--ease-fast), opacity var(--ease-fast), top var(--ease-fast);
}

.wabo-menu-toggle span:nth-child(1) {
  top: 16px;
}

.wabo-menu-toggle span:nth-child(2) {
  top: 23px;
}

.wabo-menu-toggle span:nth-child(3) {
  top: 30px;
}

.wabo-site-header.is-menu-open .wabo-menu-toggle span:nth-child(1),
.wabo-menu-state:checked + .wabo-menu-toggle span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.wabo-site-header.is-menu-open .wabo-menu-toggle span:nth-child(2),
.wabo-menu-state:checked + .wabo-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.wabo-site-header.is-menu-open .wabo-menu-toggle span:nth-child(3),
.wabo-menu-state:checked + .wabo-menu-toggle span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.wabo-editorial-home,
.wabo-archive-page,
.wabo-single-event,
.wabo-fallback-page {
  padding-top: var(--header-height);
}

.wabo-hero {
  position: relative;
  min-height: calc(100vh - 8px);
  isolation: isolate;
  overflow: hidden;
}

.wabo-hero__media {
  position: absolute;
  inset: 0;
}

.wabo-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.wabo-hero__media img,
.wabo-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: var(--hero-object-fit, cover);
  object-position: var(--hero-position-x, 48%) var(--hero-position-y, 24%);
  transform: translateY(calc(var(--hero-shift, 0px) * -0.16)) scale(1.04);
  transition: transform var(--ease-slow);
}

.wabo-hero__grain,
.wabo-hero::before,
.wabo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.wabo-hero::before {
  background:
    linear-gradient(var(--hero-overlay-direction, to right), rgba(20, 5, 28, 0.1) 0%, rgba(20, 5, 28, 0.12) 24%, rgba(20, 5, 28, var(--hero-overlay-alpha-1, 0.56)) 54%, rgba(20, 5, 28, var(--hero-overlay-alpha-2, 0.86)) 78%, rgba(20, 5, 28, var(--hero-overlay-alpha-3, 0.96)) 100%);
  z-index: 1;
}

.wabo-hero::after {
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0 8px,
      rgba(232, 184, 216, 0.014) 8px 10px,
      transparent 10px 34px
    );
  z-index: 2;
  mix-blend-mode: screen;
}

.wabo-hero__grain {
  background: radial-gradient(circle at center, transparent 0%, rgba(16, 10, 19, 0.26) 100%);
  z-index: 2;
}

.wabo-hero__overlay {
  position: relative;
  z-index: 3;
  width: var(--content-width);
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 78px) var(--content-padding) 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: var(--hero-content-align, stretch);
}

.wabo-hero__event-block {
  position: relative;
  align-self: var(--hero-content-align, flex-end);
  width: min(100%, calc(var(--hero-copy-width, 620px) + 188px));
  margin-right: clamp(28px, 6vw, 108px);
  margin-top: clamp(150px, var(--hero-content-offset, 48vh), 250px);
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 2.8vw, 48px);
}

.wabo-hero__event-block::before {
  content: "";
  position: absolute;
  inset: -44px -40px -34px -132px;
  background: linear-gradient(90deg, rgba(20, 5, 28, 0) 0%, rgba(20, 5, 28, 0.78) 28%, rgba(20, 5, 28, 0.96) 100%);
  border-left: 1px solid rgba(137, 73, 158, 0.64);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 7% 54%);
  box-shadow: 0 18px 44px rgba(10, 4, 14, 0.22);
}

.wabo-hero__date {
  position: relative;
  z-index: 1;
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  padding-top: 4px;
}

.wabo-hero__date span,
.wabo-hero__date em {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: clamp(1rem, 1vw + 0.8rem, 1.3rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.wabo-hero__date strong {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 8vw, 8.4rem);
  line-height: 0.84;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.26);
}

.wabo-hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: start;
  width: min(100%, var(--hero-copy-width, 620px));
  max-width: var(--hero-copy-width, 620px);
  margin-left: 0;
  padding: clamp(20px, 2vw, 28px) 0 0;
  background: none;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  clip-path: none;
}

.wabo-hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 10px;
}

.wabo-hero__sample-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(137, 73, 158, 0.22);
  background: rgba(137, 73, 158, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.wabo-kicker,
.wabo-section-label {
  margin: 0;
  color: var(--brand-accent);
  font-size: 0.82rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.wabo-hero__copy h1,
.wabo-section-head h2,
.wabo-archive-hero h1,
.wabo-single-event__copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 0.94;
  text-transform: uppercase;
}

.wabo-hero__copy h1 {
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.96;
  max-width: 11ch;
  text-wrap: balance;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.wabo-hero__facts {
  display: grid;
  grid-template-columns: 130px minmax(260px, 1fr) 120px;
  gap: 14px 24px;
  align-items: start;
  margin-top: 24px;
}

.wabo-hero__fact {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.wabo-hero__fact:nth-child(2) .wabo-hero__fact-value {
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: nowrap;
}

.wabo-hero__fact-label {
  color: var(--brand-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wabo-hero__fact-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 600;
}

.wabo-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.wabo-meta-line span {
  position: relative;
}

.wabo-meta-line span + span::before {
  content: "/";
  position: absolute;
  left: -12px;
  color: var(--brand-accent);
}

.wabo-hero__actions,
.wabo-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
}

.wabo-hero__actions {
  justify-content: flex-end;
  margin-top: 28px;
}

.wabo-button,
.wabo-link-button {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.wabo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wabo-button--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--brand-primary-hover) 0%, var(--brand-primary) 72%);
  box-shadow: 0 16px 36px rgba(97, 12, 125, 0.28);
}

.wabo-link-button,
.wabo-inline-link {
  color: var(--brand-accent);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wabo-link-button {
  padding: 0;
  background: transparent;
}

.wabo-inline-link {
  position: relative;
}

.wabo-inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.38);
  transform-origin: left;
  transition: transform var(--ease-fast);
}

.wabo-inline-link:hover::after {
  transform: scaleX(1);
}

.wabo-scroll-cue {
  align-self: end;
  justify-self: start;
  margin-top: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.wabo-sticky-categories {
  position: sticky;
  top: var(--header-height);
  z-index: 70;
  padding: 0 max(24px, calc((100vw - var(--content-width)) / 2));
  border-top: 1px solid rgba(97, 12, 125, 0.12);
  border-bottom: 1px solid rgba(97, 12, 125, 0.12);
  background: rgba(19, 12, 24, 0.88);
  backdrop-filter: blur(16px);
}

.wabo-category-bar {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: none;
}

.wabo-category-bar::-webkit-scrollbar {
  display: none;
}

.wabo-category-pill {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(137, 73, 158, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background var(--ease-fast), border-color var(--ease-fast), color var(--ease-fast);
}

.wabo-category-pill.is-active,
.wabo-category-pill:hover {
  border-color: var(--brand-accent);
  background: linear-gradient(180deg, rgba(137, 73, 158, 0.16), rgba(97, 12, 125, 0.24));
  color: #fff;
}

.wabo-timeline-stage,
.wabo-feature-strip,
.wabo-gallery-editorial,
.wabo-story-ribbon,
.wabo-sponsor-strip,
.wabo-community-strip,
.wabo-single-event__body,
.wabo-single-event__gallery,
.wabo-related-events,
.wabo-archive-tools {
  width: var(--content-width);
  margin: 0 auto;
}

.wabo-timeline-stage,
.wabo-feature-strip,
.wabo-gallery-editorial,
.wabo-story-ribbon,
.wabo-sponsor-strip,
.wabo-community-strip,
.wabo-single-event__gallery,
.wabo-related-events {
  padding: clamp(48px, 7vw, 96px) 0;
}

.wabo-section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
  max-width: 720px;
}

.wabo-section-head h2,
.wabo-archive-hero h1 {
  font-size: clamp(2rem, 4.6vw, 4.6rem);
}

.wabo-section-head p:last-child,
.wabo-archive-hero p,
.wabo-single-event__copy p,
.wabo-summary,
.wabo-story-copy p {
  color: var(--brand-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.wabo-event-shell.is-loading {
  opacity: 0.74;
}

.wabo-timeline-list {
  display: grid;
  gap: 24px;
}

.wabo-timeline-item {
  display: grid;
  grid-template-columns: minmax(120px, 150px) 52px minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: 18px;
  align-items: center;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(232, 184, 216, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--ease-slow), transform var(--ease-slow);
}

.wabo-timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wabo-timeline-item.status-completed {
  opacity: 1;
  filter: none;
}

.wabo-timeline-item.is-right .wabo-timeline-poster {
  order: 4;
}

.wabo-timeline-item.is-right .wabo-timeline-copy {
  order: 3;
}

.wabo-timeline-date {
  display: grid;
  gap: 4px;
  justify-items: start;
}

.wabo-timeline-month,
.wabo-timeline-year {
  font-family: var(--font-heading);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.wabo-timeline-day {
  font-family: var(--font-heading);
  font-size: clamp(3.6rem, 8vw, 5.4rem);
  line-height: 0.9;
}

.wabo-timeline-rail {
  position: relative;
  display: flex;
  align-items: var(--hero-content-align, stretch);
  justify-content: center;
  height: 100%;
}

.wabo-timeline-rail::before {
  content: "";
  width: 2px;
  background: linear-gradient(180deg, rgba(232, 184, 216, 0.1), rgba(232, 184, 216, 0.48), rgba(232, 184, 216, 0.1));
}

.wabo-timeline-rail span {
  position: absolute;
  top: 24px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-accent), var(--brand-primary));
  box-shadow: 0 0 0 8px rgba(126, 54, 140, 0.12);
}

.wabo-timeline-poster {
  overflow: hidden;
  min-height: 210px;
  background: linear-gradient(180deg, rgba(126, 54, 140, 0.22), rgba(85, 26, 139, 0.1));
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.wabo-media-fallback {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(176, 101, 196, 0.22), transparent 55%),
    linear-gradient(155deg, rgba(42, 19, 52, 0.96), rgba(21, 10, 28, 0.96));
  border: 1px solid rgba(232, 184, 216, 0.12);
}

.wabo-media-fallback__logo {
  width: min(180px, 62%);
  height: auto;
  opacity: 0.96;
}

.wabo-media-fallback__label {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wabo-timeline-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.wabo-timeline-item:hover .wabo-timeline-poster img,
.wabo-feature-poster:hover img,
.wabo-gallery-cell:hover img {
  transform: scale(1.06);
}

.wabo-timeline-copy h3,
.wabo-feature-poster__copy h3 {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2vw, 2.6rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.wabo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wabo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(137, 73, 158, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wabo-chip-status {
  border-color: rgba(137, 73, 158, 0.34);
  color: var(--brand-accent);
}

.status-upcoming .wabo-timeline-rail span,
.status-ongoing .wabo-timeline-rail span {
  box-shadow: 0 0 0 10px rgba(232, 184, 216, 0.1), 0 0 22px rgba(232, 184, 216, 0.26);
}

.wabo-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.wabo-feature-poster {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1fr);
  min-height: 380px;
  background: linear-gradient(135deg, rgba(35, 18, 39, 0.92), rgba(20, 11, 24, 0.92));
  border: 1px solid rgba(232, 184, 216, 0.1);
}

.wabo-feature-poster__media {
  overflow: hidden;
  min-height: 100%;
}

.wabo-feature-poster__media,
.wabo-event-modal__media,
.wabo-single-event__media {
  background: linear-gradient(160deg, rgba(39, 16, 49, 0.94), rgba(19, 9, 28, 0.94));
}

.wabo-feature-poster__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.wabo-feature-poster__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.wabo-feature-poster__date {
  color: var(--brand-accent);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.wabo-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, minmax(200px, 280px));
  gap: 16px;
}

.wabo-gallery-cell {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.wabo-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.wabo-gallery-cell figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(8, 5, 9, 0.92));
}

.cell-1 {
  grid-column: 1 / span 5;
  grid-row: 1 / span 2;
}

.cell-2 {
  grid-column: 6 / span 4;
}

.cell-3 {
  grid-column: 10 / span 3;
}

.cell-4 {
  grid-column: 6 / span 3;
}

.cell-5 {
  grid-column: 9 / span 4;
}

.cell-6 {
  grid-column: 1 / span 12;
  min-height: 0;
}

.cell-6 {
  display: none;
}

.wabo-story-ribbon {
  display: grid;
  gap: 26px;
  border-top: 1px solid rgba(232, 184, 216, 0.08);
  border-bottom: 1px solid rgba(232, 184, 216, 0.08);
}

.wabo-story-track {
  display: flex;
  gap: 34px;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 184, 216, 0.32);
}

.wabo-story-track span {
  animation: wabo-marquee 20s linear infinite;
}

@keyframes wabo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-120%);
  }
}

.wabo-sponsor-rail,
.wabo-community-links,
.wabo-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.wabo-sponsor-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 80px;
  padding: 16px;
  border-bottom: 1px solid rgba(97, 12, 125, 0.18);
}

.wabo-sponsor-mark img {
  max-height: 48px;
  width: auto;
}

.wabo-community-strip {
  display: grid;
  gap: 22px;
}

.wabo-community-links a,
.wabo-footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(137, 73, 158, 0.18);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.wabo-site-footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 32px 0 54px;
  border-top: 1px solid rgba(97, 12, 125, 0.12);
}

.wabo-footer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wabo-event-modal[hidden] {
  display: none;
}

.wabo-event-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  padding: calc(var(--header-height) + 16px) 24px 16px;
  overflow: hidden;
}

.wabo-event-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 9, 0.84);
}

.wabo-event-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  width: min(1040px, 100%);
  height: auto;
  max-height: calc(100svh - var(--header-height) - 32px);
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(180deg, #160d19 0%, #0f0812 100%);
  border: 1px solid rgba(232, 184, 216, 0.18);
}

body.admin-bar .wabo-event-modal {
  padding-top: calc(var(--header-height) + 48px);
}

body.admin-bar .wabo-event-modal__panel {
  max-height: calc(100svh - var(--header-height) - 64px);
}

.wabo-event-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.wabo-event-modal__media {
  min-height: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
}

.wabo-event-modal__media img,
.wabo-event-modal__media video {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: none;
  object-fit: cover;
}

.wabo-event-modal__media video {
  object-fit: contain;
  background: #080509;
}

.wabo-event-modal__media .wabo-media-fallback,
.wabo-feature-poster__media .wabo-media-fallback,
.wabo-hero__media .wabo-media-fallback,
.wabo-single-event__media .wabo-media-fallback,
.wabo-timeline-poster .wabo-media-fallback {
  min-height: inherit;
}

.wabo-event-modal__content {
  min-width: 0;
  overflow-y: auto;
  padding: 24px;
}

.wabo-event-modal__content h2 {
  margin: 14px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.wabo-modal-copy {
  margin-top: 22px;
  color: var(--brand-muted);
  line-height: 1.82;
}

.wabo-empty-state {
  padding: 32px 0;
  color: var(--brand-muted);
}

.wabo-archive-hero,
.wabo-single-event__hero {
  width: var(--content-width);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 84px) 0 24px;
}

.wabo-archive-tools {
  display: grid;
  gap: 20px;
  padding-bottom: 16px;
}

.wabo-search-shell {
  display: grid;
  gap: 10px;
}

.wabo-search-shell label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.wabo-search-shell input {
  width: min(520px, 100%);
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(232, 184, 216, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
}

.wabo-single-event__hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: start;
}

.wabo-single-event__media {
  overflow: hidden;
  min-height: 420px;
}

.wabo-single-event__media img,
.wabo-single-event__media video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.wabo-single-event__body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
  gap: 28px;
}

.wabo-single-event__sidebar {
  transform: translateY(clamp(-240px, -15vw, -180px));
}

.wabo-single-event__article,
.wabo-data-stack {
  color: var(--brand-muted);
  line-height: 1.82;
}

.wabo-data-stack {
  padding: 24px;
  border: 1px solid rgba(232, 184, 216, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.wabo-data-stack h2 {
  margin-top: 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.wabo-data-stack dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.wabo-data-stack dt {
  color: var(--brand-accent);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wabo-data-stack dd {
  margin: 0 0 10px;
}

.wabo-single-event__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wabo-single-event__gallery-grid figure {
  margin: 0;
  overflow: hidden;
  min-height: 220px;
}

.wabo-single-event__gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1280px) {
  .wabo-header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .wabo-menu-toggle,
  .wabo-header-backdrop {
    display: block;
  }

  .wabo-header-panel {
    position: fixed;
    top: var(--header-height);
    right: max(14px, var(--content-padding));
    left: max(14px, var(--content-padding));
    width: auto;
    max-width: 520px;
    margin-left: auto;
    padding: 22px 22px 24px;
    background: linear-gradient(180deg, rgba(252, 248, 253, 0.98), rgba(244, 238, 247, 0.96));
    border: 1px solid rgba(97, 12, 125, 0.14);
    box-shadow: 0 22px 46px rgba(42, 28, 49, 0.24);
    clip-path: polygon(0 0, 100% 0, 100% 94%, 96% 100%, 0 100%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity var(--ease-fast), transform var(--ease-fast);
  }

  .wabo-top-nav {
    display: grid;
    justify-items: start;
    gap: 4px;
    padding-top: 0;
  }

  .wabo-top-nav a {
    width: 100%;
    padding: 12px 0;
  }

  .wabo-header-actions {
    display: grid;
    justify-items: start;
    gap: 14px;
    padding-bottom: 8px;
  }

  .wabo-header-divider {
    width: 100%;
    height: 1px;
  }

  .wabo-header-utility-links {
    display: grid;
    width: 100%;
  }

  .wabo-utility-link {
    justify-content: space-between;
    width: 100%;
  }

  .wabo-site-header.is-menu-open .wabo-header-panel,
  .wabo-menu-state:checked ~ .wabo-header-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .wabo-header-backdrop {
    position: fixed;
    inset: var(--header-height) 0 0;
    border: 0;
    padding: 0;
    background: rgba(22, 14, 28, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease-fast);
  }

  .wabo-site-header.is-menu-open .wabo-header-backdrop,
  .wabo-menu-state:checked ~ .wabo-header-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .wabo-hero__overlay,
  .wabo-single-event__hero,
  .wabo-single-event__body {
    grid-template-columns: 1fr;
  }

  .wabo-single-event__sidebar {
    transform: none;
  }

  .wabo-hero__overlay {
    justify-content: space-between;
    gap: 20px;
  }

  .wabo-hero__event-block {
    width: min(100%, 680px);
    margin-right: clamp(18px, 4vw, 72px);
    margin-top: clamp(124px, 16vh, 196px);
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 28px;
  }

  .wabo-hero__event-block::before {
    inset: -34px -28px -28px -92px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 5% 52%);
  }

  .wabo-hero__copy {
    width: min(100%, min(var(--hero-copy-width, 560px), 560px));
    max-width: min(var(--hero-copy-width, 560px), 560px);
  }

  .wabo-hero__facts {
    grid-template-columns: 130px minmax(220px, 1fr) 120px;
  }

  .wabo-featured-grid,
  .wabo-feature-poster {
    grid-template-columns: 1fr;
  }

  .wabo-timeline-item {
    grid-template-columns: 120px 32px 1fr;
  }

  .wabo-timeline-poster {
    grid-column: 3;
  }

  .wabo-timeline-copy {
    grid-column: 3;
  }

  .wabo-gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .wabo-gallery-cell,
  .cell-1,
  .cell-2,
  .cell-3,
  .cell-4,
  .cell-5 {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  :root {
    --content-width: calc(100vw - 40px);
    --content-padding: 20px;
    --header-height: 68px;
  }

  .wabo-editorial-home,
  .wabo-archive-page,
  .wabo-single-event,
  .wabo-fallback-page {
    overflow-x: clip;
  }

  .wabo-header-shell {
    min-height: var(--header-height);
    padding: 0;
  }

  .wabo-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .wabo-header-panel {
    top: var(--header-height);
    right: 12px;
    left: 12px;
    max-width: none;
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 18px;
    clip-path: none;
  }

  .wabo-header-actions {
    width: 100%;
    justify-items: stretch;
    padding-bottom: 0;
  }

  .wabo-header-divider {
    display: none;
  }

  .wabo-utility-link {
    min-height: 42px;
  }

  .wabo-top-nav a {
    padding: 11px 0;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .wabo-lang-switcher,
  .wabo-header-utility-links {
    width: 100%;
  }

  .wabo-lang-switcher a {
    flex: 1 1 0;
  }

  .wabo-hero {
    min-height: clamp(520px, 72svh, 640px);
    height: auto;
  }

  .wabo-hero::before {
    background:
      linear-gradient(to bottom, rgba(17, 3, 26, 0) 0%, rgba(17, 3, 26, 0.18) 20%, rgba(17, 3, 26, 0.72) 58%, rgba(17, 3, 26, 0.97) 100%),
      linear-gradient(var(--hero-overlay-direction, to right), rgba(20, 5, 28, 0.04) 0%, rgba(20, 5, 28, 0.08) 26%, rgba(20, 5, 28, var(--hero-overlay-alpha-1, 0.56)) 64%, rgba(20, 5, 28, var(--hero-overlay-alpha-2, 0.86)) 86%, rgba(20, 5, 28, var(--hero-overlay-alpha-3, 0.96)) 100%);
  }

  .wabo-hero::after {
    opacity: 0.18;
  }

  .wabo-hero__media img,
  .wabo-hero__media video {
    object-fit: var(--hero-mobile-object-fit, var(--hero-object-fit, cover));
    object-position: var(--hero-mobile-position-x, 50%) var(--hero-mobile-position-y, 40%);
    transform: none;
  }

  .wabo-hero__overlay {
    min-height: clamp(520px, 72svh, 640px);
    padding-top: 30px;
    padding-bottom: 34px;
    justify-content: flex-start;
    align-items: var(--hero-mobile-content-align, flex-start);
  }

  .wabo-hero__event-block {
    width: 100%;
    margin-right: 0;
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: 14px;
    align-self: var(--hero-mobile-content-align, stretch);
  }

  .wabo-hero__event-block::before {
    display: none;
  }

  .wabo-hero__date {
    display: none;
  }

  .wabo-hero__copy {
    margin-left: 0;
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .wabo-hero__copy h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.02;
    max-width: 11ch;
    overflow-wrap: anywhere;
  }

  .wabo-hero__facts {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .wabo-hero__fact:nth-child(2) .wabo-hero__fact-value {
    white-space: normal;
    text-wrap: pretty;
  }

  .wabo-hero__actions {
    justify-content: flex-start;
    margin-top: 22px;
  }

  .wabo-hero__actions .wabo-button {
    width: min(100%, 280px);
    min-height: 48px;
  }

  .wabo-category-pill {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .wabo-sticky-categories {
    padding: 0 20px;
  }

  .wabo-category-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 14px 0;
  }

  .wabo-timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0 32px;
  }

  .wabo-timeline-poster,
  .wabo-timeline-copy,
  .wabo-timeline-item.is-right .wabo-timeline-poster,
  .wabo-timeline-item.is-right .wabo-timeline-copy {
    grid-column: auto;
    order: initial;
  }

  .wabo-timeline-date {
    grid-template-columns: auto auto auto;
    align-items: end;
    gap: 10px;
  }

  .wabo-timeline-day {
    font-size: 4rem;
  }

  .wabo-timeline-rail {
    display: none;
  }

  .wabo-timeline-poster {
    min-height: 240px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 8% 100%, 0 100%);
  }

  .wabo-timeline-copy h3,
  .wabo-feature-poster__copy h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .wabo-feature-strip,
  .wabo-gallery-editorial,
  .wabo-story-ribbon,
  .wabo-sponsor-strip,
  .wabo-community-strip,
  .wabo-timeline-stage,
  .wabo-single-event__gallery,
  .wabo-related-events {
    padding: 42px 0;
  }

  .wabo-section-head {
    margin-bottom: 24px;
  }

  .wabo-section-head h2,
  .wabo-archive-hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .wabo-feature-poster {
    min-height: 0;
  }

  .wabo-feature-poster__media {
    min-height: 220px;
  }

  .wabo-feature-poster__copy {
    padding: 22px;
  }

  .wabo-gallery-mosaic {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wabo-gallery-cell,
  .cell-1,
  .cell-2,
  .cell-3,
  .cell-4,
  .cell-5 {
    min-height: 210px;
  }

  .wabo-story-track {
    font-size: clamp(2rem, 13vw, 3.6rem);
  }

  .wabo-community-links a,
  .wabo-footer-links a {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-width: min(100%, 136px);
  }

  .wabo-site-footer {
    padding-bottom: 36px;
  }

  .wabo-single-event__hero {
    padding-top: 34px;
  }

  .wabo-single-event__media,
  .wabo-single-event__media img,
  .wabo-single-event__media video {
    min-height: 280px;
  }

  .wabo-single-event__gallery-grid {
    grid-template-columns: 1fr;
  }

  .wabo-event-modal__panel {
    display: block;
    width: min(100% - 24px, 560px);
    max-height: calc(100svh - var(--header-height) - 20px);
    margin: 0 auto;
  }

  .wabo-event-modal {
    padding: calc(var(--header-height) + 10px) 0 10px;
  }

  body.admin-bar .wabo-event-modal {
    padding-top: calc(var(--header-height) + 56px);
  }

  body.admin-bar .wabo-event-modal__panel {
    max-height: calc(100svh - var(--header-height) - 66px);
  }

  .wabo-event-modal__media,
  .wabo-event-modal__media img,
  .wabo-event-modal__media video {
    height: auto;
    min-height: 0;
    max-height: 46svh;
  }

  .wabo-event-modal__content {
    padding: 22px;
  }
}

@media (max-width: 767px) {
  .wabo-scroll-cue {
    display: none;
  }
}

@media (max-width: 390px) {
  .wabo-hero__media img,
  .wabo-hero__media video {
    object-fit: var(--hero-mobile-object-fit, var(--hero-object-fit, cover));
    object-position: var(--hero-mobile-position-x, 50%) var(--hero-mobile-position-y, 40%);
  }

  .wabo-wordmark__lead {
    font-size: 1.26rem;
  }

  .wabo-hero__copy {
    padding: 0;
  }

  .wabo-hero__copy h1 {
    font-size: clamp(1.85rem, 10vw, 2.35rem);
  }

  .wabo-hero__fact-value {
    font-size: 0.92rem;
  }

  .wabo-scroll-cue {
    letter-spacing: 0.22em;
  }

  .wabo-brand-logo__image {
    height: 32px;
    max-width: min(100%, 196px);
  }
}

@media (max-width: 768px) {
  .wabo-timeline-list {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 26px;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .wabo-timeline-item,
  .wabo-timeline-item.is-left,
  .wabo-timeline-item.is-right {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: stretch !important;
    gap: 16px !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 26px 0 34px;
  }

  .wabo-timeline-item > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .wabo-timeline-date,
  .wabo-timeline-rail,
  .wabo-timeline-poster,
  .wabo-timeline-copy,
  .wabo-timeline-item.is-left .wabo-timeline-poster,
  .wabo-timeline-item.is-left .wabo-timeline-copy,
  .wabo-timeline-item.is-right .wabo-timeline-poster,
  .wabo-timeline-item.is-right .wabo-timeline-copy {
    grid-column: 1 / -1 !important;
    order: initial !important;
  }

  .wabo-timeline-poster {
    width: 100% !important;
    min-height: 220px;
  }

  .wabo-timeline-copy {
    display: grid;
    gap: 12px;
    width: 100% !important;
  }

  .wabo-editorial-home,
  .wabo-archive-page,
  .wabo-single-event,
  .wabo-fallback-page,
  .wabo-timeline-stage,
  .wabo-event-shell,
  .wabo-feature-strip,
  .wabo-featured-grid,
  .wabo-feature-poster,
  .wabo-gallery-editorial,
  .wabo-gallery-mosaic,
  .wabo-story-ribbon,
  .wabo-sponsor-strip,
  .wabo-community-strip,
  .wabo-site-footer {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .wabo-sticky-categories,
  .wabo-category-bar {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .wabo-category-bar {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overscroll-behavior-inline: contain;
  }

  .wabo-category-pill {
    flex: 0 0 auto !important;
    max-width: 82vw !important;
    white-space: nowrap !important;
  }

  .wabo-timeline-poster img,
  .wabo-feature-poster__media img,
  .wabo-gallery-cell img,
  .wabo-single-event__media img,
  .wabo-single-event__media video {
    max-width: 100% !important;
    object-fit: cover;
  }

  .wabo-timeline-copy h3,
  .wabo-feature-poster__copy h3,
  .wabo-section-head h2,
  .wabo-archive-hero h1 {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: normal;
  }
}
