﻿:root {
  --primary: #7f3ff2;
  --primary-ink: #2f2479;
  --primary-dark: #5d1fcc;
  --hero-progress: 0;
  --bg: #ffffff;
  --bg-soft: #f8f5ff;
  --bg-panel: #f2ebff;
  --text: #1b1530;
  --muted: #625a76;
  --border: #ddd1fb;
  --success: #169b62;
  --danger: #be3f5f;
  --warning: #cf7a00;
  --radius: 18px;
  --max-width: 1220px;
  --panel-width: 1120px;
  --panel-radius: clamp(24px, 4vw, 34px);
  --anchor-offset: 64px;
  --shadow-soft: 0 12px 34px rgba(45, 26, 78, 0.10);
  --shadow-strong: 0 22px 54px rgba(34, 16, 64, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: #000;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-video-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
  pointer-events: none;
}

.site-video-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 14%, rgba(198, 159, 255, 0.26), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(120, 78, 220, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(7, 4, 16, 0.32) 0%, rgba(5, 4, 11, 0.58) 100%);
  opacity: calc(0.34 + (var(--hero-progress) * 0.3));
  transition: opacity 0.35s ease;
}

.site-video,
.site-video-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.site-video,
.site-video-fallback {
  filter:
    saturate(1.08)
    contrast(1.04)
    brightness(calc(0.84 - (var(--hero-progress) * 0.26)));
}

.site-video-fallback { display: none; }
.no-hero-video .site-video { display: none; }
.no-hero-video .site-video-fallback { display: block; }

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section > .container {
  width: min(100% - 1.5rem, var(--panel-width));
  position: relative;
  margin-inline: auto;
  padding: clamp(1rem, 2.6vw, 1.75rem);
  border-radius: var(--panel-radius);
  box-shadow: 0 28px 70px rgba(7, 5, 18, 0.2);
  overflow: clip;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  padding: 0.65rem 0.95rem;
  background: #000;
  color: #fff;
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus { left: 1rem; }

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(221, 209, 251, 0.8);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  border: 0;
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 8px 18px rgba(47, 36, 121, 0.14));
}

.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(1.25rem, 3.4vw, 1.8rem);
  color: var(--primary-ink);
  line-height: 1;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.36rem;
}

.social-links a {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--primary-ink);
  background: #fff;
  transition: .2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
}

.social-links svg { width: 1rem; height: 1rem; fill: currentColor; }

.menu-toggle {
  border: 1px solid var(--border);
  background: #fff;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 12px;
  display: grid;
  place-content: center;
  gap: 0.25rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.2rem;
  height: 2px;
  background: var(--text);
  display: block;
}

.main-nav {
  position: fixed;
  inset: 80px 0 auto 0;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

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

.main-nav a {
  border-radius: 10px;
  padding: 0.62rem 0.64rem;
  font-weight: 700;
  color: var(--primary-ink);
}

.main-nav a:hover,
.main-nav a:focus-visible { background: var(--bg-soft); }

.hero {
  min-height: 190vh;
  position: relative;
  color: #fff;
  isolation: isolate;
}

.hero-stage {
  position: sticky;
  top: 80px;
  min-height: calc(100vh - 80px);
  overflow: clip;
}

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

.hero-overlay {
  background:
    radial-gradient(circle at 76% 18%, rgba(213, 197, 245, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(10, 7, 16, 0.08) 0%, rgba(9, 7, 14, 0.34) 100%);
  opacity: calc(0.12 + (var(--hero-progress) * 0.22));
  z-index: 1;
  transition: opacity 0.35s ease, background 0.35s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
}

.hero h1,
.hero h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.028em;
  line-height: 1.02;
  margin: 0;
}

.hero-title {
  font-size: clamp(2.9rem, 11vw, 6.5rem);
  margin-bottom: 0.5rem;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
}

.hero-panel {
  width: min(100%, 1040px);
  padding: clamp(0.8rem, 2vw, 1.2rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  opacity: calc(var(--hero-progress) * 1.05);
  transform: translateY(calc(140px - (140px * var(--hero-progress))));
  transition: opacity 0.12s linear, transform 0.12s linear;
  text-align: center;
}

.hero-mark {
  width: min(100%, 220px);
  height: auto;
  margin: 0 auto 1rem;
  filter:
    drop-shadow(0 14px 28px rgba(0, 0, 0, calc(0.18 + (var(--hero-progress) * 0.42))))
    drop-shadow(0 0 24px rgba(255, 255, 255, calc(0.03 + (var(--hero-progress) * 0.12))));
}

.hero-summary {
  margin: 0 auto;
  max-width: 60ch;
  font-size: clamp(1rem, 2.7vw, 1.2rem);
  line-height: 1.65;
  text-shadow:
    0 10px 26px rgba(0, 0, 0, calc(0.26 + (var(--hero-progress) * 0.34))),
    0 3px 10px rgba(0, 0, 0, calc(0.14 + (var(--hero-progress) * 0.2)));
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .75rem 1.25rem;
  font-size: .95rem;
  font-weight: 800;
  transition: .2s ease;
  cursor: pointer;
}

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--primary-dark); }

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff;
}
.btn-ghost:hover, .btn-ghost:focus-visible { background: rgba(255, 255, 255, 0.14); }

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  animation: bob 1.6s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero.hide-scroll .scroll-indicator {
  opacity: 0;
  pointer-events: none;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

.section {
  scroll-margin-top: var(--anchor-offset);
  padding: clamp(0.9rem, 2.2vw, 1.45rem) 0;
  background: transparent;
}

#botiga {
  scroll-margin-top: calc(var(--anchor-offset) + 12px);
}

.section-head { margin-bottom: 1.5rem; }
.section-head h2 {
  margin: 0;
  font-size: clamp(2.1rem, 8vw, 4rem);
}

.concerts-section {
  margin-top: -1px;
  background: transparent;
  padding-top: clamp(0.25rem, 1vw, 0.55rem);
  padding-bottom: clamp(0.7rem, 1.8vw, 1rem);
}

.concerts-section > .container {
  padding-inline: clamp(1rem, 2.6vw, 1.5rem);
  padding-top: clamp(0.45rem, 1.2vw, 0.7rem);
  padding-bottom: clamp(0.9rem, 2vw, 1.2rem);
  background:
    linear-gradient(180deg, rgba(47, 36, 121, 0.96) 0%, rgba(36, 30, 87, 0.96) 100%),
    var(--primary-ink);
  color: #fff;
  border: 1px solid rgba(238, 234, 255, 0.16);
}

.concerts-section .eyebrow { color: #d5c5f5; }

.concerts-section .section-head {
  margin-bottom: 0.05rem;
}

.concerts-section .section-head h2 {
  font-size: clamp(1.9rem, 6vw, 3.25rem);
}

.concerts-section .section-head > div:first-child h2 {
  line-height: 0.95;
}

.filter-wrap { display: flex; gap: .5rem; }

.chip {
  border: 1px solid rgba(213, 197, 245, 0.35);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-radius: 999px;
  padding: .5rem .9rem;
  font-weight: 700;
  cursor: pointer;
}

.chip.active { background: #fff; color: var(--primary-ink); border-color: #fff; }

.section-head.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.concert-list {
  display: grid;
  gap: .9rem;
}

.concert-source-msg {
  margin: -0.2rem 0 1rem;
  color: #ddd2f6;
  font-size: 0.92rem;
}

.concert-source-msg.is-error {
  color: #ffd6df;
}

.concert-more {
  display: flex;
  justify-content: center;
  margin: 1rem 0 0;
}

.concert-more:empty {
  display: none;
}

.concert-more .btn {
  min-width: 10.5rem;
}

.concerts-modal {
  width: min(94vw, 1080px);
  max-height: 88vh;
  border: 0;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}

.concerts-modal::backdrop {
  background: rgba(5, 4, 9, 0.78);
}

.concerts-modal-content {
  max-height: 88vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 3rem 1.1rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(47, 36, 121, 0.98) 0%, rgba(36, 30, 87, 0.98) 100%),
    var(--primary-ink);
  color: #fff;
}

.concerts-modal-content::-webkit-scrollbar {
  width: 10px;
}

.concerts-modal-content::-webkit-scrollbar-thumb {
  background: rgba(213, 197, 245, 0.42);
  border-radius: 999px;
}

.concerts-modal-head {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.concerts-modal-head h3 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
}

.concerts-modal-head p {
  margin: 0;
  color: #ddd2f6;
}

.concerts-modal-grid {
  display: grid;
  gap: 0.9rem;
}

.concert-card {
  border: 1px solid rgba(213, 197, 245, 0.34);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  padding: 1rem;
  display: grid;
  gap: .35rem;
}

.concert-card h3 { margin: 0; font-size: 1.1rem; }
.date, .meta { margin: 0; color: #ddd2f6; }

.concert-empty {
  place-items: center;
  min-height: 10rem;
  text-align: center;
}

.concert-empty p {
  margin: 0;
  max-width: 26rem;
  color: #fff;
}

.status {
  width: fit-content;
  margin-top: .35rem;
  font-size: .78rem;
  font-weight: 800;
  padding: .25rem .62rem;
  border-radius: 999px;
}

.is-upcoming, .is-confirmed { background: #dff7eb; color: #0f7e52; }
.is-sold { background: #ffe9ee; color: #be3f5f; }
.is-past { background: #fff3e0; color: #b66f00; }

.ticket-link {
  margin-top: .24rem;
  font-weight: 800;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  text-underline-offset: 3px;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.promo-section,
.contact-section,
.gallery-section,
.merch-section {
  background: transparent;
}

.promo-section > .container,
.contact-section > .container,
.gallery-section > .container,
.merch-section > .container {
  padding-inline: clamp(1rem, 2.6vw, 1.5rem);
}

.gallery-section > .container,
.merch-section > .container,
.site-footer .container {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 245, 255, 0.98) 100%);
  border: 1px solid rgba(125, 105, 189, 0.16);
}

.promo-section > .container,
.contact-section > .container {
  background:
    linear-gradient(180deg, rgba(47, 36, 121, 0.96) 0%, rgba(36, 30, 87, 0.96) 100%),
    var(--primary-ink);
  color: #fff;
  border: 1px solid rgba(238, 234, 255, 0.16);
}

.promo-card,
.product-card,
.values-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.promo-card {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.promo-player-wrap { background: #0f0b17; }
.promo-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
}
.promo-copy { padding: 1.1rem 1.15rem 1.4rem; }
.small-muted { color: var(--muted); font-size: .95rem; }

.about-grid,
.merch-grid {
  display: grid;
  gap: 1rem;
}

.about-image img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.about-copy h2 { font-size: clamp(2rem, 7vw, 3.7rem); }
.values-grid { margin-top: 1rem; display: grid; gap: .8rem; }
.values-grid article { padding: .95rem; }
.values-grid h3 { margin: 0 0 .5rem; }

.section-note { color: var(--muted); margin-top: -.2rem; margin-bottom: 1rem; }

.carousel-shell {
  position: relative;
  display: block;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 3.25rem;
  height: 3.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 6, 14, 0.82);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.carousel-prev {
  left: 0.55rem;
}

.carousel-next {
  right: 0.55rem;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 24vw);
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding-bottom: 0.25rem;
  padding-inline: 0;
  width: 100%;
}

.gallery-grid::-webkit-scrollbar {
  height: 8px;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: rgba(47, 36, 121, 0.24);
  border-radius: 999px;
}

.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: clamp(280px, 48vw, 500px);
  object-fit: cover;
  transition: transform .25s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.04); }

.play-badge {
  position: absolute;
  left: .65rem;
  bottom: .65rem;
  border-radius: 999px;
  background: rgba(8, 5, 15, .8);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  padding: .3rem .7rem;
}

.merch-section {
  background: transparent;
  padding-top: clamp(0.25rem, 0.9vw, 0.5rem);
  padding-bottom: clamp(0.55rem, 1.4vw, 0.85rem);
}

.merch-section > .container {
  padding-top: clamp(0.6rem, 1.2vw, 0.8rem);
  padding-bottom: clamp(0.7rem, 1.4vw, 0.95rem);
}

.merch-section .section-head h2 {
  color: var(--text);
  line-height: 0.95;
  font-size: clamp(1.6rem, 4.9vw, 2.5rem);
}

.merch-section .section-head {
  margin-bottom: 0.4rem;
}

.product-card { overflow: hidden; }
.product-card:not(.is-pending) {
  display: block;
  position: relative;
  background: #fff;
}
.product-card.is-pending {
  display: grid;
  place-items: center;
  min-height: clamp(130px, 15vw, 160px);
  background: rgba(255, 255, 255, 0.96);
}

.pending-slot {
  width: 100%;
  padding: 0.5rem;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--primary-ink);
}

.product-card img {
  width: 100%;
  height: clamp(120px, 16vw, 165px);
  object-fit: cover;
}
.product-card:not(.is-pending) img {
  height: clamp(170px, 22vw, 215px);
}
.product-body {
  display: grid;
  gap: 0.4rem;
  padding: 0.55rem 0.8rem 0.65rem;
}
.product-card:not(.is-pending) .product-body {
  align-content: start;
  margin-top: -1rem;
  padding-top: 0.45rem;
  background: #fff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  position: relative;
  z-index: 1;
}
.product-body h3 { margin: 0; }
.price { margin: 0 0 .1rem; color: var(--primary-dark); font-weight: 800; }

.product-body label {
  display: grid;
  gap: 0.16rem;
}

.btn[disabled] {
  pointer-events: none;
}

.product-body select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: .42rem .58rem;
  font: inherit;
}

.product-body .buy-btn {
  margin-top: 0;
}

.contact-showcase {
  display: grid;
  gap: 0.7rem;
  align-items: center;
  padding: clamp(0.2rem, 0.7vw, 0.45rem) 0;
}

.contact-block h2 {
  font-size: clamp(1.05rem, 2.8vw, 1.8rem);
  margin: 0 0 0.42rem;
}

.contact-info-list {
  display: grid;
  gap: 0.35rem;
}

.contact-info-list p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: clamp(0.8rem, 1.2vw, 0.92rem);
}

.contact-icon {
  font-size: 0.95rem;
  line-height: 1;
  color: #d5c5f5;
}

.contact-brand {
  text-align: center;
}

.contact-brand-logo {
  width: min(100%, 110px);
  height: auto;
  margin: 0 auto 0.3rem;
  filter: drop-shadow(0 16px 28px rgba(8, 5, 18, 0.24));
}

.contact-brand p {
  margin: 0;
  font-weight: 800;
  font-size: 0.74rem;
  color: #fff;
}

.contact-social-side {
  text-align: center;
}

.contact-social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-social-icons a {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  background: #fff;
  color: var(--primary-ink);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-social-icons a:hover,
.contact-social-icons a:focus-visible {
  transform: translateY(-2px);
  background: #d9cdfb;
}

.contact-social-icons svg {
  width: 0.92rem;
  height: 0.92rem;
  fill: currentColor;
}

.contact-links { display: grid; gap: .46rem; }
.contact-links a { font-weight: 700; color: var(--primary-ink); }

.site-footer {
  border-top: 0;
  background: transparent;
  color: var(--text);
  padding: 0.9rem 0 2rem;
}

.site-footer .container {
  width: min(100% - 1.5rem, var(--panel-width));
  margin-inline: auto;
  padding: 1.15rem clamp(1rem, 2.6vw, 1.5rem) 1.35rem;
  border-radius: var(--panel-radius);
  box-shadow: 0 28px 70px rgba(7, 5, 18, 0.2);
}

.footer-grid {
  display: grid;
  gap: .55rem;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.back-top {
  color: var(--primary-ink);
  font-weight: 700;
}

.media-modal,
.buy-modal,
.concert-modal {
  width: min(96vw, 980px);
  border: 0;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}

.buy-modal,
.concert-modal { width: min(94vw, 560px); }

.media-modal::backdrop,
.buy-modal::backdrop,
.concert-modal::backdrop { background: rgba(5, 4, 9, 0.78); }

.modal-close {
  position: absolute;
  top: .66rem;
  right: .66rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

.modal-content img,
.modal-content video {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #000;
}

.modal-content {
  background: #050409;
}

.media-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(76vh, 860px);
  background: #050409;
}

.media-figure {
  width: 100%;
  margin: 0;
}

.media-figure img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #000;
}

.media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.15rem;
  height: 3.15rem;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 6, 14, 0.82);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.media-nav.prev {
  left: 0.85rem;
}

.media-nav.next {
  right: 0.85rem;
}

.buy-content { padding: 2.5rem 1.1rem 1.2rem; }

.concert-content {
  padding: 2.5rem 1.1rem 1.2rem;
}

.concert-content h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.concert-details {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.concert-details p {
  margin: 0;
}

.concert-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.18rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 760px) {
  .hero {
    min-height: 210vh;
  }

  .section > .container,
  .site-footer .container {
    width: min(100% - 3.5rem, var(--panel-width));
  }

  .about-grid { grid-template-columns: 1.05fr 1fr; align-items: center; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .concert-list { grid-template-columns: repeat(2, 1fr); }
  .concerts-modal-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-auto-columns: minmax(260px, 21vw); }
  .merch-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-showcase { grid-template-columns: 1fr 0.9fr 1fr; }
  .footer-grid { align-items: center; grid-template-columns: 1.4fr 1fr auto; }
}

@media (min-width: 980px) {
  .menu-toggle { display: none; }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: .36rem;
    border: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .main-nav a { padding: .5rem .8rem; }
  .concert-list { grid-template-columns: repeat(3, 1fr); }
  .concerts-modal-grid { grid-template-columns: repeat(3, 1fr); }
  .section > .container,
  .site-footer .container { width: min(100% - 6rem, var(--panel-width)); }
  .gallery-grid { grid-auto-columns: minmax(280px, 19vw); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
