/* =========================================
   HEADER
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(243, 239, 232, 0.88);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - (2 * var(--container-gutter))), var(--container-max));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--color-text);
}

.site-logo__image {
  display: block;
  width: auto;
  height: 32px;
}

.site-nav--desktop,
.header-actions--desktop {
  display: none;
}

.header-actions--mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.header-cta {
  min-width: 132px;
}

.mobile-menu {
  position: absolute;
  inset: 100% 0 auto 0;
  border-bottom: 1px solid var(--color-border);
  background: rgba(243, 239, 232, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(25, 18, 10, 0.08);
}

.mobile-menu__inner {
  width: min(calc(100% - (2 * var(--container-gutter))), var(--container-max));
  margin-inline: auto;
  padding-block: 1rem 1.25rem;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu__list a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  transition: color 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu__list a:hover,
.mobile-menu__list a.is-active {
  color: var(--color-accent-3);
  border-bottom-color: rgba(123, 176, 166, 0.38);
  padding-left: 0.25rem;
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-top: 1rem;
}

.mobile-menu__cta,
.mobile-menu__lang {
  width: 100%;
}

@media (max-width: 767.98px) {
  .header-actions--mobile .header-cta {
    min-width: auto;
    padding-inline: 1rem;
  }
}

@media (min-width: 768px) {
  .header-inner {
    min-height: 84px;
  }

  .header-actions--mobile .header-cta {
    min-width: 148px;
  }

  .mobile-menu__inner {
    padding-block: 1.25rem 1.5rem;
  }
}

@media (min-width: 1200px) {
  .site-nav--desktop {
    display: block;
  }

  .header-actions--desktop {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .header-actions--mobile {
    display: none;
  }

  .site-nav__list {
    display: flex;
    align-items: center;
    gap: 0.72rem;
  }

  .site-nav__list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.35rem 0.15rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-soft);
    transition: color 0.2s ease;
  }

  .site-logo__image {
    height: 34px;
  }

  .site-nav__list a::after {
    content: '';
    position: absolute;
    left: 0.15rem;
    right: 0.15rem;
    bottom: 0.18rem;
    height: 2px;
    border-radius: 999px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .site-nav__list a:hover {
    color: var(--color-text);
  }

  .site-nav__list a:hover::after {
    transform: scaleX(1);
  }

  .site-nav__list a.is-active {
    color: var(--color-text);
  }

  .site-nav__list a.is-active::after {
    transform: scaleX(1);
    background: var(--color-accent-3);
  }

  .mobile-menu {
    display: none !important;
  }
}

/* =========================================
   HERO
========================================= */

.section--hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 86vh, 860px);
  padding-block: clamp(100px, 14vw, 160px);
  overflow: clip;
  border-top: 0;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(12, 12, 12, var(--hero-overlay-top)) 0%,
      rgba(12, 12, 12, var(--hero-overlay-mid)) 35%,
      rgba(12, 12, 12, var(--hero-overlay-bottom)) 100%
    );
}

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

.hero-content {
  width: min(100%, 860px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0.9rem 1.3rem;
  background: rgba(255, 255, 255, 0.88);
  color: #111111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero-brand-logo {
  display: block;
  width: auto;
  height: clamp(34px, 5vw, 46px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: #111111;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section--hero h1 {
  max-width: 14ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow:
    0 6px 18px rgba(0, 0, 0, 0.44),
    0 14px 36px rgba(0, 0, 0, 0.32);
}

.hero-subtitle {
  max-width: 36ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.35;
  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.38),
    0 8px 22px rgba(0, 0, 0, 0.28);
  text-wrap: balance;
}

.hero-actions {
  padding-top: 0.5rem;
}

@media (max-width: 767.98px) {
  .section--hero {
    min-height: clamp(520px, 80vh, 720px);
    padding-block: 84px 96px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-brand-badge {
    width: auto;
    max-width: min(100%, 520px);
    min-height: 64px;
    padding: 0.9rem 1rem;
    margin-inline: auto;
  }

  .hero-kicker {
    margin-inline: auto;
    font-size: 0.78rem;
    line-height: 1.2;
    padding: 0.65rem 0.8rem;
  }

  .hero-brand-logo {
    max-width: 100%;
    height: clamp(28px, 10vw, 40px);
  }

  .section--hero h1 {
    max-width: 11ch;
  }

  .hero-subtitle {
    max-width: 24ch;
    font-size: 1.02rem;
  }

  .btn--hero-primary {
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 1200px) {
  .section--hero {
    min-height: 88vh;
  }
}

/* =========================================
   LINEUP
========================================= */

.lineup-section .container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 3rem);
}

.lineup_header {
  position: relative;
  width: min(100%, 860px);
  margin-inline: auto;
  text-align: center;
}

.lineup_header::before,
.lineup_header::after {
  position: absolute;
  color: #5917af90;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.lineup_header::before {
  content: '♫';
  left: 0;
  top: 2.6rem;
  font-size: 2.2rem;
  rotate: -10deg;
}

.lineup_header::after {
  content: '★';
  right: 0.4rem;
  top: 6.5rem;
  font-size: 2.4rem;
}

.lineup_eyebrow,
.tickets_eyebrow,
.why-baza_eyebrow,
.partners_eyebrow,
.need-to-know_eyebrow,
.contact_eyebrow {
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--color-accent-3);
  margin-bottom: 0.75rem;
}

.lineup_title,
.tickets_title,
.why-baza_title,
.partners_title,
.need-to-know_title,
.contact_title {
  max-width: 18ch;
  margin: 0 auto;
  color: #111111;
  font-size: clamp(1.96rem, 5.95vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.lineup_lead,
.tickets_lead,
.why-baza_lead,
.partners_lead,
.need-to-know_lead,
.contact_lead {
  max-width: 44ch;
  margin: 1rem auto 0;
  color: rgba(17, 17, 17, 0.75);
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  line-height: 1.42;
  text-wrap: balance;
}

.lineup_title::after,
.tickets_title::after,
.why-baza_title::after,
.partners_title::after,
.need-to-know_title::after,
.contact_title::after {
  content: "";
  display: block;
  width: min(11rem, 42vw);
  height: 0.55rem;
  margin: 1.15rem auto 0;
  border-radius: 999px;
  background: #5917af90;
  rotate: -2deg;
}

/* DJ block */

.lineup-dj {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.lineup-dj_top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
}

.lineup-dj_title {
  margin: 0;
  color: #7a46c0;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lineup-dj_line {
  height: 1px;
  background: #7b46c09e;
}

.lineup-dj_grid,
.lineup-dj_secondary {
  display: grid;
  gap: 0.95rem;
}

.lineup-dj_secondary {
  grid-template-columns: 1fr;
}

/* Artist cards */

.lineup_card {
  min-width: 0;
}

.lineup_card_surface {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(122, 70, 192, 0.26);
  border-radius: 22px;
  background: #111111;
  color: inherit;
  text-decoration: none;
  box-shadow:
    0 16px 34px rgba(25, 18, 10, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  isolation: isolate;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lineup_card--headliner .lineup_card_surface {
  border-color: rgba(122, 70, 192, 0.76);
  box-shadow:
    0 22px 46px rgba(25, 18, 10, 0.14),
    0 0 0 3px rgba(122, 70, 192, 0.20),
    0 0 42px rgba(122, 70, 192, 0.16);
}

.lineup_card_surface:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 70, 192, 0.86);
  box-shadow:
    0 20px 42px rgba(25, 18, 10, 0.12),
    0 0 0 2px rgba(122, 70, 192, 0.18);
}

.lineup_card_media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.lineup_card--headliner .lineup_card_media {
  aspect-ratio: 4 / 5;
}

.lineup_card_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition:
    transform 0.45s ease,
    filter 0.3s ease;
}

.lineup_card--headliner .lineup_card_image {
  object-position: center center;
}

.lineup_card_overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem;
  background:
    linear-gradient(
      180deg,
      rgba(9, 9, 9, 0.12) 0%,
      rgba(9, 9, 9, 0.10) 34%,
      rgba(9, 9, 9, 0.82) 100%
    );
  transition: background 0.3s ease;
}

.lineup_card_top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.lineup_card_badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1.15rem;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(122, 70, 192, 1) 0%,
      rgba(90, 23, 175, 1) 100%
    );
  color: #ffffff;
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow:
    0 12px 24px rgba(9, 9, 9, 0.28),
    0 0 0 6px rgba(122, 70, 192, 0.16);
  transform: rotate(-3deg);
  transform-origin: left center;
}

.lineup_card_badge::before {
  content: '★';
  margin-right: 0.45rem;
  font-size: 0.82em;
}

.lineup_card_tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
  margin: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.lineup_card_surface:hover .lineup_card_tags,
.lineup_card_surface:focus-within .lineup_card_tags {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lineup_card_tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(122, 70, 192, 0.96);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(9, 9, 9, 0.18);
}

.lineup_card_bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.38rem;
}

.lineup_card_name {
  display: inline-flex;
  max-width: 100%;
  margin: 0;
  padding: 0.52rem 0.9rem 0.56rem;
  border-radius: 999px;
  background: rgba(122, 70, 192, 0.96);
  color: #f7fbfa;
  font-size: clamp(0.92rem, 2vw, 1.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(9, 9, 9, 0.18);
  text-wrap: balance;
}

.lineup_card--headliner .lineup_card_bottom {
  width: min(100%, 520px);
}

.lineup_card--headliner .lineup_card_name {
  display: block;
  width: fit-content;
  max-width: min(100%, 520px);
  padding: clamp(0.72rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.45rem);
  border-radius: 26px;
  font-size: clamp(1.6rem, 6.2vw, 3.8rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.lineup_card_surface:hover .lineup_card_image {
  transform: scale(1.012);
  filter: saturate(1.06) contrast(1.02);
}

.lineup_card_surface:hover .lineup_card_overlay {
  background:
    linear-gradient(
      180deg,
      rgba(122, 70, 192, 0.12) 0%,
      rgba(9, 9, 9, 0.18) 40%,
      rgba(9, 9, 9, 0.84) 100%
    );
}

/* More artists tile */

.lineup-more_card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(122, 70, 192, 0.34);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at center,
      rgba(122, 70, 192, 0.14) 0%,
      rgba(122, 70, 192, 0.04) 42%,
      rgba(255, 255, 255, 0.64) 100%
    );
  box-shadow: 0 16px 34px rgba(25, 18, 10, 0.05);
}

.lineup-more_card::before {
  content: '';
  position: absolute;
  inset: -42%;
  background:
    repeating-radial-gradient(
      circle at center,
      rgba(122, 70, 192, 0.14) 0 1px,
      transparent 1px 13px
    );
  opacity: 0.34;
}

.lineup-more_card_spark {
  position: absolute;
  top: 1rem;
  color: rgba(122, 70, 192, 0.86);
  font-size: 1.6rem;
}

.lineup-more_card_label {
  position: relative;
  margin: 0;
  color: var(--color-accent-2);
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
}

/* Stand-up block */

.lineup-standup {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: clamp(0.8rem, 2vw, 1.4rem);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 1px solid rgba(122, 70, 192, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 38px rgba(25, 18, 10, 0.04);
}

.lineup-standup_header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0.55rem;
  padding-top: 0.15rem;
  text-align: center;
}

.lineup-standup_divider {
  position: absolute;
  z-index: 0;
  top: 1.25rem;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(122, 70, 192, 0.72) 0 7px,
      transparent 7px 14px
    );
}

.lineup-standup_header h3 {
  position: relative;
  z-index: 1;
  justify-self: center;
  margin: 0;
  padding: 0.42rem 1.15rem;
  border: 1px solid rgba(122, 70, 192, 0.62);
  border-radius: 999px;
  background: #f3efe8;
  color: var(--color-accent-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 0 8px rgba(243, 239, 232, 0.92);
}

.lineup-standup_lead {
  position: relative;
  z-index: 1;
  margin: 0.2rem 0 0;
  color: rgba(17, 17, 17, 0.70);
  font-size: 0.98rem;
  line-height: 1.35;
  text-wrap: balance;
}

.lineup-standup_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.lineup-standup_card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(122, 70, 192, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(25, 18, 10, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.lineup-standup_card_media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.08);
}

.lineup-standup_card_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition:
    transform 0.35s ease,
    filter 0.3s ease;
}

.lineup-standup_card_body {
  padding: 0.78rem 0.75rem 0.82rem;
  text-align: center;
}

.lineup-standup_card_name {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin: 0;
  color: #111111;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lineup-standup_card:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 70, 192, 0.62);
  box-shadow:
    0 16px 32px rgba(25, 18, 10, 0.08),
    0 0 0 2px rgba(122, 70, 192, 0.12);
}

.lineup-standup_card:hover .lineup-standup_card_image {
  transform: scale(1.012);
  filter: saturate(1.04);
}

@media (max-width: 520px) {
  .lineup_header::before,
  .lineup_header::after {
    display: none;
  }

  .lineup_card_tags {
    display: none;
  }

  .lineup_card--headliner .lineup_card_name {
    max-width: min(100%, 360px);
    font-size: clamp(1.5rem, 9.8vw, 2.75rem);
  }
}

@media (min-width: 520px) {
  .lineup-dj_secondary,
  .lineup-standup_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .lineup-dj_secondary {
    gap: 1rem;
  }

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

  .lineup-more_card {
    min-height: 220px;
  }
}

@media (min-width: 1200px) {
  .lineup-dj_grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 2.15fr);
    gap: 1.15rem;
    align-items: stretch;
  }

  .lineup_card--headliner .lineup_card_name {
    max-width: 100%;
    font-size: clamp(1.2rem, 2.6vw, 2.55rem);
    letter-spacing: -0.045em;
    padding: clamp(0.62rem, 1.05vw, 0.9rem) clamp(0.9rem, 1.5vw, 1.25rem);
  }

  .lineup_card--headliner .lineup_card_surface,
  .lineup-dj_secondary .lineup_card_surface,
  .lineup-more_card {
    min-height: 300px;
  }

  .lineup_card--headliner .lineup_card_surface {
    min-height: 620px;
  }

  .lineup_card--headliner .lineup_card_media,
  .lineup-dj_secondary .lineup_card_media {
    height: 100%;
    aspect-ratio: auto;
  }

  .lineup_card--headliner .lineup_card_overlay {
    padding: 1.15rem;
  }

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

  .lineup-dj_secondary .lineup_card_image {
    object-position: center center;
  }

  .lineup-standup_grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lineup-standup_card_media {
    aspect-ratio: 5 / 4;
  }
}

/* =========================================
   TICKETS
========================================= */

.section--tickets {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.section--tickets::before,
.section--tickets::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section--tickets::before {
  z-index: 0;
  background:
    linear-gradient(
      180deg,
      rgba(243, 239, 232, 0.30) 0%,
      rgba(243, 239, 232, 0.12) 22%,
      rgba(243, 239, 232, 0.03) 52%,
      rgba(243, 239, 232, 0.30) 100%
    ),
    linear-gradient(
      135deg,
      rgba(122, 70, 192, 0.14) 0%,
      rgba(122, 70, 192, 0.05) 32%,
      rgba(255, 255, 255, 0.00) 60%
    ),
    url('../img/tickets/tickets-bg-01.jpg') center center / cover no-repeat;
  opacity: 0.20;
  filter: saturate(0.82) contrast(0.94) brightness(0.92);
  transform: scale(1.03);
}

.section--tickets::after {
  z-index: 1;
  background:
    radial-gradient(
      circle at 50% 28%,
      rgba(255, 255, 255, 0.20) 0%,
      rgba(255, 255, 255, 0.00) 40%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.00) 100%
    );
}

.section--tickets .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tickets_intro {
  position: relative;
  width: min(100%, 760px);
  margin-inline: auto;
  text-align: center;
}

.tickets_intro::before,
.tickets_intro::after {
  position: absolute;
  color: rgba(122, 70, 192, 0.82);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.tickets_intro::before {
  content: '✦';
  left: -0.35rem;
  top: 2.35rem;
  font-size: 1.95rem;
  rotate: -8deg;
}

.tickets_intro::after {
  content: '≋';
  right: -0.15rem;
  top: 5.45rem;
  font-size: 1.7rem;
  rotate: 7deg;
}

.tickets-status {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.35rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(122, 70, 192, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(6px);
}

.tickets-status__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-3);
}

.tickets-status__value {
  font-size: 1rem;
  line-height: 1.2;
  color: var(--color-text);
  text-wrap: balance;
}

.tickets_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.tickets_card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 0 12px 28px rgba(25, 18, 10, 0.07);
  backdrop-filter: blur(4px);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.tickets_card_top,
.tickets_card_body,
.tickets_card_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tickets_card_top {
  gap: 0.4rem;
}

.tickets_card_body {
  gap: 0.35rem;
  padding-block: 1.1rem 1.35rem;
}

.tickets_card_footer {
  gap: 0.85rem;
  margin-top: auto;
}

.tickets_card_tier {
  margin: 0;
  color: var(--color-accent-3);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tickets_card_name {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.02;
  text-wrap: balance;
}

.tickets_card_price {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.tickets_card_meta {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.98rem;
}

.tickets_card_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 36px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tickets_card_badge--muted {
  background: rgba(17, 17, 17, 0.08);
  color: var(--color-text-soft);
}

.tickets_card_badge--live {
  background: rgba(122, 70, 192, 0.18);
  color: var(--color-accent-3);
}

.tickets_card_badge--soft {
  background: rgba(122, 70, 192, 0.10);
  color: var(--color-accent-3);
}

.tickets_card_badge--outline {
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: var(--color-text);
  background: transparent;
}

.tickets_card_action {
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.35;
  text-wrap: balance;
}

.tickets_card_action--disabled {
  opacity: 0.8;
}

.tickets_card_cta {
  width: 100%;
}

.tickets_card--sold-out {
  opacity: 0.82;
}

.tickets_card--active {
  border-color: rgba(122, 70, 192, 0.72);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(122, 70, 192, 0.14) 100%
    );
  box-shadow:
    0 22px 42px rgba(25, 18, 10, 0.10),
    0 0 0 1px rgba(122, 70, 192, 0.18),
    0 0 36px rgba(122, 70, 192, 0.10);
}

.tickets_card--active .tickets_card_price {
  color: var(--color-accent-2);
}

.tickets_card--upcoming,
.tickets_card--gate {
  background: rgba(255, 255, 255, 0.62);
}

.tickets_card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(25, 18, 10, 0.08);
}

@media (max-width: 767.98px) {
  .tickets_intro::before,
  .tickets_intro::after {
    display: none;
  }

  .tickets_card {
    padding: 1.1rem;
    border-radius: 20px;
  }

  .tickets_card_body {
    padding-block: 0.95rem 1.15rem;
  }

  .tickets_card_price {
    font-size: 2.2rem;
  }

  .tickets-status {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .section--tickets .container {
    gap: 2.5rem;
  }

  .tickets_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .tickets_card_badge {
    align-self: flex-start;
  }

  .tickets_card_top,
  .tickets_card_body,
  .tickets_card_footer {
    align-items: flex-start;
    text-align: left;
  }

  .tickets_grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 1rem;
  }

  .tickets_card--active {
    transform: translateY(-28px);
  }

  .tickets_card--active:hover {
    transform: translateY(-30px);
  }
}

/* =========================================
   HIGHLIGHTS / WHY BAZA
========================================= */

.section--why-baza {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.section--why-baza::before,
.section--why-baza::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section--why-baza::before {
  z-index: 0;
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.18) 42%,
      rgba(255, 255, 255, 0.00) 72%
    ),
    linear-gradient(
      180deg,
      rgba(243, 239, 232, 0.92) 0%,
      rgba(243, 239, 232, 0.78) 100%
    ),
    url('../img/tickets/tickets-bg-01.jpg') center center / cover no-repeat;
  opacity: 0.42;
  filter: saturate(0.72) contrast(0.9) brightness(0.98);
  transform: scale(1.02);
}

.section--why-baza::after {
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.04) 18%,
      rgba(255, 255, 255, 0.00) 100%
    );
}

.section--why-baza .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-block: clamp(1.75rem, 4vw, 3.25rem);
}

.why-baza_intro {
  position: relative;
  width: min(100%, 760px);
  margin-inline: auto;
  text-align: center;
}

.why-baza_intro::before,
.why-baza_intro::after {
  position: absolute;
  color: rgba(122, 70, 192, 0.82);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.why-baza_intro::before {
  content: '✦';
  left: -0.4rem;
  top: 2.3rem;
  font-size: 2rem;
  rotate: -9deg;
}

.why-baza_intro::after {
  content: '✳';
  right: 0.1rem;
  top: 5.4rem;
  font-size: 1.7rem;
  rotate: 8deg;
}

.why-baza_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.why-baza_card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 100%;
  padding: 1.2rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 28px rgba(25, 18, 10, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
  text-align: center;
  align-items: center;
}

.why-baza_card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(25, 18, 10, 0.08),
    0 0 0 2px rgba(122, 70, 192, 0.14);
  border-color: rgba(122, 70, 192, 0.18);
}

.why-baza_card_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.9rem;
  height: 3.9rem;
  border-radius: 16px;
  background: rgba(122, 70, 192, 0.14);
  color: var(--color-accent-3);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(122, 70, 192, 0.16);
}

.why-baza_card_icon img {
  padding: 0.6rem;
}

.why-baza_card_title {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--color-accent-3);
  line-height: 1.05;
  text-wrap: balance;
}

.why-baza_card_text {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  text-wrap: balance;
}

@media (max-width: 767.98px) {
  .why-baza_intro::before,
  .why-baza_intro::after {
    display: none;
  }

  .why-baza_card {
    padding: 1.05rem;
    border-radius: 20px;
  }

  .why-baza_card_icon {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 14px;
  }
}

@media (min-width: 768px) {
  .section--why-baza .container {
    gap: 2.5rem;
  }

  .why-baza_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .why-baza_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* =========================================
   MEMORIES
========================================= */

.section--memories {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.section--memories::before,
.section--memories::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section--memories::before {
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(12, 12, 12, 0.62) 0%,
      rgba(12, 12, 12, 0.52) 28%,
      rgba(12, 12, 12, 0.22) 58%,
      rgba(12, 12, 12, 0.16) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.18) 0%,
      rgba(10, 10, 10, 0.10) 100%
    ),
    url('../img/memories/memories-bg-01.jpg') center center / cover no-repeat;
  transform: scale(1.03);
  filter: saturate(0.96) contrast(0.96) brightness(0.88);
}

.section--memories::after {
  z-index: 1;
  background:
    radial-gradient(
      circle at 24% 28%,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.00) 34%
    );
}

.section--memories .container {
  position: relative;
  z-index: 2;
  padding-block: clamp(2rem, 5vw, 4rem);
}

.memories-layout {
  display: grid;
  gap: 1.5rem;
}

.memories_copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #ffffff;
}

.memories_title {
  max-width: 8ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow:
    0 6px 18px rgba(0, 0, 0, 0.36),
    0 14px 34px rgba(0, 0, 0, 0.28);
}

.memories_lead {
  max-width: 38ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  line-height: 1.4;
  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.38),
    0 8px 22px rgba(0, 0, 0, 0.28);
  text-wrap: balance;
}

.memories-actions {
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
}

.memories-gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-weight: 700;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.memories-gallery-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.40);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.aftermovie-card {
  width: min(100%, 420px);
  margin-top: 0.5rem;
}

.aftermovie-card__link {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(10, 10, 10, 0.42);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(8px);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.aftermovie-card__link:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 176, 166, 0.42);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
}

.aftermovie-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.aftermovie-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aftermovie-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.00) 0%,
      rgba(10, 10, 10, 0.12) 100%
    );
}

.aftermovie-card__play {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.92);
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.aftermovie-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1rem 1.1rem;
}

.aftermovie-card__eyebrow {
  margin: 0;
  color: rgba(123, 176, 166, 0.94);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aftermovie-card__title {
  margin: 0;
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.15;
  text-wrap: balance;
}

.aftermovie-card__meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.memories-gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.memories-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  align-content: start;
}

.memory-tile {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.10);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.memory-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    filter 0.28s ease;
}

.memory-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.28s ease;
}

.memory-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.memory-tile:hover img,
.memory-tile--featured img {
  opacity: 1;
  transform: scale(1.03);
  filter: saturate(1.02);
}

.memory-tile:hover::after,
.memory-tile--featured::after {
  background: rgba(255, 255, 255, 0.00);
}

@media (max-width: 767.98px) {
  .memories-layout {
    gap: 1.25rem;
  }

  .memories_copy {
    align-items: center;
    text-align: center;
  }

  .memories_title {
    max-width: 9ch;
    font-size: clamp(2.35rem, 12vw, 4rem);
    margin-inline: auto;
  }

  .memories_lead {
    max-width: 30ch;
    margin-inline: auto;
  }

  .aftermovie-card {
    width: 100%;
  }

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

@media (min-width: 768px) {
  .memories-layout {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
    gap: 1.5rem;
  }

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

  .memories-gallery .memory-tile:nth-child(n + 13) {
    display: none;
  }
}

@media (min-width: 1200px) {
  .section--memories .container {
    padding-block: clamp(2.5rem, 5vw, 4.5rem);
  }

  .memories-layout {
    grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
    gap: 2rem;
  }

  .memories-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .memories-gallery .memory-tile:nth-child(n + 13) {
    display: block;
  }
}

/* =========================================
   GALLERY MODAL
========================================= */

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

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(8px);
}

.gallery-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(14, 14, 14, 0.88);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.gallery-modal__close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.gallery-modal__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 3.5rem;
}

.gallery-modal__title,
.gallery-modal__counter {
  margin: 0;
  color: #ffffff;
}

.gallery-modal__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gallery-modal__counter {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 600;
}

.gallery-modal__nav-group {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.gallery-modal__nav--desktop {
  display: inline-flex;
}

.gallery-modal__nav--mobile {
  display: inline-flex;
}

.gallery-modal__media-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 0;
}

.gallery-modal__figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.gallery-modal__image {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: calc(100vh - 10rem);
  object-fit: contain;
  border-radius: 20px;
  background: #0b0b0b;
}

.gallery-modal__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.gallery-modal__nav:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 767.98px) {
  .gallery-modal__dialog {
    width: min(calc(100% - 1rem), 100%);
    max-height: calc(100vh - 1rem);
    margin: 0.5rem auto;
    padding: 0.8rem;
    border-radius: 22px;
  }

  .gallery-modal__topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.45rem 0.75rem;
    padding-right: 3rem;
  }

  .gallery-modal__title {
    font-size: 0.95rem;
    line-height: 1.15;
  }

  .gallery-modal__counter {
    font-size: 0.92rem;
  }

  .gallery-modal__nav-group--mobile {
    display: flex;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: center;
    gap: 0.4rem;
  }

  .gallery-modal__nav--desktop {
    display: none;
  }

  .gallery-modal__nav--mobile {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1.45rem;
  }

  .gallery-modal__media-wrap {
    grid-template-columns: 1fr;
    margin-top: 0.25rem;
  }

  .gallery-modal__image {
    max-height: calc(100vh - 14rem);
  }
}

/* =========================================
   PARTNERS / SPONSORS
========================================= */

.section--partners {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.section--partners::before,
.section--partners::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section--partners::before {
  z-index: 0;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(122, 70, 192, 0.10) 0%,
      rgba(122, 70, 192, 0.00) 32%
    ),
    radial-gradient(
      circle at 88% 20%,
      rgba(143, 98, 202, 0.10) 0%,
      rgba(143, 98, 202, 0.00) 34%
    ),
    radial-gradient(
      circle at 78% 84%,
      rgba(122, 70, 192, 0.08) 0%,
      rgba(122, 70, 192, 0.00) 28%
    ),
    linear-gradient(
      180deg,
      rgba(247, 243, 237, 0.92) 0%,
      rgba(243, 239, 232, 0.98) 100%
    );
}

.section--partners::after {
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(255, 255, 255, 0.00) 24%,
      rgba(255, 255, 255, 0.16) 100%
    );
}

.section--partners .container {
  position: relative;
  z-index: 2;
  padding-block: clamp(2rem, 5vw, 4rem);
}

.partners-shell {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.partners_intro {
  position: relative;
  width: min(100%, 860px);
  margin-inline: auto;
  text-align: center;
}

.partners_intro::before,
.partners_intro::after {
  position: absolute;
  color: rgba(122, 70, 192, 0.82);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.partners_intro::before {
  content: '♥';
  left: 0.2rem;
  top: 2.4rem;
  font-size: 1.95rem;
  rotate: -8deg;
}

.partners_intro::after {
  content: '⚑';
  right: 0.45rem;
  top: 5.35rem;
  font-size: 1.65rem;
  rotate: 7deg;
}

.partners_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.partners_card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  min-height: 100%;
  padding: 1.2rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(25, 18, 10, 0.06);
  backdrop-filter: blur(6px);
}

.partners_card--linked {
  padding: 0;
}

.partners_card--small {
  min-height: 168px;
}

.partners_card_label {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.partners_card_label--accent {
  color: var(--color-accent-3);
}

.partners_card_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  text-align: center;
}

.partners_card_logo--text span {
  display: inline-block;
  color: var(--color-text);
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
}

.partners_card_logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.partners_card_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  height: 100%;
  padding: 1.2rem;
  border-radius: inherit;
  text-decoration: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.partners_card_link:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(25, 18, 10, 0.08),
    0 0 0 2px rgba(122, 70, 192, 0.14);
}

.partners_card--strategic {
  padding: 1.4rem;
  border-color: rgba(122, 70, 192, 0.24);
  background:
    linear-gradient(
      135deg,
      rgba(122, 70, 192, 0.18) 0%,
      rgba(143, 98, 202, 0.10) 34%,
      rgba(255, 255, 255, 0.86) 100%
    );
  box-shadow:
    0 16px 34px rgba(25, 18, 10, 0.07),
    0 0 0 1px rgba(122, 70, 192, 0.10);
}

.partners_card_logo--strategic {
  min-height: 104px;
}

.partners_card_logo--strategic span {
  color: var(--color-accent-3);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.partners_card_logo--strategic img {
  max-width: min(100%, 320px);
  max-height: 88px;
  object-fit: contain;
}

.partners-sponsors {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.partners-sponsors__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.9rem;
}

.partners-sponsors__head span {
  display: block;
  height: 1px;
  background: rgba(17, 17, 17, 0.12);
}

.partners-sponsors__head p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partners-sponsors__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.partners-sponsors__grid.partners-sponsors__grid--strategic {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.partners_card--sponsor {
  height: 132px;
  padding: 0.9rem;
  border-radius: 22px;
}

.partners_card--sponsor .partners_card_logo {
  min-height: 0;
  height: 100%;
  padding: 0;
}

.partners_card--sponsor .partners_card_logo--text span {
  font-size: clamp(0.98rem, 3.1vw, 1.35rem);
  line-height: 1.06;
}

.partners_card--sponsor .partners_card_logo img {
  max-width: 78%;
  max-height: 125px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partners_card--sponsor-tall .partners_card_logo img {
  max-width: 72%;
  max-height: 62px;
}

.partners-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(122, 70, 192, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(143, 98, 202, 0.20) 0%,
      rgba(143, 98, 202, 0.00) 34%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(122, 70, 192, 0.16) 0%,
      rgba(122, 70, 192, 0.00) 30%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(247, 243, 237, 0.92) 100%
    );
  box-shadow: 0 14px 34px rgba(25, 18, 10, 0.07);
}

.partners-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.partners-cta__title {
  margin: 0;
  max-width: 18ch;
  color: var(--color-text);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.05;
  text-wrap: balance;
}

.partners-cta__text {
  max-width: 54ch;
  margin: 0;
  color: var(--color-text-soft);
  text-wrap: balance;
}

.partners-cta__button {
  min-width: 240px;
}

@media (max-width: 767.98px) {
  .partners_intro::before,
  .partners_intro::after {
    display: none;
  }

  .partners_card {
    padding: 1.05rem;
    border-radius: 20px;
  }

  .partners_card--linked {
    padding: 0;
  }

  .partners_card--small {
    min-height: 152px;
  }

  .partners_card_logo--text span {
    font-size: clamp(1.15rem, 6vw, 1.7rem);
  }

  .partners_card_logo--strategic span {
    font-size: clamp(1.6rem, 8vw, 2.3rem);
  }

  .partners_card--sponsor {
    height: 118px;
    padding: 0.8rem;
  }

  .partners_card--sponsor.partners_card--linked {
    padding: 0;
  }

  .partners_card--sponsor .partners_card_logo img {
    max-width: 76%;
    max-height: 100px;
  }

  .partners_card--sponsor-tall .partners_card_logo img {
    max-width: 68%;
    max-height: 52px;
  }

  .partners-cta {
    border-radius: 22px;
  }

  .partners-cta__inner {
    padding: 1.25rem 1rem;
  }

  .partners-cta__button {
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 768px) {
  .partners-shell {
    gap: 1.5rem;
  }

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

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

  .partners_card--sponsor {
    height: 124px;
    padding: 0.9rem;
  }

  .partners_card--sponsor.partners_card--linked {
    padding: 0;
  }

  .partners_card--sponsor .partners_card_logo img {
    max-height: 100px;
  }

  .partners_card--sponsor-tall .partners_card_logo img {
    max-height: 56px;
  }

  .partners_card--strategic {
    padding: 1.6rem;
  }

  .partners-cta__inner {
    padding: 2rem;
  }
}

@media (min-width: 1200px) {
  .section--partners .container {
    padding-block: clamp(2.5rem, 5vw, 4.5rem);
  }

  .partners-shell {
    gap: 1.75rem;
  }

  .partners_grid {
    gap: 1.5rem;
  }

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

  .partners_card--sponsor {
    height: 150px;
    padding: 0.9rem;
  }

  .partners_card--sponsor.partners_card--linked {
    padding: 0;
  }

  .partners_card--sponsor .partners_card_logo img {
    max-height: 125px;
  }

  .partners_card--sponsor-tall .partners_card_logo img {
    max-height: 60px;
  }

  .partners_card--small {
    min-height: 182px;
  }

  .partners_card--strategic {
    max-width: 980px;
    margin-inline: auto;
  }

  .partners-cta {
    max-width: 980px;
    margin-inline: auto;
  }
}

/* =========================================
   GENERIC SECTION SPACING
========================================= */

.section .container > h1,
.section .container > h2 {
  margin-bottom: 1rem;
}

.section--lineup .container,
.section--why-baza .container,
.section--memories .container,
.section--partners .container,
.section--need-to-know .container {
  padding-block: 0.25rem;
}

.section--tickets .container {
  padding-block: clamp(1.5rem, 4vw, 3rem);
}

/* =========================================
   FAQ
========================================= */

.section--need-to-know .container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.need-to-know_intro {
  position: relative;
  text-align: center;
}

.need-to-know_intro::before,
.need-to-know_intro::after {
  position: absolute;
  color: rgba(122, 70, 192, 0.82);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.need-to-know_intro::before {
  content: 'ⓘ';
  left: 0.35rem;
  top: 2.25rem;
  font-size: 1.95rem;
  rotate: -8deg;
}

.need-to-know_intro::after {
  content: '✔';
  right: 0.3rem;
  top: 5.2rem;
  font-size: 1.65rem;
  rotate: 7deg;
}

.need-to-know_list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.need-to-know_item {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(25, 18, 10, 0.05);
  overflow: hidden;
}

.need-to-know_question {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 62px;
  padding: 1rem 1.15rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
}

.need-to-know_question::-webkit-details-marker {
  display: none;
}

.need-to-know_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  color: var(--color-text-soft);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.need-to-know_item[open] .need-to-know_icon {
  transform: rotate(45deg);
  color: var(--color-accent-3);
  border-color: rgba(122, 70, 192, 0.5);
}

.need-to-know_answer {
  padding: 0 1.15rem 1rem;
}

.need-to-know_answer p {
  margin: 0;
  color: var(--color-text-soft);
}

@media (max-width: 767.98px) {
  .need-to-know_intro::before,
  .need-to-know_intro::after,
  .contact_head::before,
  .contact_head::after {
    display: none;
  }
}

/* =========================================
   CONTACT
========================================= */

.contact-final {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 16vw, 8rem) clamp(4.25rem, 12vw, 6.5rem);
  background: rgba(255, 255, 255, 0.18);
  isolation: isolate;
}

.contact-final__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.contact-final__word {
  position: absolute;
  top: clamp(2.75rem, 8vw, 4.5rem);
  left: 50%;
  translate: -50% 0;
  color: rgba(22, 22, 20, 0.045);
  font-size: clamp(7.25rem, 32vw, 24rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.095em;
  white-space: nowrap;
}

.contact-final__brush {
  position: absolute;
  display: block;
  width: clamp(9rem, 36vw, 22rem);
  height: clamp(2.2rem, 8vw, 5rem);
  border-radius: 999px 24px 999px 32px;
  background: rgba(122, 70, 192, 0.22);
  filter: blur(0.2px);
  rotate: -10deg;
}

.contact-final__brush--one {
  top: 1.75rem;
  left: -3.5rem;
}

.contact-final__brush--two {
  right: -6rem;
  bottom: 6.5rem;
  width: clamp(12rem, 48vw, 30rem);
  height: clamp(3rem, 10vw, 7rem);
  opacity: 0.6;
  rotate: -15deg;
}

.contact-final__stamp {
  position: absolute;
  right: clamp(1rem, 4vw, 5rem);
  bottom: clamp(2rem, 7vw, 5rem);
  display: none;
  width: 7.5rem;
  height: 7.5rem;
  place-items: center;
  border: 2px solid rgba(122, 70, 192, 0.5);
  border-radius: 999px;
  color: rgba(122, 70, 192, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  rotate: -9deg;
}

.contact-final__inner {
  position: relative;
}

.contact_head {
  position: relative;
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.contact_head::before,
.contact_head::after {
  position: absolute;
  color: rgba(122, 70, 192, 0.82);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.contact_head::before {
  content: '✉';
  left: 0.25rem;
  top: 2.25rem;
  font-size: 2rem;
  rotate: -9deg;
}

.contact_head::after {
  content: '✆';
  right: 0.3rem;
  top: 5.25rem;
  font-size: 1.7rem;
  rotate: 7deg;
}

.contact_lead strong {
  color: var(--color-text);
}

.contact_grid {
  display: grid;
  gap: 1.9rem 1rem;
  margin-top: clamp(2.75rem, 8vw, 4.5rem);
}

.contact_card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 16.5rem;
  padding: 2.35rem 1.35rem 1.4rem;
  border: 1px solid rgba(22, 22, 20, 0.13);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(22, 22, 20, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact_card:hover {
  transform: translateY(-4px) rotate(-0.35deg);
  border-color: rgba(122, 70, 192, 0.46);
  box-shadow: 0 26px 80px rgba(22, 22, 20, 0.12);
}

.contact_card_number {
  position: absolute;
  top: -0.85rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  min-height: 2.55rem;
  padding-inline: 0.85rem;
  border-radius: 0.12rem;
  background: var(--color-accent-3);
  color: var(--color-surface, #fff);
  font-weight: 900;
  letter-spacing: 0.08em;
  rotate: -7deg;
  box-shadow: 0 12px 24px rgba(122, 70, 192, 0.22);
}

.contact_card_icon {
  position: absolute;
  top: 1.3rem;
  right: 1.25rem;
  width: 2.15rem;
  height: 2.15rem;
  color: rgba(122, 70, 192, 0.82);
}

.contact_card_icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.contact_card_title {
  max-width: 13rem;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.12rem, 4vw, 1.35rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.085em;
}

.contact_card_text {
  max-width: 21rem;
  margin: 1.05rem 0 0;
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.contact_card_text::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  margin-top: 1.1rem;
  background: rgba(122, 70, 192, 0.7);
}

.contact_card_links,
.contact_card_socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.45rem;
}

.contact_card_links {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.contact_card_links a,
.contact_card_socials a {
  color: var(--color-text);
  font-weight: 900;
  text-decoration: none;
}

.contact_card_links a:hover,
.contact_card_socials a:hover,
.contact_card_links a:focus-visible,
.contact_card_socials a:focus-visible {
  color: var(--color-accent-3);
}

.contact_card_socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(122, 70, 192, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact_card_socials a:hover,
.contact_card_socials a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(122, 70, 192, 0.95);
  background: rgba(122, 70, 192, 0.14);
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  padding-block: 2.4rem 2.8rem;
  border-top: 1px solid rgba(22, 22, 20, 0.08);
  background: linear-gradient(135deg, rgba(122, 70, 192, 0.18), rgba(255, 255, 255, 0.38));
}

.site-footer__inner {
  display: grid;
  gap: 2rem;
  justify-items: center;
  text-align: center;
}

.site-footer__brand {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
}

.site-footer__logo {
  display: block;
  width: auto;
  height: clamp(2.1rem, 7vw, 3.4rem);
  max-width: min(100%, 240px);
  margin-inline: auto;
}

.site-footer__meta {
  margin: 0;
  position: relative;
  top: -15px;
  color: var(--color-text);
  font-size: clamp(0.95rem, 3.2vw, 1.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: none;
}

.site-footer__claim {
  max-width: 26rem;
  margin: 0;
  color: var(--color-text);
  font-weight: 800;
  line-height: 1.55;
}

.site-footer__claim::after {
  content: "";
  display: block;
  width: 9rem;
  height: 0.55rem;
  margin: 1.15rem auto 0;
  border-radius: 999px;
  background: rgba(122, 70, 192, 0.64);
  rotate: -4deg;
}

.site-footer__links {
  display: grid;
  gap: 0.9rem;
}

.footer-credit,
.footer-legal {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.55;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 800;
}

.footer-credit span {
  display: block;
}

.footer-legal a,
.footer-credit a {
  color: var(--color-text);
  font-weight: 900;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-credit a:hover,
.footer-legal a:focus-visible,
.footer-credit a:focus-visible {
  color: var(--color-accent-3);
}

@media (min-width: 640px) {
  .contact_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact_card--artists {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .contact-final__stamp {
    display: grid;
  }

  .contact_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.2rem 1.4rem;
  }

  .contact_card,
  .contact_card--artists {
    grid-column: auto;
  }

  .contact_card {
    min-height: 17.25rem;
    padding: 2.65rem 1.75rem 1.65rem;
  }
}

@media (min-width: 1200px) {
  .site-footer__inner {
    grid-template-columns: 0.85fr 1fr 1fr;
    align-items: center;
    justify-items: stretch;
    text-align: left;
    gap: clamp(2rem, 5vw, 4.5rem);
  }

  .site-footer__brand {
    justify-items: start;
  }

  .site-footer__logo {
    margin-inline: 0;
  }

  .site-footer__claim,
  .site-footer__links {
    padding-left: clamp(1.6rem, 4vw, 3.5rem);
    border-left: 1px solid rgba(122, 70, 192, 0.42);
  }

  .site-footer__claim::after {
    margin: 1.15rem 0 0;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

/* =========================================
   LEGAL PAGE
========================================= */

.section--legal .container {
  width: min(calc(100% - (2 * var(--container-gutter))), 920px);
}

.legal-shell {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(25, 18, 10, 0.05);
}

.legal-intro p {
  margin-top: 0.65rem;
}

.legal-intro h1 {
  font-size: clamp(1.6rem, 4.2vw, 2.5rem);
  line-height: 1.08;
}

.legal-block + .legal-block {
  margin-top: 0.4rem;
}

.legal-block h2 {
  font-size: clamp(1.05rem, 2.6vw, 1.5rem);
  margin-bottom: 0.72rem;
  line-height: 1.12;
}

.legal-block h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.legal-block p + p {
  margin-top: 0.7rem;
}

.legal-block p + ul,
.legal-block p + ol,
.legal-block ul + p,
.legal-block ol + p {
  margin-top: 0.7rem;
}

.legal-block ul,
.legal-block ol {
  margin-left: 1.15rem;
  padding-left: 0.7rem;
}

.legal-block ul {
  list-style: disc;
}

.legal-block ol {
  list-style: decimal;
}

.legal-block li {
  color: var(--color-text-soft);
}

.legal-block li + li {
  margin-top: 0.3rem;
}




