
:root {
  --orange: #ff6b1a;
  --black: #000;
  --white: #fff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --line-orange: rgba(255, 107, 26, 0.62);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 108px;
  }
}

html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--orange);
  color: #000;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.header-logo {
  width: 150px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.64);
  text-transform: lowercase;
}

.desktop-nav a,
.mobile-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a.is-active {
  color: #fff;
}

.nav-number {
  color: rgba(255, 107, 26, 0.8);
  margin-right: 6px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 6px 10px;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  text-transform: lowercase;
  cursor: pointer;
  transition: all 180ms ease;
}

.lang-switch button.is-active {
  background: var(--orange);
  color: #000;
}

.header-booking {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  text-transform: lowercase;
  transition: color 180ms ease;
}

.header-booking:hover {
  color: var(--orange);
}

.mobile-nav {
  display: none;
  gap: 18px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1;
  text-transform: lowercase;
  scrollbar-width: none;
}

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

/* dezenter fade rechts als scroll-hinweis */
.mobile-nav {
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 88%, transparent 100%);
}

.mobile-nav a {
  flex: 0 0 auto;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px 20px 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 107, 26, 0.2), transparent 34%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.20) 45%, #000 100%),
    rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-label {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: lowercase;
}

.hero-logo {
  width: min(560px, 74vw);
  filter: drop-shadow(0 12px 36px rgba(0, 0, 0, 0.72));
}

.hero-claim {
  margin: 34px auto 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.8);
}

.hero-buttons,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 21px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
  transition: transform 180ms ease, filter 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-orange {
  background: var(--orange);
  color: #000;
}

.button-white {
  background: #fff;
  color: #000;
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}

.button-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.section {
  padding: 90px 0;
}

.section-first {
  padding-top: 54px;
}

.section-title {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 52px;
}

.section-title h2 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(64px, 10vw, 128px);
  line-height: 0.86;
  font-weight: 700;
  letter-spacing: 0.012em;
  text-transform: lowercase;
}

.section-line {
  flex: 1;
  height: 1px;
  margin-bottom: 14px;
  background: var(--line-orange);
}

.section-number {
  color: var(--orange);
  font-size: clamp(54px, 8vw, 92px);
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: 0.012em;
  font-variant-numeric: tabular-nums;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.highlight {
  background: #000;
  padding: 28px;
  min-height: 160px;
}

.highlight-label {
  margin: 0;
  color: var(--orange);
  font-size: 16px;
  text-transform: lowercase;
}

.highlight-value {
  margin: 38px 0 0;
  color: #fff;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

.bio-grid,
.performance-grid,
.photo-grid,
.contact-grid {
  display: grid;
  gap: 48px;
}

.bio-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.bio-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.18;
  letter-spacing: 0.012em;
  text-transform: lowercase;
}

.bio-copy p {
  margin: 0 0 28px;
}

.bio-copy strong {
  color: #fff;
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: #090909;
  border: 1px solid var(--line);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  opacity: 0.96;
  transition: transform 700ms ease, opacity 700ms ease;
}

.image-frame:hover img {
  transform: scale(1.025);
  opacity: 1;
}

.bio-image {
  aspect-ratio: 4 / 3;
}

.performance-grid {
  grid-template-columns: 1.25fr 0.75fr;
}

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 360px;
  overflow: hidden;
  background: #090909;
  border: 1px solid var(--line);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 700ms ease, opacity 700ms ease;
}

.video-card:hover img {
  transform: scale(1.025);
  opacity: 0.96;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.play-circle {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  z-index: 2;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #000;
  font-size: 28px;
  transition: transform 180ms ease;
}

.video-card:hover .play-circle {
  transform: scale(1.08);
}

.performance-card {
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}

.performance-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(31px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

.meta-list {
  display: grid;
  gap: 16px;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
  text-transform: lowercase;
}

.meta-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.show-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.show-row {
  display: grid;
  grid-template-columns: 0.62fr 1fr 0.22fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.show-row:last-child {
  border-bottom: 0;
}

.show-date {
  color: var(--orange);
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

.show-venue {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

.show-city {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 20px;
  line-height: 1;
  text-transform: lowercase;
}

.show-number {
  color: rgba(255, 255, 255, 0.34);
  font-size: 18px;
  text-transform: lowercase;
}

.tba {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 17px;
  font-weight: 700;
  text-transform: lowercase;
}

.impression-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.impression-left {
  display: grid;
  gap: 18px;
}

.impression-main {
  aspect-ratio: 16 / 10;
}

.impression-big {
  min-height: 420px;
  height: 100%;
}

.captioned {
  position: relative;
}

.caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  text-transform: lowercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.75);
}

.past-shows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.past-show {
  border: 1px solid var(--line);
  padding: 22px;
  min-height: 160px;
}

.past-show-label {
  margin: 0;
  color: var(--orange);
  font-size: 17px;
  text-transform: lowercase;
}

.past-show-date {
  margin: 54px 0 0;
  color: #fff;
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

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

.photo-card {
  border: 1px solid var(--line);
  padding: 34px;
}

.photo-card p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(31px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

.photo-card .button-row {
  justify-content: flex-start;
}

.photo-stack {
  display: grid;
  gap: 18px;
}

.photo-wide {
  aspect-ratio: 16 / 7;
}

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.75) 58%, rgba(0, 0, 0, 0.3) 100%),
    rgba(255, 107, 26, 0.12);
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: end;
}

.contact-copy {
  color: #fff;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

.contact-copy p,
.contact-copy a {
  margin: 0 0 18px;
  display: block;
}

.contact-copy a:hover {
  color: var(--orange);
}

.contact-copy .muted {
  color: rgba(255, 255, 255, 0.68);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 16px;
  text-transform: lowercase;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 1020px) {
  .desktop-nav {
    gap: 16px;
    font-size: 15px;
  }

  .bio-grid,
  .performance-grid,
  .photo-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .performance-card {
    min-height: auto;
  }

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

  .show-row {
    grid-template-columns: 1fr auto;
  }

  .show-date,
  .show-main {
    grid-column: span 1;
  }

  .show-number {
    display: none;
  }

  .show-action {
    justify-self: end;
  }

  .socials {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .header-inner {
    min-height: 68px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .header-logo {
    width: 126px;
  }

  .header-booking {
    padding: 8px 14px;
    font-size: 13px;
  }

  .hero {
    padding-top: 138px;
  }

  .hero-bg img {
    object-position: center center;
  }

  .hero-logo {
    width: min(560px, 92vw);
  }

  .hero-label {
    font-size: 13px;
    letter-spacing: 0.26em;
  }

  .hero-claim {
    font-size: 24px;
  }

  .hero-buttons,
  .button-row {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .button,
  .tba {
    width: 100%;
  }

  .scroll-hint {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .section-title {
    gap: 10px;
    margin-bottom: 34px;
  }

  .section-title h2 {
    font-size: clamp(52px, 17vw, 82px);
  }

  .section-number {
    font-size: clamp(44px, 15vw, 68px);
  }

  .section-line {
    margin-bottom: 10px;
  }

  .bio-copy {
    font-size: 25px;
  }

  .video-card {
    min-height: 260px;
  }

  .performance-card p,
  .photo-card p {
    font-size: 32px;
  }

  .show-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 0;
  }

  .show-date {
    font-size: 48px;
  }

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

  .show-action {
    justify-self: stretch;
  }

  .impression-grid,
  .past-shows {
    grid-template-columns: 1fr;
  }

  .impression-big {
    min-height: 320px;
  }

  .caption {
    font-size: 20px;
  }

  .contact-copy {
    font-size: 38px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container,
  .header-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    padding-inline: 14px;
  }

  .section-title h2 {
    font-size: 48px;
  }

  .section-number {
    font-size: 42px;
  }

  .highlight {
    padding: 22px;
  }

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

  .photo-card,
  .performance-card {
    padding: 24px;
  }
}


.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.42), rgba(0,0,0,0.12));
}

.play-circle {
  position: absolute;
  inset: auto auto 22px 22px;
  translate: 0 0;
  z-index: 2;
  min-width: 74px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.96);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.play-icon {
  display: inline-block;
  margin-left: 2px;
}

.video-card:hover .play-circle {
  transform: translateY(-1px);
  background: var(--orange);
}

.impression-grid-triple {
  grid-template-columns: repeat(3, 1fr);
}

.impression-tile {
  aspect-ratio: 4 / 5;
  min-height: 380px;
}

.socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  justify-content: stretch;
}

.social-button {
  justify-content: flex-start;
  min-height: 52px;
  padding-inline: 16px;
  background: rgba(255,255,255,0.03);
}

.social-button .social-symbol {
  width: 20px;
  text-align: center;
  opacity: 0.95;
}


@media (max-width: 1020px) {
  .impression-grid-triple {
    grid-template-columns: 1fr;
  }

  .impression-tile {
    aspect-ratio: 16 / 10;
    min-height: 300px;
  }

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

@media (max-width: 720px) {
  .section-first {
    padding-top: 34px;
  }

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

  .hero-logo {
    width: min(460px, 70vw);
  }
}

.button {
  align-items: center;
  padding-top: 13px;
  padding-bottom: 13px;
}

.button span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.button:hover,
.tba:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.button-orange:hover {
  background: #ff7a2e;
  color: #000;
}

.button-white:hover {
  background: var(--orange);
  color: #000;
}

.button-outline:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}


/* herrmann v4 refinements */
.section-first {
  padding-top: 54px;
}

.button,
.tba {
  border-radius: 0;
  min-height: 52px;
  padding: 14px 22px 13px;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  border-width: 1px;
}

.button span,
.tba span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.button:hover,
.tba:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.button-orange:hover {
  background: #ff7a2e;
  color: #000;
}

.button-white:hover {
  background: var(--orange);
  color: #000;
}

.button-outline {
  background: rgba(255,255,255,0.025);
}

.button-outline:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

.show-venue,
.show-city {
  text-transform: none;
}

.video-card::after {
  background: linear-gradient(to top, rgba(0,0,0,0.38), rgba(0,0,0,0.16));
}

.play-circle {
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 82px;
  height: 82px;
  min-width: 82px;
  padding: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.96);
  color: #000;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 10px 32px rgba(0,0,0,0.35);
}

.video-card:hover .play-circle {
  transform: scale(1.04);
  background: var(--orange);
}

.play-icon {
  margin-left: 3px;
  font-size: 26px;
  line-height: 1;
}

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

.impression-tile {
  aspect-ratio: 4 / 5;
  min-height: 380px;
}

.socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  justify-content: stretch;
}

.social-button {
  justify-content: flex-start;
  min-height: 58px;
  padding-inline: 18px;
  font-size: 20px;
  background: rgba(255,255,255,0.035);
}

.social-button .social-symbol {
  width: 24px;
  text-align: center;
  opacity: 0.95;
}

@media (max-width: 1020px) {
  .impression-grid-triple {
    grid-template-columns: 1fr;
  }

  .impression-tile {
    aspect-ratio: 16 / 10;
    min-height: 300px;
  }

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

@media (max-width: 720px) {
  .section-first {
    padding-top: 34px;
  }

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

  .hero-logo {
    width: min(460px, 70vw);
  }
}


/* ===== v5 refinement: premium header movement ===== */
.site-header {
  transition: min-height 260ms ease, background 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
}

.header-inner {
  min-height: 99px;
  transition: min-height 260ms ease, padding 260ms ease;
}

.header-logo {
  width: 186px;
  transition: width 260ms ease, opacity 260ms ease;
}

.desktop-nav {
  font-size: 17px;
  gap: 26px;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.88);
}

.site-header.is-scrolled .header-inner {
  min-height: 76px;
}

.site-header.is-scrolled .header-logo {
  width: 150px;
}

.site-header.is-scrolled .desktop-nav {
  font-size: 16px;
}

/* ===== v5 refinement: typography / text setting ===== */
.bio-copy {
  max-width: 690px;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.bio-copy p {
  margin-bottom: 24px;
}

.performance-card p,
.photo-card p,
.contact-copy,
.show-venue,
.show-city,
.caption {
  text-wrap: balance;
}

/* ===== v5 refinement: centered smaller video play button ===== */
.play-circle {
  width: 68px;
  height: 68px;
  font-size: 23px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 34px rgba(0,0,0,0.34);
}

.video-card:hover .play-circle {
  transform: scale(1.07);
  background: var(--orange);
}

/* ===== v5 refinement: perfectly aligned show rows ===== */
.show-row {
  grid-template-columns: minmax(168px, 0.48fr) minmax(0, 1fr) minmax(42px, 0.14fr) minmax(150px, auto);
  column-gap: 34px;
}

.show-main {
  min-width: 0;
  justify-self: stretch;
}

.show-action {
  justify-self: end;
}

.show-action .button,
.show-action .tba {
  width: 152px;
}

.tba {
  text-transform: lowercase;
}

/* ===== v5 refinement: contact/social section ===== */
.contact-copy {
  overflow: visible;
}

.contact-copy a {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.socials {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  justify-content: stretch;
  align-items: stretch;
}

.social-button {
  width: 100%;
  min-height: 74px;
  border-radius: 0;
  padding: 18px 20px;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.30);
  color: #fff;
  font-size: clamp(18px, 2.1vw, 25px);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.social-button:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

.social-button .social-symbol {
  display: inline-flex;
  width: 24px;
  justify-content: center;
  opacity: 0.9;
}

.button,
.tba {
  border-radius: 0;
  align-items: center;
  line-height: 1;
}

.button span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.button:hover,
.tba:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.button-orange:hover,
.button-white:hover,
.button-outline:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

@media (max-width: 1020px) {
  .header-inner {
    min-height: 86px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 68px;
  }

  .header-logo {
    width: 164px;
  }

  .site-header.is-scrolled .header-logo {
    width: 138px;
  }

  .show-row {
    grid-template-columns: minmax(118px, 0.42fr) minmax(0, 1fr) minmax(136px, auto);
    column-gap: 22px;
  }

  .show-number {
    display: none;
  }

  .show-action {
    justify-self: end;
  }
}

@media (max-width: 720px) {
  .mobile-nav {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .bio-copy {
    text-align: left;
    hyphens: manual;
  }

  .show-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .show-action {
    justify-self: stretch;
  }

  .show-action .button,
  .show-action .tba {
    width: 100%;
  }

  .contact-copy {
    font-size: clamp(24px, 8vw, 36px);
  }

  .contact-copy a {
    font-size: clamp(20px, 5.5vw, 30px);
    white-space: nowrap;
  }

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

  .social-button {
    min-height: 64px;
  }

  .play-circle {
    width: 58px;
    height: 58px;
    font-size: 20px;
  }
}


/* ===== v6 refinement: hero buttons smaller and optically centered ===== */
.hero-buttons .button {
  min-height: 43px;
  padding: 10px 17px 11px;
  font-size: 15px;
  gap: 7px;
}

/* ===== v6 refinement: rectangular centered play button ===== */
.play-circle {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  z-index: 2;
  width: 70px;
  height: 46px;
  min-width: 70px;
  padding: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.96);
  color: #000;
  font-size: 20px;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 12px 34px rgba(0,0,0,0.34);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.play-icon {
  display: inline-block;
  margin-left: 2px;
  line-height: 1;
}

.video-card:hover .play-circle {
  transform: scale(1.06);
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

/* ===== v6 refinement: professional text setting in small copy blocks ===== */
.photo-card p,
.performance-card p,
.contact-material-link,
.contact-copy .muted {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ===== v6 refinement: calmer contact page, no overflowing buttons ===== */
.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: end;
  gap: 56px;
}

.contact-copy {
  font-size: clamp(25px, 3.05vw, 42px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: 660px;
}

.contact-copy p,
.contact-copy a {
  margin: 0 0 14px;
}

.contact-copy a {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.contact-material-link {
  display: inline-block;
  color: rgba(255,255,255,0.68);
  border-bottom: 1px solid rgba(255,107,26,0.0);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-material-link:hover {
  color: var(--orange);
  border-color: var(--orange);
  transform: translateX(2px);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
}

.social-button {
  width: auto;
  min-width: 150px;
  min-height: 52px;
  padding: 13px 19px;
  border-radius: 0;
  justify-content: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.24);
}

.social-button .social-symbol {
  width: 18px;
  display: inline-flex;
  justify-content: center;
  opacity: 0.95;
}

.social-button:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

/* Make ordinary contact buttons not oversized if an older social grid rule remains. */
.contact-section .button {
  white-space: nowrap;
}

/* ===== v6 responsive polish ===== */
@media (max-width: 1020px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .contact-copy {
    max-width: 100%;
    font-size: clamp(25px, 5vw, 40px);
  }

  .socials {
    justify-content: flex-start;
  }

  .social-button {
    min-width: 145px;
  }
}

@media (max-width: 720px) {
  .hero-buttons .button {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 15px;
  }

  .photo-card p,
  .performance-card p,
  .contact-material-link,
  .contact-copy .muted {
    text-align: left;
    hyphens: manual;
  }

  .contact-copy,
  .contact-copy a {
    font-size: clamp(21px, 5.8vw, 30px);
    line-height: 1.1;
  }

  .contact-copy a[data-mail] {
    font-size: clamp(17px, 4.65vw, 24px);
  }

  .socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .social-button {
    min-width: 0;
    width: 100%;
    min-height: 50px;
    padding: 12px 12px;
    font-size: 15px;
  }

  .play-circle {
    width: 62px;
    height: 40px;
    min-width: 62px;
    font-size: 18px;
  }
}

@media (max-width: 390px) {
  .socials {
    grid-template-columns: 1fr;
  }
}


/* ===== v7: header movement only by height, no horizontal shifting ===== */
.header-inner {
  min-height: 96px;
  transition: min-height 260ms ease;
}

.header-logo,
.site-header.is-scrolled .header-logo {
  width: 168px;
  transition: none;
}

.desktop-nav,
.site-header.is-scrolled .desktop-nav {
  font-size: 16px;
  gap: 24px;
}

.site-header.is-scrolled .header-inner {
  min-height: 74px;
}

/* ===== v7: improved performance play button ===== */
.play-circle {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  z-index: 2;
  width: 56px;
  height: 38px;
  min-width: 56px;
  padding: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 34px rgba(0,0,0,0.34);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  font-size: 0;
  line-height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #000;
}

.video-card:hover .play-circle {
  transform: scale(1.06);
  background: var(--orange);
  border-color: var(--orange);
}

/* ===== v7: avoid ugly justification gaps in short text blocks ===== */
.performance-card p,
.photo-card p {
  text-align: left;
  text-align-last: left;
  hyphens: manual;
  -webkit-hyphens: manual;
  text-wrap: balance;
  max-width: 620px;
}

/* ===== v7: separate buttons in photo section ===== */
.photo-card .button-row {
  justify-content: flex-start;
  align-items: stretch;
}

.photo-card .button {
  min-width: 108px;
}

/* ===== v7: icon-only square contact links ===== */
.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: end;
  gap: 56px;
}

.socials {
  display: grid;
  grid-template-columns: repeat(3, 74px);
  justify-content: end;
  gap: 12px;
}

.social-tile {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(0,0,0,0.28);
  color: #fff;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.social-tile svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.social-tile:hover {
  transform: translateY(-2px);
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

.social-tile-orange {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

.social-tile-orange:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

@media (max-width: 1020px) {
  .header-inner {
    min-height: 86px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 68px;
  }

  .header-logo,
  .site-header.is-scrolled .header-logo {
    width: 148px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .socials {
    justify-content: start;
    grid-template-columns: repeat(6, 64px);
  }

  .social-tile {
    width: 64px;
    height: 64px;
  }

  .social-tile svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 720px) {
  .socials {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .social-tile {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 64px;
  }

  .play-circle {
    width: 50px;
    height: 34px;
    min-width: 50px;
  }

  .play-icon {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
  }
}


/* ===== v8: final requested polish ===== */
.no-underline,
.no-underline:hover,
.contact-material-link,
.contact-material-link:hover {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.contact-material-link {
  color: rgba(255,255,255,0.68);
  transition: color 180ms ease, transform 180ms ease;
}
.contact-material-link:hover {
  color: var(--orange);
  transform: translateX(2px);
}

.photo-card .button-row {
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.photo-card .button {
  min-width: 104px;
}

.social-tile {
  display: grid;
  place-items: center;
  overflow: hidden;
}
.social-tile svg {
  display: block;
  margin: auto;
  transform-origin: 50% 50%;
}
.social-tile .spotify-icon {
  width: 32px;
  height: 32px;
  transform: translateX(0) translateY(0);
}
.social-tile:hover svg {
  transform: scale(1.02);
}
.social-tile:hover .spotify-icon {
  transform: scale(1.02);
}

@media (max-width: 720px) {
  .photo-card .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .photo-card .button {
    width: 100%;
  }
}


/* ===== v9: cleaner editorial type blocks ===== */
.performance-card p,
.photo-card p {
  width: 100%;
  max-width: none;
  font-size: clamp(25px, 2.15vw, 32px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
  text-wrap: pretty;
}

.performance-card,
.photo-card {
  position: relative;
}

.performance-card p::after,
.photo-card p::after {
  content: "";
  display: inline-block;
  width: 100%;
}

.contact-copy .muted[data-i18n="contactLine"] {
  display: none;
}

.contact-copy {
  gap: 0;
}

.contact-material-link {
  text-decoration: none !important;
}

.contact-material-link:hover {
  text-decoration: none !important;
  color: var(--orange);
}

@media (max-width: 720px) {
  .performance-card p,
  .photo-card p {
    text-align: left;
    hyphens: manual;
    -webkit-hyphens: manual;
  }

  .performance-card p::after,
  .photo-card p::after {
    display: none;
  }
}

/* ===== launch-ready additions: legal/footer pages ===== */
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--orange);
}
.legal-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  padding: 150px 0 80px;
}
.legal-content {
  width: min(860px, calc(100% - 40px));
  margin-inline: auto;
}
.legal-content h1 {
  margin: 0 0 36px;
  color: var(--orange);
  font-size: clamp(54px, 9vw, 96px);
  line-height: 0.9;
  text-transform: lowercase;
}
.legal-content h2 {
  margin: 42px 0 12px;
  color: var(--orange);
  font-size: 28px;
  line-height: 1.05;
  text-transform: lowercase;
}
.legal-content h3 {
  margin: 28px 0 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  text-transform: lowercase;
}
.legal-content p,
.legal-content li {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.55;
}
.legal-content a {
  color: var(--orange);
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}
.legal-note {
  border: 1px solid rgba(255, 107, 26, 0.5);
  padding: 18px;
  margin: 28px 0;
  color: rgba(255,255,255,0.82);
}
.placeholder {
  color: #000;
  background: var(--orange);
  padding: 0 4px;
}
.back-link {
  display: inline-flex;
  margin-bottom: 34px;
  color: rgba(255,255,255,0.72);
}
.back-link:hover {
  color: var(--orange);
}

@media (max-width: 720px) {
  .footer-inner {
    align-items: flex-start;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .legal-page {
    padding-top: 126px;
  }
  .legal-content p,
  .legal-content li {
    font-size: 16px;
  }
}

/* =============================================================
   past shows (aufklappbares archiv)
   ============================================================= */

.past-shows-wrap {
  margin-top: 28px;
}

.past-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.past-toggle:hover {
  color: var(--white);
  border-color: var(--line-orange);
  transform: translateY(-1px);
}

.past-toggle-icon {
  color: var(--orange);
  font-size: 16px;
  line-height: 1;
  transition: transform 260ms ease;
}

.past-shows-wrap.is-open .past-toggle-icon {
  transform: rotate(180deg);
}

.past-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms ease;
}

.past-shows-wrap.is-open .past-collapse {
  grid-template-rows: 1fr;
}

.past-list {
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 360ms ease 80ms, transform 360ms ease 80ms;
}

.past-shows-wrap.is-open .past-list {
  opacity: 1;
  transform: none;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

/* kompakte archiv-zeilen: eigenes 3-spalten-grid, bewusst kleiner als aktuelle shows */
.past-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.past-row:last-child {
  border-bottom: 0;
}

.past-row .show-date {
  color: var(--orange);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.past-row .show-venue {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.past-row .show-city {
  margin-top: 5px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.46);
}

.past-row .show-action {
  justify-self: end;
}

.button-small {
  min-height: 0;
  padding: 9px 16px;
  font-size: 13px;
}

@media (max-width: 720px) {
  .past-row {
    grid-template-columns: 88px 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .past-row .show-date {
    font-size: 15px;
  }

  .past-row .show-action {
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
  }

  .past-row .show-action:empty {
    display: none;
  }
}

/* =============================================================
   scroll-reveal animationen
   ============================================================= */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* gestaffeltes einblenden nebeneinanderliegender elemente */
.impression-grid .reveal.is-visible:nth-child(2) { transition-delay: 90ms; }
.impression-grid .reveal.is-visible:nth-child(3) { transition-delay: 180ms; }

/* =============================================================
   kleine herrmann-details
   ============================================================= */

::selection {
  background: var(--orange);
  color: var(--black);
}

.image-frame {
  overflow: hidden;
}

.image-frame img {
  transition: transform 600ms ease;
}

.image-frame:hover img {
  transform: scale(1.03);
}

/* barrierefreiheit: animationen respektieren systemeinstellung */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .past-collapse,
  .past-list,
  .image-frame img,
  .past-toggle-icon {
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* =============================================================
   v8 polish: mobile-fixes, einheitliche buttons, klare kanten
   ============================================================= */

/* fix: aspect-ratio + min-height haben kacheln auf schmalen screens
   ueber den rand gedrueckt. aspect-ratio regelt die hoehe allein. */
.video-card,
.impression-tile {
  min-height: 0;
  min-width: 0;
  max-width: 100%;
}

/* button-hierarchie: orange = hauptaktion (genau eine pro bereich),
   alles sekundaere neutral mit orange-hover */
.button-orange {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #000;
}

.button-orange:hover {
  background: #ff7d33;
  border-color: #ff7d33;
  color: #000;
  filter: none;
}

.button-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.button-white:hover,
.button-outline:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
  filter: none;
}

.social-tile-orange {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.social-tile-orange:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

/* foto-sektion: beide spalten schliessen auf einer unterkante ab */
.photo-grid {
  align-items: stretch;
}

.photo-grid > .bio-image {
  aspect-ratio: auto;
  height: 100%;
}

.photo-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.photo-stack .photo-card {
  flex: 1;
}

/* kein gesperrter blocksatz in textkarten */
.performance-card p,
.photo-card p {
  text-align: left;
  text-align-last: auto;
}

@media (max-width: 1020px) {
  /* einspaltig: portrait wieder mit festem seitenverhaeltnis */
  .photo-grid > .bio-image {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .photo-stack {
    gap: 32px;
  }
}

/* =============================================================
   v9: overscroll-fix, svg-icons, mikroanimationen
   ============================================================= */

/* fix: weisser hintergrund beim ueberscrollen (ios gummiband-effekt) */
html {
  background: var(--black);
}

body {
  overscroll-behavior-y: none;
}

/* einheitliche svg-icons in buttons */
.btn-icon {
  display: inline-flex;
  flex: 0 0 auto;
  transition: transform 220ms ease;
}

.button:hover .icon-down {
  transform: translateY(2px);
}

.button:hover .icon-upright {
  transform: translate(1.5px, -1.5px);
}

.button:hover .icon-play {
  transform: translateX(1.5px);
}

/* anhoeren: equalizer-balken pulsieren beim hover */
.icon-eq rect {
  fill: currentColor;
  transform-box: fill-box;
  transform-origin: center bottom;
}

.button:hover .icon-eq rect {
  animation: eq-bounce 620ms ease-in-out infinite alternate;
}

.button:hover .icon-eq rect:nth-child(1) { animation-delay: 0ms; }
.button:hover .icon-eq rect:nth-child(2) { animation-delay: 140ms; }
.button:hover .icon-eq rect:nth-child(3) { animation-delay: 280ms; }

@keyframes eq-bounce {
  from { transform: scaleY(0.45); }
  to { transform: scaleY(1); }
}

/* play-button auf der videokachel: eckiger rahmen im logo-stil */
.play-circle {
  position: absolute;
  inset: auto auto 22px 22px;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.play-svg {
  display: block;
  margin-left: 2px;
}

.video-card:hover .play-circle {
  transform: scale(1.06);
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

/* section-linie: statisch (animation auf wunsch entfernt) */

/* hero: gestaffeltes einblenden beim laden */
.hero-logo,
.hero-claim,
.hero-buttons {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-in 760ms ease forwards;
}

.hero-claim { animation-delay: 140ms; }
.hero-buttons { animation-delay: 280ms; }

@keyframes hero-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo,
  .hero-claim,
  .hero-buttons {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .btn-icon,
  .play-circle {
    transition: none;
  }
  .button:hover .icon-eq rect {
    animation: none;
  }
}

/* =============================================================
   v10: buendige performance-kanten, youtube-thumbnail, icons
   ============================================================= */

/* video- und textkachel schliessen auf denselben kanten ab */
@media (min-width: 1021px) {
  .performance-grid {
    align-items: stretch;
  }

  .video-card {
    aspect-ratio: auto;
    height: 100%;
  }
}

/* play-button mittig auf der videokachel */
.play-circle {
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
}

.video-card:hover .play-circle {
  transform: scale(1.08);
}

/* social-icons: stroke-stil passend zu den button-icons */
.social-tile svg {
  width: 30px;
  height: 30px;
  fill: none;
}

.social-tile svg .f {
  fill: currentColor;
}

.social-tile[aria-label="bandcamp"] svg { width: 31px; }
.social-tile[aria-label="tiktok"] svg { width: 28px; }

/* fix: altes translate aus frueherer version hat den play-button
   um 32px nach oben links verschoben */
.play-circle {
  translate: 0 0;
}

/* =============================================================
   v11: lightbox fuer impression-kacheln
   ============================================================= */

.impression-tile {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  margin: 0;
  max-width: min(1100px, 94vw);
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.lightbox-caption {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--muted);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.lightbox-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

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

/* lightbox gilt jetzt auch fuer bio- und foto-bilder */
#bio .image-frame,
#foto .image-frame {
  cursor: zoom-in;
}

/* =============================================================
   v12: eingebetteter youtube-player (click-to-load)
   ============================================================= */

.video-card {
  position: relative;
}

.video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.video-card.is-playing {
  cursor: default;
}

.video-card.is-playing .play-circle,
.video-card.is-playing > img {
  display: none;
}
