/* ===========================
   Base
=========================== */
:root {
  --bg: #0b0b0f;
  --bg2: #11111a;
  --card: #12121a;
  --text: #f2f2f2;
  --muted: #b8b8c7;
  --line: rgba(255, 255, 255, .10);

  --wrap: 1100px;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .45);
  --coverSize: clamp(340px, 38vw, 460px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
}

.skip-link:focus {
  left: 12px;
  z-index: 9999;
}

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

/* ===========================
   Header / Nav
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 11, 15, .72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
}

.brand-mark {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.brand:hover,
.brand:focus,
.nav a:hover,
.nav a:focus {
  text-decoration: none;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
  color: rgba(255, 255, 255, .92);
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  line-height: 1;
  font-size: 15px;
  letter-spacing: .02em;
}

.nav a:hover {
  background: rgba(255, 255, 255, .12);
  text-decoration: none;
}

.nav-sep {
  width: 2px;
  height: 18px;
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.35);
  display: inline-block;
}

/* ===========================
   Hero
=========================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(11, 11, 15, .92) 0%,
      rgba(11, 11, 15, .40) 55%,
      rgba(11, 11, 15, .65) 100%);
}

.hero-inner {
  position: relative;
  padding: 64px 0 52px;
  display: flex;
  align-items: flex-end;
}

.hero-card {
  max-width: 720px;
}

.hero-subtitle {
  margin: 0 0 18px;
  font-size: 20px;
  max-width: 58ch;
  opacity: .92;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-meta {
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  opacity: .9;
}

/* ===========================
   Sections / Grids / Cards
=========================== */
.section {
  padding: 70px 0;
  scroll-margin-top: 20px;
}

.shows {
  padding-top: 120px;
}

.section.alt {
  background:
    radial-gradient(1200px 700px at 50% 0%, rgba(255, 255, 255, .05), transparent 55%),
    linear-gradient(to bottom, var(--bg2), var(--bg));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  margin: 0 0 24px;
  font-size: 28px;
  letter-spacing: .02em;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  background: rgba(18, 18, 26, .80);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card-title {
  margin: 0 0 8px;
  font-size: 18px;
}

.links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.big-link {
  font-size: 18px;
  font-weight: 650;
}

.footer-note {
  margin-top: 18px;
  font-size: 13px;
}

/* ===========================
   Buttons
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  text-decoration: none;
  font-weight: 650;
}

.btn:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, .10);
}

.btn.ghost {
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .25);
}

.btn.small {
  padding: 10px 12px;
  font-size: 14px;
}

/* ===========================
   Discography (Zig-Zag)
=========================== */
.discography {
  background: linear-gradient(to bottom, var(--bg), var(--bg2));
  color: var(--text);
  padding: 120px 0 0;
  /* ✅ spodní padding pryč -> videa si řeší vlastní */
}

.section-title.light {
  font-size: 32px;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.release {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(40px, 8vw, 140px);
  align-items: center;
  margin-bottom: 140px;
  grid-auto-flow: dense;
}

.release .release-cover,
.release .release-content {
  grid-row: 1;
  min-width: 0;
}

.release .release-cover {
  grid-column: 1;
  justify-self: start;
}

.release .release-content {
  grid-column: 2;
  justify-self: end;
  width: min(100%, var(--coverSize));
  max-width: var(--coverSize);
  text-align: left;
  align-self: center;
}

.release.reverse .release-cover {
  grid-column: 2;
  justify-self: end;
}

.release.reverse .release-content {
  grid-column: 1;
  justify-self: start;
}

.release-type {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: .75;
}

.release-content h3 {
  font-size: 28px;
  margin: 0 0 18px;
}

.release-desc {
  margin: 0 0 14px;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.92);
}

.release-meta {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .9;
}

.tracklist {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  max-width: 460px;
  border-top: 0px solid rgba(255, 255, 255, .08);
}

.tracklist li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 3px 0;
  border-bottom: 0px solid rgba(255, 255, 255, .06);
  align-items: baseline;
}

.track-name {
  color: rgba(255, 255, 255, .94);
}

.track-time {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.release.reverse .release-content .tracklist,
.release.reverse .release-content .release-desc,
.release.reverse .release-content .release-meta {
  max-width: 460px;
}

@media (max-width: 900px) {

  .release-desc,
  .release-meta,
  .tracklist {
    max-width: 100%;
  }

  .tracklist li {
    gap: 10px;
  }
}

.release-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===========================
   Cover Flip Effect
=========================== */
.release-cover.flip {
  perspective: 1200px;
}

.release-cover.flip .flip-inner {
  position: relative;
  width: var(--coverSize);
  aspect-ratio: 1 / 1;
  transform-style: preserve-3d;
  transition: transform 600ms cubic-bezier(.2, .8, .2, 1);
  border-radius: 12px;
}

.release-cover.flip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  backface-visibility: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.release-cover.flip .flip-back {
  transform: rotateY(180deg);
}

.release-cover.flip.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

@media (hover: none) {
  .release-cover.flip .flip-inner {
    transition: none;
  }
}

/* ===========================
   Videos separated section (full-bleed)
=========================== */
.videos-section {
  position: relative;
  padding: 70px 0 60px;
  margin-top: 10px;
  /* jemná mezera od posledního releasu */
  isolation: isolate;
  /* ✅ fix z-index “pod discography backgroundem” */
}

.videos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(1000px 600px at 80% 0%, rgba(255, 255, 255, .05), transparent 60%),
    linear-gradient(to bottom, #11111a, #0b0b0f);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  z-index: 0;
  pointer-events: none;
}

.videos-section>* {
  position: relative;
  z-index: 1;
}

/* Headline */
.videos-head {
  margin: 0 0 14px;
}

.videos-head h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .96);
}



/* ===========================
   Video cards
=========================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 14px;
}

.video-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .25);
  aspect-ratio: 16 / 9;
  text-decoration: none;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.36) 18%,
      transparent 36%,
      transparent 64%,
      rgba(0, 0, 0, 0.36) 82%,
      rgba(0, 0, 0, 0.88) 100%);
  opacity: 1;
  transition: opacity .35s ease;
  pointer-events: none;
}

.video-title {
  position: absolute;
  left: 18px;
  right: 72px;
  bottom: 16px;
  z-index: 2;
  display: block;
  padding: 0;
  text-align: left;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.85);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .28s cubic-bezier(.16, 1, .3, 1),
    transform .28s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

.video-quote {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
  font-size: clamp(17px, 3vw, 27px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(15, 1, 1, 0.82);
  text-shadow:
    0 8px 30px rgba(250, 250, 250, 0.9),
    0 0 50px rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition:
    opacity .32s cubic-bezier(.16, 1, .3, 1),
    transform .32s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

.play-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 18px;
  opacity: .9;
  transition:
    transform .25s ease,
    opacity .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
  pointer-events: none;
}

.video-card:hover {
  text-decoration: none;
}

.video-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.58) grayscale(0.22);
}

.video-card:hover .video-title {
  opacity: 0.18;
  transform: translateY(6px);
}

.video-card:hover .video-quote {
  opacity: 1;
  transform: translateY(0);
}

.video-card:hover .play-badge {
  transform: scale(1.08);
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .52);
  box-shadow: 0 0 16px rgba(255, 255, 255, .32);
  opacity: 1;
}

/* ===========================
   Merch section video background
=========================== */
.merch-section {
  position: relative;
  overflow: hidden;
}

.section-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

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

.thumb {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===========================
   Live / Shows
=========================== */
.shows {
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(255, 255, 255, .06), transparent 55%),
    linear-gradient(to bottom, var(--bg2), var(--bg));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shows-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.shows-sub {
  margin: 0;
  font-size: 13px;
}

.shows-list {
  display: grid;
  gap: 12px;
}

.show-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(18, 18, 26, .72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.show-date {
  width: 74px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  padding: 10px 8px;
}

.show-day {
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .02em;
}

.show-my {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
}

.show-city {
  font-weight: 800;
  letter-spacing: .02em;
}

.show-venue {
  font-size: 14px;
}

.show-with {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--muted);
}

.show-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.shows-empty.card {
  margin-top: 12px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.price {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
}


/* ===========================
   LIVE FEATURE
=========================== */
.live-feature {
  margin-top: 42px;
}

.live-feature-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0c14;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  aspect-ratio: 16 / 9;
  min-height: 540px;
}

.live-feature-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(5, 7, 14, 0.88) 0%,
      rgba(5, 7, 14, 0.50) 24%,
      rgba(5, 7, 14, 0.14) 48%,
      rgba(5, 7, 14, 0.06) 100%
    );
  pointer-events: none;
}

.live-feature-copy {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  max-width: 1050px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(
    to bottom,
    rgba(8, 10, 18, 0.16),
    rgba(8, 10, 18, 0.42)
  );
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
}

.live-feature-kicker {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.live-feature-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.30);
}


.live-feature-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 10, 20, 0.34);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  appearance: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.live-feature-nav svg {
  width: 18px;
  height: 18px;
  display: block;
  pointer-events: none;
}

.live-feature-nav:hover {
  transform: translateY(-50%) scale(1.04);
  background: rgba(7, 10, 20, 0.46);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.live-feature-nav:focus-visible {
  outline: none;
  transform: translateY(-50%) scale(1.04);
  background: rgba(7, 10, 20, 0.46);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.10);
}

.live-feature-prev {
  left: 22px;
}

.live-feature-next {
  right: 22px;
}

@media (max-width: 1100px) {
  .live-feature-media {
    min-height: 500px;
  }

  .live-feature-copy {
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  .live-feature-media {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .live-feature-copy {
    left: 22px;
    right: 22px;
    bottom: 22px;
    max-width: none;
  }

  
  .live-feature-nav {
    width: 44px;
    height: 44px;
  }

  .live-feature-prev {
    left: 14px;
  }

  .live-feature-next {
    right: 14px;
  }
}

@media (max-width: 640px) {
  .live-feature-media {
    position: relative;
    display: grid;
    grid-template-areas: "stack";
    aspect-ratio: auto;
    min-height: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border: 0;
  }

  .live-feature-image {
    grid-area: stack;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  }

  .live-feature-overlay {
    grid-area: stack;
    border-radius: 24px;
  }

  .live-feature-copy {
    position: static;
    grid-area: auto;
    margin-top: 14px;
    padding: 0;
    max-width: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    z-index: auto;
  }

  .live-feature-kicker {
    margin: 0 0 10px;
  }

  .live-feature-caption {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: none;
    -webkit-text-fill-color: currentColor;
  }

  .live-feature-nav {
    grid-area: stack;
    top: 50%;
    width: 44px;
    height: 44px;
    z-index: 3;
  }

  .live-feature-prev {
    left: 14px;
  }

  .live-feature-next {
    right: 14px;
  }
}


/* Shows responsive */
@media (max-width: 700px) {
  .shows-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .show-item {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "date main"
      "actions actions";
  }

  .show-date {
    grid-area: date;
  }

  .show-main {
    grid-area: main;
  }

  .show-actions {
    grid-area: actions;
    justify-content: flex-start;
  }
}

/* ===========================
   Media page
=========================== */
.media-hero {
  padding: 90px 0 50px;
  background:
    radial-gradient(1100px 600px at 30% 0%, rgba(255, 255, 255, .07), transparent 60%),
    linear-gradient(to bottom, var(--bg), var(--bg2));
  border-bottom: 1px solid var(--line);
}

.media-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.media-title {
  margin: 0 0 10px;
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: .10em;
  text-transform: uppercase;
}

.media-lead {
  margin: 0;
  max-width: 62ch;
}

.media-hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.media-section {
  padding: 60px 0;
}

.media-card p {
  margin-top: 0;
}

.media-meta {
  font-size: 13px;
}

.media-photos .media-photo {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .25);
  aspect-ratio: 4 / 3;
  text-decoration: none;
}

.media-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.media-photo:hover img {
  transform: scale(1.03);
  filter: brightness(0.85) grayscale(0.25);
}

.media-downloads {
  align-items: stretch;
}

.media-downloads .media-card {
  display: flex;
  flex-direction: column;
}

.media-downloads .media-card p {
  margin-bottom: 16px;
}

.media-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
}

.lang-switch .lang {
  padding: 6px 9px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  opacity: .75;
  border: 0;
}

.lang-switch .lang:hover {
  background: rgba(255, 255, 255, .10);
  opacity: 1;
  text-decoration: none;
}

.lang-switch .lang.is-active,
.lang-switch .lang[aria-current="page"] {
  background: rgba(255, 255, 255, .16);
  opacity: 1;
}

.lang-switch .lang {
  transition: background .25s ease, opacity .25s ease;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 900px) {

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 72vh;
  }

  .discography {
    padding: 90px 0 0;
  }

  .section-title.light {
    margin-bottom: 40px;
  }

  .release {
    grid-template-columns: 1fr;
    row-gap: 26px;
    margin-bottom: 90px;
  }

  .release .release-cover,
  .release.reverse .release-cover,
  .release .release-content,
  .release.reverse .release-content {
    grid-column: auto;
    justify-self: start;
    max-width: 100%;
  }

  .release-desc {
    max-width: 100%;
  }

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

/* ===========================
   MOBILE FIXES
=========================== */

@media (max-width: 900px) {

  /* Discography stack */
  .release {
    grid-template-columns: 1fr;
    row-gap: 40px;
    margin-bottom: 100px;
  }

  .release .release-cover,
  .release .release-content,
  .release.reverse .release-cover,
  .release.reverse .release-content {
    grid-column: 1 !important;
    justify-self: center;
    text-align: center;
  }

  .release-content {
    max-width: 100%;
  }

  .release-desc {
    max-width: 100%;
  }

  /* Smaller cover on mobile */
  :root {
    --coverSize: 82vw;
  }

  /* Video grid → 1 column */
  .video-grid {
    grid-template-columns: 1fr;
  }

  /* Merch grid */
  .grid.three {
    grid-template-columns: 1fr;
  }

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

  /* Hero adjustments */
  .hero {
    min-height: 70vh;
  }

  .hero-inner {
    padding: 40px 0 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-card {
    text-align: center;
  }

  /* Shows */
  .show-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  .show-actions {
    justify-content: center;
  }

  .show-date {
    margin-inline: auto;
  }

}

/* ===========================
   Mobile header / nav fix
=========================== */
@media (max-width: 900px) {

  /* ať sticky sedí i na iPhonech se "safe area" */
  .site-header {
    top: env(safe-area-inset-top);
    background: rgba(11, 11, 15, 0.92);
    /* víc opaque = méně “jank” při scrollu */
    backdrop-filter: blur(10px);
  }

  .header-inner {
    padding: 10px 0;
    gap: 10px;
  }

  /* nav v jednom řádku, scrollovatelný */
  .nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    gap: 8px;
    max-width: 100%;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  /* Chrome/Safari */

  .nav a {
    white-space: nowrap;
    padding: 8px 10px;
    font-size: 14px;
  }

  /* separátory zbytečně rozbíjí řádek */
  .nav-sep {
    display: none;
  }

  /* language switch ať je kompaktní */
  .lang-switch .lang {
    padding: 6px 8px;
    font-size: 10px;
  }
}

@media (max-width: 700px) {
  .hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: center;
    flex-wrap: wrap;
  }
}

/* ===========================
   Mobile polish fixes
   - brand "JANET A" stays on one line
   - LIVE cards layout cleaner
   - releases stack (text under cover), no overlap
=========================== */
@media (max-width: 900px) {

  /* --- HEADER / BRAND --- */
  .brand,
  .brand-mark {
    white-space: nowrap;
    /* ✅ nedovol "JANET / A" */
  }

  .brand {
    flex-shrink: 0;
  }

  .brand-mark {
    padding: 6px 10px;
    /* trochu menší na mobilu */
  }

  /* --- RELEASES: STACK to prevent overlap --- */
  .release {
    display: flex;
    /* ✅ přepnout z gridu na flex stack */
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 90px;
  }

  .release.reverse {
    /* reverse na mobilu nedává smysl */
    flex-direction: column;
  }

  .release-cover {
    width: min(86vw, 420px);
  }

  .release-cover.flip .flip-inner {
    width: 100%;
    /* ✅ cover se přizpůsobí šířce release-cover */
  }

  .release-content {
    max-width: 92vw;
    text-align: center;
    /* na mobilu čitelnější */
  }

  .release-links {
    justify-content: center;
  }

  /* --- LIVE: date + info + button čitelněji --- */
  .show-item {
    grid-template-columns: 86px 1fr;
    /* date + text */
    grid-template-areas:
      "date main"
      "actions actions";
    gap: 12px 14px;
    text-align: left;
  }

  .show-date {
    grid-area: date;
  }

  .show-main {
    grid-area: main;
  }

  .show-actions {
    grid-area: actions;
    justify-content: stretch;
  }

  .show-actions .btn {
    width: 100%;
    /* ✅ Tickets přes celou šířku */
    justify-content: center;
  }
}

@media (max-width: 900px) {

  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .brand {
    grid-column: 1;
  }

  .nav {
    grid-column: 2;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .lang-switch {
    grid-column: 3;
    flex-shrink: 0;
    margin-left: 8px;
  }

}