:root {
  --brand: #5d594f;
  --brand-rgb: 93, 89, 79;
  --brand-dark: #3f3a31;
  --brand-darker: #26231d;
  --brand-light: #9d9687;
  --brand-soft: #eae2d6;
  --brand-lighter: #f6f1e6;
  --brand-border: #d6ccbc;
  --brand-accent-crimson: #d12826;
  --brand-accent-coral: #da6444;
  --brand-accent-gold: #f1cc2d;
  --brand-accent-green: #59b657;
  --brand-accent-azure: #019ed9;
  --accent-primary: var(--brand-accent-azure);
  --accent-primary-rgb: 1, 158, 217;
  --accent-warm: var(--brand-accent-coral);
  --border-subtle: rgba(17, 24, 39, 0.08);
  --rainbow-gradient: linear-gradient(
    90deg,
    var(--brand-accent-crimson) 0%,
    var(--brand-accent-coral) 22%,
    var(--brand-accent-gold) 46%,
    var(--brand-accent-green) 72%,
    var(--brand-accent-azure) 100%
  );
  --rainbow-gradient-vertical: linear-gradient(
    180deg,
    var(--brand-accent-crimson) 0%,
    var(--brand-accent-coral) 22%,
    var(--brand-accent-gold) 46%,
    var(--brand-accent-green) 72%,
    var(--brand-accent-azure) 100%
  );
  --rainbow-soft: linear-gradient(
    90deg,
    rgba(209, 40, 38, 0.5) 0%,
    rgba(218, 100, 68, 0.55) 22%,
    rgba(241, 204, 45, 0.55) 46%,
    rgba(89, 182, 87, 0.5) 72%,
    rgba(1, 158, 217, 0.5) 100%
  );
  --rainbow-soft-vertical: linear-gradient(
    180deg,
    rgba(209, 40, 38, 0.5) 0%,
    rgba(218, 100, 68, 0.55) 22%,
    rgba(241, 204, 45, 0.55) 46%,
    rgba(89, 182, 87, 0.5) 72%,
    rgba(1, 158, 217, 0.5) 100%
  );
  --ink: #111827;
  --muted: #6b7280;
  --brand-w: clamp(160px, 18vw, 240px);
  --header-inline-pad: clamp(16px, 4vw, 28px);
  --header-height-desktop:118px;
  --header-height-mobile: 60px;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  color: var(--ink);
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-primary);
}

a:is(:hover, :focus-visible) {
  color: var(--brand-accent-crimson);
}

@font-face {
  font-family: 'MicrogrammaDEEBolExt';
  src: url('MicrogrammaDEEBolExt Regular.ttf') format('truetype');
  font-display: swap;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
h1,
.font-brand-display {
  font-family: 'MicrogrammaDEEBolExt', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: 0.5px;
}

.logo-word {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (max-width: 480px) {
  :root {
    --brand-w: clamp(132px, 28vw, 168px);
  }
}

.hero-bg {
  position: relative;
  background-color: var(--brand-darker);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: #f8fafc;
  isolation: isolate;
}

.hero-bg[data-fallback-image='true'] {
  background-image: url('firstWorlds.JPG');
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(17, 24, 39, 0.88) 0%,
    rgba(17, 24, 39, 0.6) 48%,
    rgba(15, 23, 42, 0.88) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 0;
  background: none;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.page-hero {
  padding-block: clamp(4rem, 9vw, 6.5rem);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(15, 23, 42, 0.2);
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-bg[data-video-ready='true'] .hero-media video {
  opacity: 1;
}

.hero-bg[data-motion='reduced'] .hero-media video {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg:not([data-motion='full']) .hero-media video {
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-bg .text-muted {
  color: rgba(255, 255, 255, 0.65) !important;
}

.hero-bg .lead,
.hero-bg .text-secondary {
  color: rgba(248, 250, 252, 0.82) !important;
}

.hero-bg .rainbow-divider {
  box-shadow: 0 0.5rem 1.5rem rgba(15, 23, 42, 0.4);
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-hero {
  flex: 1 1 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--brand-darker);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.75rem;
  box-shadow: 0 1.25rem 2.5rem rgba(15, 23, 42, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease,
    border-color 0.25s ease;
}

.btn-hero:is(:hover, :focus-visible) {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 1.5rem 2.75rem rgba(15, 23, 42, 0.45);
}

.btn-hero:focus-visible {
  box-shadow: 0 0 0 0.35rem rgba(255, 255, 255, 0.45);
  outline: none;
}

.hero-tertiary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
}

.hero-tertiary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 42, 0.45);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    transform 0.2s ease;
}

.hero-tertiary-link:is(:hover, :focus-visible) {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

.hero-tertiary-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

.hero-eyebrow .smallcaps {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.countdown-wrapper {
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  position: relative;
  isolation: isolate;
  background: linear-gradient(rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 1.1rem 2.2rem rgba(15, 23, 42, 0.32);
  max-width: 420px;
  overflow: hidden;
}

.countdown-wrapper::before {
  content: "";
  position: absolute;
  inset-inline: -8%;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--accent-primary);
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

.countdown-label {
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: 1.35rem;
}

.countdown-metric {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.85rem 0.6rem;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0.6rem 1.6rem rgba(15, 23, 42, 0.45);
  overflow: hidden;
}

.countdown-metric::after {
  content: "";
  position: absolute;
  inset-inline: 18%;
  bottom: 0.55rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-primary);
  opacity: 0.7;
  pointer-events: none;
}

.countdown-number {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

.countdown-unit {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

.countdown[data-status='complete'] {
  grid-template-columns: 1fr;
  font-weight: 700;
  justify-items: center;
  letter-spacing: 0.08em;
}

.countdown-complete {
  color: #ffffff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-highlights {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-content: start;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  background: rgba(15, 23, 42, 0.40);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  padding: 1.1rem 1.25rem;
  color: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1.1rem 2.2rem rgba(15, 23, 42, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:focus-within,
.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1.5rem 2.8rem rgba(15, 23, 42, 0.38);
}

.feature-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  color: #ffffff;
}

.feature-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-card__text {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.86);
}

.feature-card__text strong {
  color: #ffffff;
  font-weight: 700;
}

.feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.feature-card__link::after {
  content: "›";
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.feature-card__link:is(:hover, :focus-visible) {
  color: #ffffff;
}

.feature-card__link:is(:hover, :focus-visible)::after {
  transform: translateX(2px);
}

.feature-card__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

@media (max-width: 575.98px) {
  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-cta-buttons {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    flex: 1 1 auto;
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    box-shadow: 0 0.85rem 1.8rem rgba(15, 23, 42, 0.3);
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(70px, 1fr));
  }

  .countdown-wrapper {
    width: 100%;
  }

  .hero-tertiary-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.page-hero--inverted {
  background: linear-gradient(
    135deg,
    var(--brand-darker) 0%,
    var(--brand-dark) 55%,
    var(--brand-accent-crimson) 100%
  );
  color: var(--brand-lighter);
}

.page-hero--inverted .lead {
  color: var(--brand-soft);
}

.page-hero-image {
  width: min(100%, 360px);
  height: auto;
  margin: 1.5rem auto 0;
  display: block;
  object-fit: cover;
}

.section-block {
  scroll-margin-top: 6rem;
}

@media (min-width: 992px) {
  .section-block {
    scroll-margin-top: 7rem;
  }
}

.rainbow-bar {
  height: 6px;
  border-radius: 4px;
  background: var(--rainbow-soft);
}

.rainbow-bar.bg-danger {
  background-color: var(--brand-accent-crimson) !important;
}

.rainbow-bar.bg-warning {
  background-color: var(--brand-accent-gold) !important;
}

.rainbow-bar.bg-success {
  background-color: var(--brand-accent-green) !important;
}

.rainbow-bar.bg-info {
  background-color: var(--brand-accent-azure) !important;
}

.rainbow-divider {
  --rainbow-length: 120px;
  width: var(--rainbow-length);
  height: 3px;
  display: block;
  border-radius: 999px;
  background: var(--rainbow-soft);
}

.rainbow-divider--sm {
  --rainbow-length: 72px;
}

.rainbow-divider--lg {
  --rainbow-length: 180px;
}

.rainbow-divider--full {
  --rainbow-length: 100%;
}

.tile {
  --tile-bg: #ffffff;
  background: var(--tile-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  box-shadow: 0 0.65rem 1.25rem rgba(var(--brand-rgb), 0.06);
}

.tile--muted {
  --tile-bg: var(--brand-lighter);
  border-color: var(--border-subtle);
}

.tile--muted :is(p, ul, ol) {
  color: var(--muted);
}

.tile--muted ul {
  margin-bottom: 0;
}

.card-border-gradient {
  border: 1px solid var(--border-subtle);
  border-radius: inherit;
  background: linear-gradient(var(--tile-bg), var(--tile-bg)) padding-box,
    linear-gradient(var(--tile-bg), var(--tile-bg)) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0.7rem 1.35rem rgba(var(--brand-rgb), 0.08);
}

.tile--featured {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0.9rem 1.6rem rgba(var(--brand-rgb), 0.12);
}

.tile--featured::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: var(--rainbow-soft);
  opacity: 0.6;
  pointer-events: none;
}

.logo-grid {
  --logo-tile-size: clamp(7.5rem, 14vw, 9rem);
  --logo-tile-padding: clamp(0.75rem, 2.25vw, 1.35rem);
}

.logo-grid .col {
  padding: 0.45rem;
  display: flex;
}

.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: var(--logo-tile-size);
  min-height: var(--logo-tile-size);
  padding: var(--logo-tile-padding);
  border-radius: 0.75rem;
  background: rgba(17, 24, 39, 0.92);
  color: #e5e7eb;
  border: 1px solid #2b2f36;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.logo-tile img {
  display: block;
  max-width: 100%;
  max-height: calc(var(--logo-tile-size) - (var(--logo-tile-padding) * 2));
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease;
}

.logo-tile:is(:hover, :focus-visible, :focus-within) {
  background: rgba(17, 24, 39, 1);
  border-color: rgba(250, 204, 21, 0.6);
}

.logo-tile:is(:hover, :focus-visible, :focus-within) img {
  filter: none;
}

.logo-link:focus-visible {
  outline: 3px solid var(--brand-accent-gold);
  outline-offset: 4px;
}

.btn-soft {
  background: var(--brand-lighter);
  border: 1px solid var(--brand-border);
  color: var(--brand);
}

.btn-soft:is(:hover, :focus-visible) {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand-dark);
}

.btn-soft:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(var(--brand-rgb), 0.18);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--accent-primary);
  --bs-btn-border-color: var(--accent-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--brand-accent-crimson);
  --bs-btn-hover-border-color: var(--brand-accent-crimson);
  --bs-btn-focus-shadow-rgb: var(--accent-primary-rgb);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--brand-accent-crimson);
  --bs-btn-active-border-color: var(--brand-accent-crimson);
  --bs-btn-disabled-bg: var(--accent-primary);
  --bs-btn-disabled-border-color: var(--accent-primary);
}

.btn-pill {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.6rem 1.4rem;
}

.btn-outline-primary {
  --bs-btn-color: var(--accent-primary);
  --bs-btn-border-color: var(--accent-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--accent-primary);
  --bs-btn-hover-border-color: var(--accent-primary);
  --bs-btn-focus-shadow-rgb: var(--accent-primary-rgb);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--brand-accent-crimson);
  --bs-btn-active-border-color: var(--brand-accent-crimson);
  --bs-btn-disabled-color: var(--accent-primary);
  --bs-btn-disabled-border-color: var(--border-subtle);
}

.smallcaps {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.82rem;
}

.checklist {
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--muted);
}

.checklist-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.kop-callout {
  border-radius: 1rem;
  border: 1px solid rgba(209, 40, 38, 0.25);
  background-color: rgba(241, 204, 45, 0.12);
  color: var(--brand-dark);
}

.flyer-promo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.flyer-promo::before {
  content: "";
  position: absolute;
  inset: -45% -10% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(1, 158, 217, 0.18) 0%, rgba(209, 40, 38, 0) 60%);
  filter: blur(12px);
  opacity: 0.75;
  z-index: 0;
}

.flyer-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(1, 158, 217, 0.08), rgba(241, 204, 45, 0.12));
  z-index: 0;
}

.flyer-promo > * {
  position: relative;
  z-index: 1;
}

.flyer-promo__badge {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(4.75rem, 12vw, 6rem);
  aspect-ratio: 1;
  border-radius: 28%;
  background: radial-gradient(circle at 28% 28%, #ffffff 0%, rgba(255, 255, 255, 0.85) 24%, rgba(1, 158, 217, 0.18) 55%, rgba(209, 40, 38, 0.18) 90%);
  box-shadow: 0 0.9rem 2rem rgba(15, 23, 42, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  isolation: isolate;
}

.flyer-promo__burst {
  position: absolute;
  inset: -32%;
  border-radius: 32%;
  background: conic-gradient(
    from 45deg,
    rgba(209, 40, 38, 0.75),
    rgba(241, 204, 45, 0.85),
    rgba(1, 158, 217, 0.75),
    rgba(89, 182, 87, 0.7),
    rgba(209, 40, 38, 0.75)
  );
  filter: blur(2px) saturate(1.1);
  opacity: 0.85;
  animation: spin 12s linear infinite;
}

.flyer-promo__icon {
  position: relative;
  z-index: 1;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  color: #111827;
  text-shadow: 0 0.6rem 1.4rem rgba(15, 23, 42, 0.35);
}

.flyer-promo__body p:last-child {
  margin-bottom: 0;
}

.flyer-promo__thumb {
  position: relative;
  display: block;
  width: min(240px, 46vw);
  border-radius: 0.9rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--brand-border);
  box-shadow: 0 1.25rem 2.4rem rgba(15, 23, 42, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.flyer-promo__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  background: linear-gradient(135deg, rgba(234, 226, 214, 0.85), rgba(255, 255, 255, 0.9));
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.18);
  z-index: 0;
}

.flyer-promo__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.flyer-promo:is(:hover, :focus-within) .flyer-promo__thumb {
  transform: translateY(-2px);
  box-shadow: 0 1.5rem 2.8rem rgba(15, 23, 42, 0.2);
  border-color: rgba(var(--brand-rgb), 0.35);
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

@media (prefers-reduced-motion: reduce) {
  .flyer-promo__burst {
    animation: none;
  }
}

.map-embed {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.map-card .p-3,
.map-card .p-4 {
  background: #ffffff;
}

.parking-figure img {
  border-color: var(--brand-border) !important;
  background-color: #ffffff;
}

.parking-figure figcaption {
  color: var(--muted);
}

.media-card {
  display: block;
  --tile-bg: #ffffff;
  border-radius: 0;
  box-shadow: 0 1.5rem 2.75rem rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.media-card__time {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding-left: 1.5rem;
  position: relative;
}

.media-card__time::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.15), var(--accent-primary));
}

.media-card__body p:last-child {
  margin-bottom: 0;
}

a.nav-link {
  font-weight: 600;
}

.brand-logo {
  width: auto;
  height: auto;
  max-width: var(--brand-w);
  max-height: 100%;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo-wrap {
  height: calc(var(--header-height) - 0px);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-brand-bg {
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
  line-height: 1;
}

.nav-brand-bg .container {
  height: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-block: 0;
  padding-inline: var(--header-inline-pad);
  padding-inline-start: max(var(--header-inline-pad), env(safe-area-inset-left));
  padding-inline-end: max(var(--header-inline-pad), env(safe-area-inset-right));
}

.nav-brand-bg .navbar-brand {
  padding: 0;
}

.nav-brand-bg::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 5px;
  background: var(--rainbow-soft);
  opacity: 0.9;
  pointer-events: none;
}

.nav-brand-bg .navbar-brand {
  color: var(--brand-dark);
}

.nav-brand-bg .navbar-brand:is(:hover, :focus-visible) {
  color: var(--brand);
}

.nav-brand-bg .navbar-toggler {
  color: var(--brand-dark);
  border-color: rgba(var(--brand-rgb), 0.25);
  box-shadow: none;
  border-radius: 0.75rem;
  padding: 0.35rem 0.65rem;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.nav-brand-bg .navbar-toggler:is(:hover, :focus-visible) {
  color: var(--brand-darker);
  background-color: rgba(var(--brand-rgb), 0.12);
  border-color: rgba(var(--brand-rgb), 0.35);
}

.nav-brand-bg .navbar-toggler:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(var(--brand-rgb), 0.25);
}

.nav-brand-bg .btn-outline-primary {
  color: var(--accent-primary);
  border-color: rgba(var(--accent-primary-rgb), 0.35);
  background-color: transparent;
}

.nav-brand-bg .btn-outline-primary:is(:hover, :focus-visible) {
  color: #ffffff;
  background-color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.nav-brand-bg .btn-outline-primary:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(var(--accent-primary-rgb), 0.25);
}

.navbar-nav {
  gap: 0.75rem;
}

.navbar-nav .nav-item {
  margin: 0;
  display: flex;
}

.navbar-nav .nav-link {
  color: var(--brand-dark) !important;
  background: transparent;
  border-radius: 0.5rem;
  padding: 0.65rem clamp(0.65rem, 2vw, 0.85rem);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}

@media (max-width: 480px) {
  .navbar-nav .nav-link {
    padding-inline: 0.5rem;
  }
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  height: 3px;
  border-radius: 999px;
  background: var(--accent-primary);
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}

.navbar-nav .nav-link:is(:hover, :focus-visible) {
  color: var(--accent-primary) !important;
}

.navbar-nav .nav-link:is(:hover, :focus-visible)::after {
  opacity: 1;
  transform: scaleX(1);
}

.navbar-nav .nav-link.active {
  color: var(--accent-primary) !important;
  font-weight: 700;
}

.navbar-nav .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.navbar-nav .nav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(var(--brand-rgb), 0.2);
}

.tile h5 {
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media (min-width: 992px) {
  .navbar,
  .navbar .container,
  .navbar-nav {
    align-items: center;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    padding-block: 0;
  }

  .navbar-nav .nav-link {
    padding-inline: 1.25rem;
  }
}

.nav-brand-bg.navbar {
  --header-height: var(--header-height-desktop);
  height: var(--header-height);
  min-height: var(--header-height);
  padding: 0;
}

@media (max-width: 991.98px) {
  .nav-brand-bg.navbar {
    --header-height: var(--header-height-mobile);
    height: auto;
    min-height: var(--header-height);
  }
}

@media (max-width: 991.98px) {
  .navbar-nav {
    gap: 0.5rem;
  }

  .navbar-nav .nav-link {
    width: 100%;
    justify-content: flex-start;
  }
}

.object-cover {
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .page-hero-image {
    margin-bottom: 1.5rem;
  }

  .page-hero--inverted .kickoff-badges {
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .page-hero-image {
    width: min(100%, 420px);
    margin: 0 0 0 auto;
  }
}

/* Kickoff page */
.kickoff-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.kickoff-badges .badge {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
}


.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.schedule-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.schedule-card__time {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 1.5rem;
}

.schedule-card__time::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.15), var(--accent-primary));
}

.schedule-time {
  display: block;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.schedule-desc {
  margin-bottom: 0;
  flex: 1;
}

@media (min-width: 576px) {
  .schedule-card {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .schedule-card__time {
    min-width: 180px;
    height: 80px;
  }
}

.accordion {
  --bs-accordion-bg: #ffffff;
  --bs-accordion-border-color: var(--border-subtle);
  --bs-accordion-border-radius: 1rem;
  --bs-accordion-inner-border-radius: 1rem;
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1.05rem;
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1.05rem;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--brand-rgb), 0.18);
  --bs-accordion-btn-color: var(--brand-dark);
  --bs-accordion-btn-bg: rgba(var(--brand-rgb), 0.04);
  --bs-accordion-active-color: var(--brand-dark);
  --bs-accordion-active-bg: rgba(var(--brand-rgb), 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border: 1px solid var(--border-subtle) !important;
  border-radius: 1rem !important;
  box-shadow: 0 0.75rem 1.5rem rgba(var(--brand-rgb), 0.06);
  width: 100%;
}

.accordion-button {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.accordion-button:not(.collapsed) {
  box-shadow: inset 0 -1px 0 rgba(var(--brand-rgb), 0.12);
}

.accordion-body {
  color: var(--muted);
}

.accordion-button:focus {
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 0.75rem 2rem rgba(var(--brand-rgb), 0.25);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 1rem;
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-primary), var(--brand-accent-crimson));
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 1.25rem 2.5rem rgba(15, 23, 42, 0.25);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 1040;
}

.back-to-top__icon {
  font-size: 1.1rem;
  line-height: 1;
}

.back-to-top:is(:hover, :focus-visible) {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 1.75rem 3rem rgba(15, 23, 42, 0.3);
}

.back-to-top:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.35rem rgba(var(--accent-primary-rgb), 0.35), 0 1.5rem 3rem rgba(15, 23, 42, 0.28);
}

.has-js .back-to-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(1.5rem);
}

.has-js .back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 575.98px) {
  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    padding-inline: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}

@media (max-width: 991.98px) {
  .page-hero--inverted {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .page-hero--inverted {
    text-align: left;
  }
}

.merch-image-frame {
  --bs-aspect-ratio: 150%;
  background-color: #ffffff;
}

.bundle-image-frame {
  max-width: min(360px, 78vw);
  margin-inline: auto;
}

.merch-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-legal-title {
  letter-spacing: 0.04em;
}

.footer-legal-text {
  line-height: 1.55;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.35rem 1rem;
}

.footer-links li {
  margin: 0;
}
