:root {
  --bg: #070707;
  --bg-soft: #101010;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f6f2f2;
  --muted: #c9bdbd;
  --red: #b50921;
  --red-bright: #ff3556;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(181, 9, 33, 0.2), transparent 28%),
    radial-gradient(circle at left center, rgba(255, 53, 86, 0.08), transparent 30%),
    linear-gradient(180deg, #080808 0%, #040404 100%);
  color: var(--text);
  line-height: 1.6;
}

body.admin-bar .site-header-sticky { top: 32px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.site-header {
  z-index: 100;
  background: rgba(7, 7, 7, 0.75);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
}
.site-header-sticky { position: sticky; top: 0; }
.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.92);
  border-color: var(--line);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.branding {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.site-logo img {
  max-height: 56px;
  width: auto;
}
.site-header-sticky-logo .site-logo {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.site-title {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-tagline { margin: 0; color: var(--muted); font-size: 0.9rem; }
.menu, .footer-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu a, .footer-menu a { color: var(--muted); font-weight: 700; }
.menu a:hover, .footer-menu a:hover { color: var(--text); }
.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  width: 52px;
  height: 52px;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.menu-toggle span:not(.screen-reader-text) {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle span:nth-child(1) { top: 17px; }
.menu-toggle span:nth-child(2) { top: 25px; }
.menu-toggle span:nth-child(3) { top: 33px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
  position: relative;
  padding: clamp(64px, 10vw, 128px) 0 56px;
  overflow: hidden;
}
.hero-has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.5), rgba(5,5,5,0.85)),
    radial-gradient(circle at 70% 30%, rgba(116, 26, 180, 0.35), transparent 25%),
    radial-gradient(circle at 50% 35%, rgba(31, 82, 255, 0.25), transparent 20%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: stretch;
}
.hero-copy {
  padding: clamp(24px, 4vw, 40px) 0;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--red-bright);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  max-width: 10ch;
}
.hero-intro {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: #eee4e4;
  margin: 24px 0 0;
}
.hero-actions, .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  align-items: center;
}
.hero-panel, .statement-box, .concert-card, .post-card, .prose article, .gallery-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-panel {
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -20% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,53,86,0.4), transparent 70%);
}
.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.hero-panel-copy {
  margin: 18px 0 0;
  font-size: 1.1rem;
  max-width: 26ch;
}

.section { padding: 40px 0 84px; }
.section-heading { margin-bottom: 28px; }
.section-heading-compact { margin-bottom: 22px; }
.section-heading h2,
.section-heading h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.section-intro {
  max-width: 70ch;
  color: var(--muted);
  margin: 12px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  color: white;
}
.button-secondary {
  background: rgba(255,255,255,0.02);
  border-color: var(--line);
}
.button-small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.95rem;
}
.text-link {
  color: var(--text);
  font-weight: 700;
}

.concert-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.gallery-grid-featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.concert-card, .gallery-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.concert-thumb,
.gallery-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.concert-thumb img,
.gallery-thumb img,
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concert-card:hover .concert-thumb img,
.gallery-card:hover .gallery-thumb img { transform: scale(1.04); }
.concert-thumb img,
.gallery-thumb img { transition: transform .35s ease; }
.concert-card-inner, .gallery-meta {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.concert-date {
  color: var(--red-bright);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
}
.concert-card h2, .concert-card h3, .gallery-card h3 { margin: 0 0 8px; font-size: 1.35rem; line-height: 1.1; }
.concert-venue { margin: 0 0 16px; color: var(--muted); font-weight: 700; }
.concert-venue.big { font-size: 1.05rem; }
.concert-excerpt, .gallery-meta p { color: var(--muted); }
.empty-state {
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px dashed var(--line);
}
.statement-box {
  padding: clamp(28px, 5vw, 54px);
}
.statement-box h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1;
}
.statement-box p:last-child { margin-bottom: 0; }

.sponsor-marquee {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}
.sponsor-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  padding: 20px;
  animation: sponsorScroll 28s linear infinite;
}
.sponsor-marquee:hover .sponsor-track { animation-play-state: paused; }
.sponsor-item {
  flex: 0 0 auto;
  width: 180px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
}
.sponsor-item img {
  max-height: 58px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.2);
  opacity: 0.92;
}
@keyframes sponsorScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.prose article {
  padding: clamp(24px, 4vw, 40px);
}
.prose h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  margin: 0 0 12px;
}
.prose .featured-image {
  margin: 24px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.prose p,
.prose ul,
.prose ol { max-width: 74ch; }

.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 36px;
  background: rgba(0,0,0,0.28);
}
.footer-top {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding-bottom: 28px;
}
.footer-brand strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.footer-brand p { color: var(--muted); }
.footer-contact p { margin: 8px 0; }
.footer-widgets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.footer-column,
.footer-widget {
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.widget-title { margin-top: 0; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.social-links a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-bottom-text {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

@media (max-width: 1100px) {
  .hero-grid,
  .footer-top,
  .gallery-grid-featured {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .menu-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    padding: 16px;
    border-radius: 20px;
    background: rgba(8,8,8,0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .header-inner { position: relative; }
  .footer-widgets,
  .footer-bottom-bar,
  .concert-grid,
  .gallery-grid { grid-template-columns: 1fr; display: grid; }
  .footer-bottom-bar { display: flex; flex-direction: column; align-items: flex-start; }
  .footer-bottom-text { text-align: left; }
}

@media (max-width: 640px) {
  .hero h1 { max-width: none; }
  .site-tagline { display: none; }
  .section { padding: 30px 0 60px; }
  .sponsor-item { width: 150px; height: 88px; }
}


.featured-concert-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  margin-bottom: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.featured-concert-media {
  min-height: 100%;
  background: rgba(255,255,255,0.02);
}
.featured-concert-media a,
.featured-concert-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
}
.featured-concert-media img { object-fit: cover; }
.featured-concert-content { padding: clamp(24px, 4vw, 40px); }
.featured-concert-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.featured-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.countdown-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(181, 9, 33, 0.18), rgba(255, 53, 86, 0.22));
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.featured-concert-content h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.featured-excerpt { color: var(--muted); max-width: 68ch; }
.featured-excerpt p:first-child { margin-top: 0; }
.featured-actions { margin-top: 22px; }
.button-large { min-height: 56px; padding: 0 26px; font-size: 1.02rem; }
.button-spotify {
  background: rgba(255,255,255,0.02);
  border-color: rgba(29, 185, 84, 0.45);
  color: #dff7e6;
}
.text-link-spotify { color: #a8efbf; }
.concert-grid-secondary { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 1100px) {
  .featured-concert-card { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .concert-grid-secondary { grid-template-columns: 1fr; }
}


.notice-section { padding-top: 0; }
.notice-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 32px;
}
.notice-box .footer-widget { margin: 0; }
.notice-box .widget-title { margin: 0 0 10px; font-size: clamp(1.5rem, 3vw, 2rem); }
.notice-box p:last-child { margin-bottom: 0; }
.social-feed-section { padding-top: 0; }
.social-marquee .social-pill {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  padding: 12px 18px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.04); margin-right: 16px; font-weight: 800;
}
.social-pill strong { color: var(--red-bright); }
.artist-section {
  margin-top: 40px; padding: 32px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.artist-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: start; }
.artist-copy h2 { margin-top: 0; }
.artist-embed iframe { border-radius: 18px; min-height: 352px; }
.footer-widgets-row {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px;
}
.footer-contact-compact {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 14px 24px; color: var(--muted); font-size: 0.95rem;
}
.footer-contact-compact strong { color: var(--text); }
@media (max-width: 900px) {
  .artist-grid, .footer-widgets-row { grid-template-columns: 1fr; }
  .footer-contact-compact { flex-direction: column; }
}

/* v1.0.6 adjustments */
.site-logo {
  max-width: min(46vw, 560px);
}
.site-logo .custom-logo-link,
.site-logo .custom-logo {
  display: block;
}
.site-logo img {
  max-height: 86px;
  max-width: 100%;
  width: auto;
}
.site-header-sticky-logo .site-logo {
  max-width: min(46vw, 620px);
  padding: 10px 16px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-concert-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  color: #fff;
  white-space: nowrap;
}
.hero-no-panel .hero-grid {
  grid-template-columns: 1fr;
}
.hero-panel-title {
  margin: 14px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero-panel-aktuelt .hero-panel-copy {
  max-width: 100%;
}
.logo-marquee {
  overflow: hidden;
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: sponsorScroll 28s linear infinite;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
.sponsor-item {
  width: 180px;
  height: 96px;
  background: transparent;
  border: 0;
}
.sponsor-item img {
  max-height: 56px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) grayscale(1) contrast(1.2);
  opacity: 0.9;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  margin-right: 16px;
  font-weight: 800;
}
.social-pill-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  border: 1.5px solid currentColor;
  opacity: .9;
}
.social-pill-facebook .social-pill-icon { border-radius: 50%; }
.social-pill-facebook .social-pill-icon::before {
  content: 'f';
  position: absolute;
  inset: -1px 0 0 0;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}
.social-pill-instagram .social-pill-icon::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  top: 4px;
  left: 4px;
}
.social-pill-instagram .social-pill-icon::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
  top: 3px;
  right: 3px;
}
.social-pill-tiktok .social-pill-icon::before {
  content: '♪';
  position: absolute;
  inset: -1px 0 0 0;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}
.social-pill-snapchat .social-pill-icon::before {
  content: '👻';
  position: absolute;
  inset: -4px 0 0 0;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 820px) {
  .main-nav {
    display: block;
  }
  .menu-concert-button {
    margin-top: 14px;
    width: 100%;
  }
  .site-logo,
  .site-header-sticky-logo .site-logo {
    max-width: min(64vw, 480px);
  }
}


/* v1.0.9 adjustments */
.hero-panel-list {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-panel-list-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-panel-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.hero-panel-list a {
  color: var(--text);
  font-weight: 700;
}
.sponsor-item {
  width: 220px;
  height: 128px;
}
.sponsor-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.sponsor-logo-wrap {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-item img {
  max-height: 54px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}
.sponsor-name {
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}
.sponsor-item-inner:hover .sponsor-name,
.sponsor-item-inner:focus .sponsor-name {
  color: var(--text);
}
.site-logo {
  max-width: min(60vw, 860px);
}
.site-header-sticky-logo .site-logo {
  max-width: min(60vw, 920px);
}
.aktuelt-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 820px) {
  .aktuelt-grid {
    grid-template-columns: 1fr;
  }
  .site-logo,
  .site-header-sticky-logo .site-logo {
    max-width: min(78vw, 640px);
  }
}


/* v1.0.10 fixes */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.main-nav {
  margin-left: auto;
}
.site-header.is-scrolled .header-inner {
  min-height: 66px;
}
.site-header.is-scrolled .site-logo img {
  max-height: 58px;
}
.site-header.is-scrolled .site-tagline {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
.sponsor-item img {
  filter: grayscale(1) brightness(1.5) contrast(1.08) !important;
  opacity: 0.95;
}
.sponsor-item-inner:hover img,
.sponsor-item-inner:focus img {
  filter: none !important;
  opacity: 1;
}
@media (min-width: 821px) {
  .menu-toggle { display: none; }
  .main-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    margin-right: 16px;
  }
}
@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled {
    background: rgba(7,7,7,0.94);
  }
  .header-inner {
    min-height: 62px;
    gap: 10px;
    align-items: center;
  }
  .branding {
    flex: 1 1 auto;
    min-width: 0;
    gap: 0;
  }
  .site-logo,
  .site-header-sticky-logo .site-logo {
    max-width: 158px;
    padding: 4px 8px;
    border-radius: 16px;
  }
  .site-logo img,
  .site-header.is-scrolled .site-logo img {
    max-height: 34px;
  }
  .site-tagline {
    display: none;
  }
  .header-actions {
    gap: 8px;
    flex: 0 0 auto;
  }
  .menu-concert-button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }
  .menu-toggle {
    display: inline-block;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .menu-toggle span:nth-child(1) { top: 13px; }
  .menu-toggle span:nth-child(2) { top: 20px; }
  .menu-toggle span:nth-child(3) { top: 27px; }
  .main-nav {
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    padding: 14px;
  }
  .main-nav .menu a {
    font-size: 1rem;
  }
}
@media (max-width: 560px) {
  .site-logo,
  .site-header-sticky-logo .site-logo {
    max-width: 132px;
  }
  .menu-concert-button {
    padding: 0 10px;
    font-size: 0.76rem;
  }
}


/* v1.0.11 tweaks */
.site-header { position: relative; }
.site-header-sticky { position: sticky; top: 0; }
.header-actions { display:flex; align-items:center; gap:12px; }
.sponsor-item { width: 210px; height: 116px; }
.sponsor-item-inner { width:100%; height:100%; display:flex; flex-direction:column; justify-content:center; align-items:center; gap:10px; text-align:center; }
.sponsor-logo-wrap { width:100%; height:56px; display:flex; align-items:center; justify-content:center; }
.sponsor-item img { max-width: 140px; max-height: 56px; width:auto; object-fit:contain; transition:filter .25s ease, opacity .25s ease, transform .25s ease; }
.sponsor-name { color: var(--text); font-weight: 800; line-height:1.2; font-size: 1rem; }
.sponsor-mode-original img { filter:none; opacity:1; }
.sponsor-mode-mono-dark img { filter: grayscale(1) brightness(.7) contrast(1.15); opacity:.92; }
.sponsor-mode-mono-light img { filter: grayscale(1) brightness(1.65) contrast(1.08); opacity:.96; }
.sponsor-mode-duotone .sponsor-logo-wrap { background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04)); border-radius:14px; padding:10px 12px; border: 1px solid rgba(255,255,255,0.12); }
.sponsor-mode-duotone img { filter: contrast(1.2) saturate(1.05) drop-shadow(0 0 0 rgba(255,255,255,0.35)); opacity: 1; }
.sponsor-item-inner:hover img { filter:none; opacity:1; transform:scale(1.02); }

@media (max-width: 820px) {
  body { padding-top: 0; }
  body.admin-bar .site-header-sticky { top: 46px; }
  .site-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid var(--line);
    background: rgba(7,7,7,0.96);
  }
  .site-main { padding-top: 76px; }
  .header-inner {
    min-height: 68px;
    gap: 12px;
  }
  .branding {
    flex: 1 1 auto;
    min-width: 0;
  }
  .site-header-sticky-logo .site-logo {
    padding: 6px 10px;
  }
  .site-logo img {
    max-height: 38px;
    max-width: 180px;
  }
  .site-tagline {
    display: none;
  }
  .main-nav {
    top: calc(100% + 8px);
  }
  .menu {
    width: 100%;
  }
  .menu a {
    font-size: 1.05rem;
  }
  .menu-concert-button {
    min-height: 40px;
    padding: 0 14px;
    font-size: .92rem;
    white-space: nowrap;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .menu-toggle span:nth-child(1) { top: 14px; left: 10px; right: 10px; }
  .menu-toggle span:nth-child(2) { top: 21px; left: 10px; right: 10px; }
  .menu-toggle span:nth-child(3) { top: 28px; left: 10px; right: 10px; }
}

@media (max-width: 640px) {
  .header-actions { gap: 8px; }
  .menu-concert-button {
    min-height: 36px;
    padding: 0 12px;
    font-size: .84rem;
  }
  .site-logo img {
    max-height: 34px;
    max-width: 150px;
  }
  .sponsor-item {
    width: 190px;
    height: 110px;
  }
}


/* v1.0.12 fixes */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}
.site-main, .site-footer, .hero, .section, .sponsor-marquee, .social-marquee, .gallery-section {
  overflow-x: clip;
}

/* Sponsor modes should override older rules cleanly */
.sponsor-item {
  width: 210px;
  min-height: 112px;
  height: auto;
}
.sponsor-item-inner {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 10px 12px !important;
}
.sponsor-logo-wrap {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.sponsor-item img {
  filter: none !important;
  opacity: 1 !important;
}
.sponsor-mode-original img {
  filter: none !important;
  opacity: 1 !important;
}
.sponsor-mode-mono-dark img {
  filter: grayscale(1) brightness(.72) contrast(1.08) !important;
  opacity: .95 !important;
}
.sponsor-mode-mono-light img {
  filter: grayscale(1) brightness(1.85) contrast(1.05) !important;
  opacity: .98 !important;
}
.sponsor-mode-duotone img {
  filter: saturate(1.02) contrast(1.08) brightness(1.02) !important;
  opacity: 1 !important;
}
.sponsor-item-inner:hover img,
.sponsor-item-inner:focus img {
  filter: none !important;
  opacity: 1 !important;
  transform: scale(1.02);
}

/* Mobile sticky header and overflow fixes */
@media (max-width: 820px) {
  .site-header-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
  }
  body.admin-bar .site-header-sticky {
    top: 46px !important;
  }
  .site-main {
    padding-top: 86px !important;
  }
  .header-inner {
    min-height: 64px !important;
    gap: 8px !important;
  }
  .site-logo,
  .site-header-sticky-logo .site-logo {
    max-width: 126px !important;
    padding: 4px 8px !important;
  }
  .site-logo img,
  .site-header.is-scrolled .site-logo img {
    max-height: 30px !important;
    max-width: 100%;
  }
  .header-actions {
    gap: 8px !important;
    flex: 0 0 auto;
  }
  .menu-concert-button {
    min-height: 36px !important;
    padding: 0 12px !important;
    font-size: .82rem !important;
    white-space: nowrap;
    max-width: calc(100vw - 190px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .menu-toggle {
    display: inline-block !important;
    width: 42px !important;
    height: 42px !important;
  }
  .main-nav {
    position: fixed !important;
    top: 76px !important;
    left: 12px !important;
    right: 12px !important;
    max-height: calc(100vh - 88px);
    overflow: auto;
  }
  .hero-grid,
  .concert-grid,
  .gallery-grid,
  .featured-concert-card {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 20px), var(--max));
  }
  .site-logo,
  .site-header-sticky-logo .site-logo {
    max-width: 112px !important;
  }
  .site-logo img,
  .site-header.is-scrolled .site-logo img {
    max-height: 26px !important;
  }
  .menu-concert-button {
    max-width: calc(100vw - 172px);
    padding: 0 10px !important;
    font-size: .78rem !important;
  }
}


/* v1.0.13 fixes */
.site-header-sticky {
  position: sticky !important;
  top: 0;
  z-index: 1100;
}
body.admin-bar .site-header-sticky {
  top: 32px;
}
.site-header {
  border-top: 0 !important;
  box-shadow: none !important;
}

.featured-concert-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sponsor-item-inner.sponsor-mode-original img {
  filter: none !important;
  opacity: 1 !important;
}
.sponsor-item-inner.sponsor-mode-mono-dark img {
  filter: grayscale(1) brightness(.72) contrast(1.08) !important;
  opacity: .95 !important;
}
.sponsor-item-inner.sponsor-mode-mono-light img {
  filter: grayscale(1) brightness(1.85) contrast(1.05) !important;
  opacity: .98 !important;
}
.sponsor-item-inner.sponsor-mode-duotone .sponsor-logo-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06)) !important;
  border-radius: 14px;
  padding: 10px 12px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
}
.sponsor-item-inner.sponsor-mode-duotone img {
  filter: saturate(1.02) contrast(1.08) brightness(1.02) !important;
}
.sponsor-item-inner.sponsor-mode-plate-light .sponsor-logo-wrap {
  background: rgba(255,255,255,0.96) !important;
  border-radius: 14px;
  padding: 10px 12px !important;
  border: 1px solid rgba(255,255,255,0.85) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.sponsor-item-inner.sponsor-mode-plate-light img {
  filter: none !important;
  opacity: 1 !important;
}
.sponsor-item-inner.sponsor-mode-plate-light .sponsor-name {
  color: var(--text) !important;
}

@media (min-width: 821px) {
  .site-main {
    padding-top: 0;
  }
  .site-header-sticky {
    position: sticky !important;
    top: 0 !important;
  }
}

@media (max-width: 820px) {
  .site-header-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1200;
    background: rgba(7,7,7,0.98) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }
  body.admin-bar .site-header-sticky {
    top: 46px !important;
  }
  .site-main {
    padding-top: 84px !important;
  }
  .hero {
    padding-top: 48px !important;
  }
  .hero::before,
  .hero-overlay {
    top: 0;
  }
}


/* v1.0.14 sponsor duotone refinement */
.sponsor-item-inner.sponsor-mode-duotone .sponsor-logo-wrap{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.sponsor-item-inner.sponsor-mode-duotone img{
  filter: contrast(1.08) saturate(1.02) brightness(1.03) !important;
  opacity: 1 !important;
}


/* v1.0.15 footer widgets desktop width fix */
@media (min-width: 981px) {
  .site-footer-widgets,
  .footer-widgets,
  .footer-widget-area,
  .footer-widgets-grid {
    width: 100%;
  }

  .site-footer .footer-widgets,
  .site-footer-widgets .wrap,
  .footer-widgets-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch;
    width: 100% !important;
  }

  .site-footer .widget,
  .site-footer-widgets .widget,
  .footer-widgets-grid > * {
    width: 100% !important;
    min-width: 0 !important;
  }

  .site-footer .widget > *,
  .site-footer-widgets .widget > * {
    word-break: normal !important;
    overflow-wrap: anywhere;
  }
}

/* keep mobile layout untouched */
@media (max-width: 980px) {
  .site-footer .footer-widgets,
  .site-footer-widgets .wrap,
  .footer-widgets-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
}


/* v1.0.16 visual polish */
.site-footer {
  padding-top: 42px !important;
}

.site-footer .footer-widgets,
.site-footer-widgets {
  margin-top: 0 !important;
}

.site-footer .widget,
.site-footer-widgets .widget {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 24px !important;
  padding: 28px !important;
  min-height: 100%;
  box-shadow: 0 10px 26px rgba(0,0,0,0.16);
}

.site-footer .widget-title,
.site-footer-widgets .widget-title {
  font-size: clamp(1.1rem, 1.2vw, 1.35rem) !important;
  line-height: 1.2 !important;
  margin: 0 0 16px !important;
  letter-spacing: 0.01em;
}

.site-footer .widget p,
.site-footer .widget li,
.site-footer .widget a,
.site-footer-widgets .widget p,
.site-footer-widgets .widget li,
.site-footer-widgets .widget a {
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

.site-footer ul,
.site-footer ol {
  padding-left: 1.1rem !important;
  margin: 0 !important;
}

.site-footer .footer-contact-row,
.site-footer .footer-meta,
.site-footer .footer-contact {
  margin-top: 28px !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}

.site-footer .footer-contact-row,
.site-footer .footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.site-footer .footer-contact-item,
.site-footer .footer-meta-item {
  font-size: 0.96rem !important;
  line-height: 1.5 !important;
  opacity: 0.92;
}

@media (min-width: 981px) {
  .site-footer .footer-widgets,
  .site-footer-widgets .wrap,
  .footer-widgets-grid {
    gap: 28px !important;
  }

  .site-footer .widget,
  .site-footer-widgets .widget {
    padding: 30px 30px 26px !important;
  }
}

@media (max-width: 980px) {
  .site-footer {
    padding-top: 28px !important;
  }

  .site-footer .widget,
  .site-footer-widgets .widget {
    border-radius: 22px !important;
    padding: 22px !important;
  }

  .site-footer .widget-title,
  .site-footer-widgets .widget-title {
    margin-bottom: 12px !important;
  }

  .site-footer .footer-contact-row,
  .site-footer .footer-meta,
  .site-footer .footer-contact {
    margin-top: 18px !important;
    padding-top: 16px !important;
  }
}


/* v1.0.17 – permanent footer desktop fix */
@media (min-width: 981px) {
  .footer-top.footer-top-compact .footer-widgets-row {
    display: grid !important;
    grid-template-columns: 1.1fr repeat(3, minmax(240px, 1fr)) !important;
    gap: 28px !important;
    align-items: stretch !important;
    width: 100% !important;
  }

  .footer-top.footer-top-compact .footer-brand,
  .footer-top.footer-top-compact .footer-column {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .footer-top.footer-top-compact .footer-column {
    display: block !important;
  }

  .footer-top.footer-top-compact .footer-column .widget,
  .footer-top.footer-top-compact .footer-column > div,
  .footer-top.footer-top-compact .footer-column section {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  .footer-top.footer-top-compact .footer-column .widget > *,
  .footer-top.footer-top-compact .footer-column > div > *,
  .footer-top.footer-top-compact .footer-column section > *,
  .footer-top.footer-top-compact .footer-column p,
  .footer-top.footer-top-compact .footer-column li,
  .footer-top.footer-top-compact .footer-column span,
  .footer-top.footer-top-compact .footer-column a {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    writing-mode: horizontal-tb !important;
    line-height: 1.7 !important;
  }
}

@media (max-width: 980px) {
  .footer-top.footer-top-compact .footer-widgets-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .footer-top.footer-top-compact .footer-brand,
  .footer-top.footer-top-compact .footer-column {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }
}



/* v1.0.18 – permanent footer-fix */
@media (min-width: 981px) {
  .footer-top.footer-top-compact .footer-widgets-row {
    display: grid !important;
    grid-template-columns: 1.1fr repeat(3, minmax(240px, 1fr)) !important;
    gap: 28px !important;
    align-items: stretch !important;
    width: 100% !important;
  }

  .footer-top.footer-top-compact .footer-brand,
  .footer-top.footer-top-compact .footer-column {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .footer-top.footer-top-compact .footer-column {
    display: block !important;
  }

  .footer-top.footer-top-compact .footer-column .footer-widget,
  .footer-top.footer-top-compact .footer-column .widget,
  .footer-top.footer-top-compact .footer-column > div,
  .footer-top.footer-top-compact .footer-column section {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  .footer-top.footer-top-compact .footer-column .footer-widget > *,
  .footer-top.footer-top-compact .footer-column .widget > *,
  .footer-top.footer-top-compact .footer-column > div > *,
  .footer-top.footer-top-compact .footer-column section > *,
  .footer-top.footer-top-compact .footer-column p,
  .footer-top.footer-top-compact .footer-column li,
  .footer-top.footer-top-compact .footer-column span,
  .footer-top.footer-top-compact .footer-column a {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    writing-mode: horizontal-tb !important;
    line-height: 1.7 !important;
  }
}

@media (max-width: 980px) {
  .footer-top.footer-top-compact .footer-widgets-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .footer-top.footer-top-compact .footer-brand,
  .footer-top.footer-top-compact .footer-column {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }
}


/* v1.0.19 – footer wrapper/card separation */
@media (min-width: 981px) {
  .footer-top.footer-top-compact .footer-widgets-row {
    display: grid !important;
    grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr)) !important;
    gap: 28px !important;
    align-items: stretch !important;
  }

  /* wrapper columns must NOT look like cards */
  .footer-top.footer-top-compact .footer-brand,
  .footer-top.footer-top-compact .footer-column {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  /* only the inner widget/card gets the visual styling */
  .footer-top.footer-top-compact .footer-column .footer-widget,
  .footer-top.footer-top-compact .footer-column .widget,
  .footer-top.footer-top-compact .footer-column > div,
  .footer-top.footer-top-compact .footer-column section {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 28px !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 26px rgba(0,0,0,0.16) !important;
    height: 100% !important;
  }

  .footer-top.footer-top-compact .footer-column .footer-widget *,
  .footer-top.footer-top-compact .footer-column .widget *,
  .footer-top.footer-top-compact .footer-column > div *,
  .footer-top.footer-top-compact .footer-column section * {
    writing-mode: horizontal-tb !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    line-height: 1.7 !important;
  }
}

@media (max-width: 980px) {
  .footer-top.footer-top-compact .footer-widgets-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .footer-top.footer-top-compact .footer-brand,
  .footer-top.footer-top-compact .footer-column {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }
}



/* v1.0.20 – footer full-width three-column layout */
@media (min-width: 981px) {
  .footer-top.footer-top-compact {
    display: block !important;
  }

  .footer-top.footer-top-compact .footer-brand {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .footer-top.footer-top-compact .footer-widgets-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px !important;
    width: 100% !important;
    min-width: 0 !important;
    align-items: stretch !important;
  }

  .footer-top.footer-top-compact .footer-column {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: block !important;
  }

  .footer-top.footer-top-compact .footer-column .footer-widget,
  .footer-top.footer-top-compact .footer-column .widget,
  .footer-top.footer-top-compact .footer-column > div,
  .footer-top.footer-top-compact .footer-column section {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 28px !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 26px rgba(0,0,0,0.16) !important;
    height: 100% !important;
  }

  .footer-top.footer-top-compact .footer-column .footer-widget *,
  .footer-top.footer-top-compact .footer-column .widget *,
  .footer-top.footer-top-compact .footer-column > div *,
  .footer-top.footer-top-compact .footer-column section * {
    writing-mode: horizontal-tb !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    line-height: 1.7 !important;
  }
}

@media (max-width: 980px) {
  .footer-top.footer-top-compact {
    display: block !important;
  }

  .footer-top.footer-top-compact .footer-brand {
    width: 100% !important;
    margin-bottom: 18px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .footer-top.footer-top-compact .footer-widgets-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .footer-top.footer-top-compact .footer-column {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }
}

