:root {
  color-scheme: dark;
  --bg: #090b0f;
  --panel: #140912;
  --panel-2: #190a15;
  --text: #fff4ea;
  --muted: #dfc7d5;
  --line: rgba(255, 247, 235, 0.16);
  --accent: #ff8a1c;
  --accent-2: #c0009f;
  --accent-3: #ff3308;
  --accent-4: #ffd12e;
  --danger: #ff3308;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --glass: rgba(255, 244, 234, 0.075);
  --glass-strong: rgba(255, 244, 234, 0.12);
  --glass-border: rgba(255, 244, 234, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.has-lightbox {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(9, 11, 15, 0.84), rgba(9, 11, 15, 0));
  transition:
    background 180ms ease,
    border-color 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(9, 11, 15, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  display: block;
  width: clamp(142px, 16vw, 230px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 244, 234, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 244, 234, 0.09), rgba(192, 0, 159, 0.08)),
    rgba(9, 11, 15, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 38px rgba(0, 0, 0, 0.22);
  color: rgba(255, 247, 235, 0.88);
  font-size: 14px;
  backdrop-filter: blur(18px) saturate(1.25);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover {
  background: rgba(255, 244, 234, 0.08);
  color: #fff8ef;
  transform: translateY(-1px);
}

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

.site-nav a:first-child {
  background: linear-gradient(135deg, rgba(255, 138, 28, 0.95), rgba(192, 0, 159, 0.86));
  color: #fff8ef;
  box-shadow: 0 10px 26px rgba(192, 0, 159, 0.24);
}

.site-nav a:first-child::after {
  display: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 70px) 54px;
}

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

.hero-media {
  background-image: url("assets/ankara-dans-hero.jpg");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 2, 8, 0.94) 0%, rgba(9, 2, 8, 0.72) 44%, rgba(9, 2, 8, 0.22) 100%),
    linear-gradient(0deg, rgba(9, 2, 8, 0.98) 0%, rgba(9, 2, 8, 0.16) 45%, rgba(9, 2, 8, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 6.8vw, 90px);
  line-height: 0.94;
  letter-spacing: 0;
  max-width: 720px;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.hero-copy {
  max-width: 610px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.ticket-offer {
  display: flex;
  width: min(680px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 138, 28, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 28, 0.2), rgba(192, 0, 159, 0.18)),
    rgba(255, 244, 234, 0.08);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(1.25);
}

.ticket-offer p {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticket-offer strong {
  display: block;
  color: var(--text);
  font-size: clamp(25px, 3.2vw, 40px);
  line-height: 1;
}

.ticket-offer strong span {
  position: relative;
  color: rgba(255, 244, 234, 0.56);
  font-size: 0.62em;
  white-space: nowrap;
}

.ticket-offer strong span::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 52%;
  height: 2px;
  background: var(--danger);
  transform: rotate(-7deg);
}

.ticket-link {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 11px 15px;
  border: 1px solid rgba(255, 244, 234, 0.24);
  border-radius: 6px;
  background: rgba(9, 11, 15, 0.5);
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #15100a;
}

.button.secondary {
  border-color: rgba(192, 0, 159, 0.62);
  background: rgba(192, 0, 159, 0.18);
  color: var(--text);
}

.button:hover {
  transform: translateY(-1px);
}

.countdown {
  width: min(760px, 100%);
  margin: 22px 0 0;
}

.countdown p {
  margin: 0 0 6px;
  color: var(--muted);
  font-weight: 800;
}

.countdown-row {
  display: flex;
  align-items: end;
  gap: 18px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 132px);
  align-items: end;
  gap: 8px;
  width: auto;
}

.countdown-grid div {
  position: relative;
  min-height: auto;
  display: grid;
  align-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.countdown-grid strong {
  color: var(--accent);
  font-size: clamp(46px, 6vw, 78px);
  font-variant-numeric: tabular-nums;
  line-height: 0.92;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}

.countdown-grid span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.countdown-action {
  margin-bottom: 6px;
  white-space: nowrap;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(760px, 100%);
  margin: 46px 0 0;
}

.hero-facts div {
  position: relative;
  overflow: hidden;
  min-height: 106px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 244, 234, 0.2);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 209, 46, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 138, 28, 0.22), rgba(192, 0, 159, 0.13)),
    rgba(255, 244, 234, 0.075);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.25);
}

.hero-facts div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.hero-facts div:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0%, rgba(192, 0, 159, 0.28), transparent 36%),
    linear-gradient(135deg, rgba(192, 0, 159, 0.22), rgba(255, 51, 8, 0.12)),
    rgba(255, 244, 234, 0.07);
}

.hero-facts div:nth-child(2)::before {
  background: linear-gradient(180deg, var(--accent-2), var(--accent-3));
}

.hero-facts div:nth-child(3) {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 51, 8, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(255, 51, 8, 0.2), rgba(255, 209, 46, 0.12)),
    rgba(255, 244, 234, 0.07);
}

.hero-facts div:nth-child(3)::before {
  background: linear-gradient(180deg, var(--accent-3), var(--accent-4));
}

.hero-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: #fff8ef;
  font-weight: 900;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px clamp(18px, 4vw, 42px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.section-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.band {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(192, 0, 159, 0.12), rgba(255, 138, 28, 0.1)),
    var(--panel);
}

.band > * {
  max-width: var(--max);
  margin-inline: auto;
}

.section-heading {
  margin-bottom: 34px;
}

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

.timeline-item {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 24px;
  border: 1px solid rgba(255, 244, 234, 0.18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 138, 28, 0.2), transparent 34%),
    linear-gradient(150deg, rgba(255, 244, 234, 0.11), rgba(192, 0, 159, 0.13)),
    rgba(255, 244, 234, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.2);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.timeline-item:nth-child(2) {
  background:
    radial-gradient(circle at 20% 0%, rgba(192, 0, 159, 0.24), transparent 34%),
    linear-gradient(150deg, rgba(255, 244, 234, 0.1), rgba(255, 51, 8, 0.13)),
    rgba(255, 244, 234, 0.06);
}

.timeline-item:nth-child(2)::before {
  background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
}

.timeline-item:nth-child(3) {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 51, 8, 0.22), transparent 34%),
    linear-gradient(150deg, rgba(255, 244, 234, 0.1), rgba(255, 209, 46, 0.12)),
    rgba(255, 244, 234, 0.06);
}

.timeline-item:nth-child(3)::before {
  background: linear-gradient(90deg, var(--accent-3), var(--accent-4));
}

.timeline-item:nth-child(4) {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 209, 46, 0.18), transparent 34%),
    linear-gradient(150deg, rgba(255, 244, 234, 0.1), rgba(255, 138, 28, 0.13)),
    rgba(255, 244, 234, 0.06);
}

.timeline-item:nth-child(4)::before {
  background: linear-gradient(90deg, var(--accent-4), var(--accent));
}

.timeline-item span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 36px;
  border: 1px solid rgba(255, 244, 234, 0.2);
  border-radius: 50%;
  background: rgba(9, 11, 15, 0.42);
  color: var(--accent);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.timeline-item p,
.card p,
.showcase-copy p {
  margin: 0;
  color: var(--muted);
}

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 28px 26px 26px;
  border: 1px solid rgba(255, 244, 234, 0.18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 138, 28, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 244, 234, 0.1), rgba(192, 0, 159, 0.12)),
    rgba(255, 244, 234, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.22);
}

.card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.card:nth-child(2) {
  background:
    radial-gradient(circle at 0% 0%, rgba(192, 0, 159, 0.25), transparent 34%),
    linear-gradient(145deg, rgba(255, 244, 234, 0.1), rgba(255, 51, 8, 0.12)),
    rgba(255, 244, 234, 0.06);
}

.card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
}

.card:nth-child(3) {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 209, 46, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 244, 234, 0.1), rgba(255, 138, 28, 0.12)),
    rgba(255, 244, 234, 0.06);
}

.card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--accent-4), var(--accent));
}

.card h3,
.timeline-item h3 {
  color: #fff8ef;
}

.artists-section {
  padding: 92px clamp(18px, 6vw, 70px);
  background:
    linear-gradient(135deg, rgba(255, 138, 28, 0.12), rgba(192, 0, 159, 0.18)),
    #080307;
}

.artists-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.75fr);
  gap: clamp(24px, 5vw, 62px);
  max-width: var(--max);
  margin: 0 auto 34px;
  align-items: end;
}

.artists-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.artist-carousel {
  max-width: var(--max);
  margin: 0 auto;
}

.artist-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.artist-tabs button {
  border: 1px solid rgba(255, 247, 235, 0.18);
  border-radius: 6px;
  background: rgba(255, 247, 235, 0.06);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.artist-tabs button {
  min-height: 34px;
  padding: 7px 11px;
  font-size: 13px;
}

.artist-tabs button.is-active {
  border-color: rgba(255, 138, 28, 0.62);
  background: rgba(255, 138, 28, 0.18);
  color: var(--accent);
}

.artist-marquee {
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding-block: 2px;
}

.artist-marquee-row {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: artist-marquee 76s linear infinite;
}

.artist-marquee-row.reverse {
  animation-name: artist-marquee-reverse;
  animation-duration: 84s;
}

.artist-marquee:hover .artist-marquee-row {
  animation-play-state: paused;
}

@keyframes artist-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes artist-marquee-reverse {
  from {
    transform: translateX(calc(-50% - 7px));
  }
  to {
    transform: translateX(0);
  }
}

.artist-card {
  flex: 0 0 188px;
  border: 1px solid rgba(255, 247, 235, 0.14);
  border-radius: 8px;
  background: rgba(255, 247, 235, 0.05);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.artist-card[data-full-src] {
  cursor: pointer;
}

.artist-card[data-full-src]:hover {
  border-color: rgba(255, 138, 28, 0.52);
  background: rgba(255, 244, 234, 0.08);
  transform: translateY(-2px);
}

.artist-card h3 {
  margin: 0;
}

.artist-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.artist-card {
  min-height: 244px;
}

.artist-card h3,
.artist-card p {
  padding-inline: 12px;
}

.artist-card h3 {
  padding-top: 12px;
  font-size: 16px;
}

.artist-card p {
  padding-bottom: 12px;
  font-size: 13px;
}

.artist-photo {
  position: relative;
  height: 150px;
  background-size: cover;
  background-position: center;
}

.artist-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 51, 8, 0.75), rgba(255, 138, 28, 0.55) 40%, rgba(192, 0, 159, 0.8)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 32%),
    #210916;
}

.artist-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.34) 100%);
}

.artist-placeholder span {
  position: relative;
  z-index: 1;
  color: rgba(255, 244, 234, 0.9);
  font-size: 24px;
  font-weight: 950;
  text-align: center;
}

.artist-empty {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 44px;
  align-items: stretch;
  padding: 90px clamp(18px, 6vw, 70px);
  background: var(--panel-2);
}

.showcase-copy {
  max-width: 720px;
}

.showcase-copy p:last-child {
  margin-top: 18px;
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.stats div {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 244, 234, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(110deg, rgba(255, 138, 28, 0.2), rgba(192, 0, 159, 0.14)),
    rgba(255, 244, 234, 0.065);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(1.2);
}

.stats div::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.stats div:nth-child(2) {
  background:
    linear-gradient(110deg, rgba(192, 0, 159, 0.2), rgba(255, 51, 8, 0.13)),
    rgba(255, 244, 234, 0.065);
}

.stats div:nth-child(2)::after {
  background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
}

.stats div:nth-child(3) {
  background:
    linear-gradient(110deg, rgba(255, 209, 46, 0.16), rgba(255, 138, 28, 0.14)),
    rgba(255, 244, 234, 0.065);
}

.stats div:nth-child(3)::after {
  background: linear-gradient(90deg, var(--accent-4), var(--accent));
}

.stats strong {
  color: var(--accent);
  font-size: 44px;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  text-align: right;
}

.contact-section {
  padding-bottom: 72px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 244, 234, 0.1), rgba(192, 0, 159, 0.09)),
    var(--glass);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.2);
}

.form-extra {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.is-success {
  color: #8dffad;
}

.form-status.is-error {
  color: #ffb199;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 235, 0.18);
  border-radius: 6px;
  background: rgba(9, 11, 15, 0.88);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 138, 28, 0.76);
  outline-offset: 2px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(18px, 4vw, 54px);
  border-top: 1px solid rgba(255, 244, 234, 0.12);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 138, 28, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(192, 0, 159, 0.12), rgba(255, 51, 8, 0.08)),
    rgba(9, 11, 15, 0.96);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-weight: 750;
}

.site-footer strong {
  color: #fff8ef;
  font-weight: 950;
}

.back-to-top {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 16px;
  border: 1px solid rgba(255, 244, 234, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 138, 28, 0.18), rgba(192, 0, 159, 0.14)),
    rgba(255, 244, 234, 0.06);
  color: #fff8ef;
  font-weight: 900;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 34px rgba(0, 0, 0, 0.22);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.back-to-top b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff8ef;
  font-size: 17px;
  line-height: 1;
}

.back-to-top:hover {
  border-color: rgba(255, 138, 28, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 138, 28, 0.24), rgba(192, 0, 159, 0.18)),
    rgba(255, 244, 234, 0.08);
  transform: translateY(-2px);
}

.artist-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(14px);
}

.artist-lightbox[hidden] {
  display: none;
}

.artist-lightbox-figure {
  width: min(760px, 92vw);
  max-height: 90vh;
  margin: 0;
  pointer-events: none;
}

.artist-lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  border: 1px solid rgba(255, 244, 234, 0.22);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  pointer-events: auto;
}

.artist-lightbox-figure figcaption {
  margin-top: 12px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.artist-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 101;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 244, 234, 0.24);
  border-radius: 999px;
  background: rgba(8, 3, 7, 0.7);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    border: 1px solid rgba(255, 244, 234, 0.2);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(255, 138, 28, 0.18), rgba(192, 0, 159, 0.14)),
      rgba(9, 11, 15, 0.72);
    color: var(--text);
    font: inherit;
    font-weight: 800;
    padding: 8px 14px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 4px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(255, 244, 234, 0.18);
    border-radius: 16px;
    background:
      linear-gradient(135deg, rgba(255, 244, 234, 0.08), rgba(192, 0, 159, 0.08)),
      rgba(9, 11, 15, 0.96);
    backdrop-filter: blur(16px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .section-grid,
  .artists-heading,
  .showcase {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .hero {
    min-height: 94vh;
    padding-top: 118px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 2, 8, 0.95) 0%, rgba(9, 2, 8, 0.78) 64%, rgba(9, 2, 8, 0.46) 100%),
      linear-gradient(0deg, rgba(9, 2, 8, 0.98) 0%, rgba(9, 2, 8, 0.2) 48%, rgba(9, 2, 8, 0.52) 100%);
  }

  h1 {
    font-size: clamp(48px, 15vw, 74px);
  }

  .hero-facts,
  .timeline {
    grid-template-columns: 1fr;
  }

  .countdown-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .ticket-offer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .ticket-link {
    width: 100%;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 112px);
    gap: 10px;
  }

  .countdown-action {
    margin-bottom: 0;
    white-space: normal;
  }

  .hero-facts div,
  .timeline-item {
    min-height: auto;
  }

  .timeline-item span {
    margin-bottom: 18px;
  }

  .section {
    padding-block: 68px;
  }

  .showcase {
    padding-block: 70px;
  }

  .artists-section {
    padding-block: 70px;
  }

  .artist-card {
    flex-basis: 164px;
    min-height: 224px;
  }

  .artist-photo {
    height: 134px;
  }

  .stats div,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats span {
    text-align: left;
  }
}
