/* =====================================================
   United Concerts — united-concerts.com
   Design-System 1:1 vom Ticket-Shop (united-concerts.tickets)
   ===================================================== */

:root {
  --navy:#0f1627;
  --navy-mid:#122247;
  --navy-card:#13397e;
  --blue:#0f88fd;
  --blue-light:#4B9FFF;
  --white:#FFFFFF;
  --off-white:#e1e7f1;

  --font-body: 'Montserrat', Arial, sans-serif;
  --nav-height: 84px;
  --max-width: 1280px;
}

/* ---------- Fonts (self-hosted) ---------- */
/* Lizenz: assets/fonts/montserrat/OFL.txt liegt neben den Font-Dateien */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-ExtraBold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}

/* ---------- Scroll-Reveal (dezente Fade+Slide-Animation) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Social Sidebar ---------- */
.social-sidebar {
  position: fixed;
  z-index: 950;
  display: flex;
  gap: 12px;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  flex-direction: column;
}
.social-sidebar-icon {
  width: 42px;
  height: 42px;
  border-radius: 10%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-sidebar-icon:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  overflow-x: hidden;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: var(--off-white);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--blue-light); color: var(--blue-light); }
.btn-disabled, .btn-disabled:hover {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  border-color: var(--off-white);
  color: var(--off-white);
}
.play-icon { font-size: 11px; }

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(15, 22, 39, 0.97);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 1100;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo img { height: 34px; }
/* Men\u00fc als Drawer von rechts (Desktop + Mobile), mit Rest der Seite abgedunkelt sichtbar */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 18, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  z-index: 1040;
}
.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.nav-links {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(400px, 82vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-left: 0;
  padding: 0 40px;
  background: rgba(15, 22, 39, 0.98);
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -24px 0 48px rgba(0,0,0,0.35);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1050;
  counter-reset: nav-index;
}
.nav-links.open {
  transform: translateX(0);
}
.nav-links a {
  counter-increment: nav-index;
  display: flex;
  align-items: baseline;
  gap: 14px;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--off-white);
  transition: color 0.2s ease;
}
.nav-links a:last-child { border-bottom: none; }
.nav-links a::before {
  content: counter(nav-index, decimal-leading-zero);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue-light);
  flex-shrink: 0;
}
.nav-links a:hover { color: var(--blue-light); }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  padding: 0;
  color: var(--white);
  flex-shrink: 0;
  margin-left: auto;
  cursor: pointer;
  z-index: 1101;
  position: relative;
}
.nav-toggle .bar {
  position: absolute;
  left: 7px;
  right: 7px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
body.nav-open { overflow: hidden; }
.nav-toggle .bar-1 { top: 15px; }
.nav-toggle .bar-2 { top: 23px; }
.nav-toggle .bar-3 { top: 31px; }
.nav-toggle[aria-expanded="true"] .bar-1 { top: 23px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar-2 { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar-3 { top: 23px; transform: rotate(-45deg); }


/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,22,39,0.55) 0%, rgba(15,22,39,0.75) 60%, var(--navy) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 40px) 32px 80px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--blue-light);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.line-blue { color: var(--blue-light); }
.hero-subtext {
  max-width: 560px;
  font-size: 18px;
  color: var(--off-white);
  font-weight: 300;
  margin: 0 auto 40px;
}
.hero-ctas { display: flex; flex-direction: column; align-items: center; gap: 18px; }

.btn-arrow {
  background: transparent;
  border: none;
  padding: 4px 0;
  color: var(--white);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-arrow .arrow-icon { transition: transform 0.2s ease; }
.btn-arrow:hover { color: var(--blue-light); }
.btn-arrow:hover .arrow-icon { transform: translateX(4px); }

/* ---------- Intro / Book the Show (jetzt als Heading innerhalb der ersten Scroll-Section) ---------- */
.intro-inner {
  max-width: 720px;
  margin: 0 auto 90px;
  padding: 0 32px;
  text-align: center;
}
.intro-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 18px;
  min-height: 1.3em;
}
.intro-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.45s cubic-bezier(.22,1,.36,1), transform 0.45s cubic-bezier(.22,1,.36,1);
}
.intro-title .word.blue { color: var(--blue-light); }
.intro-title .word.in {
  opacity: 1;
  transform: translateY(0);
}
.intro-title .word.out {
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.intro-subtitle {
  font-size: 16px;
  color: var(--off-white);
  font-weight: 300;
  line-height: 1.6;
}

/* ---------- Brand Ticker (DISCOVER. BOOK. EXPERIENCE.) ---------- */
.brand-ticker {
  background: var(--navy-mid); /* gleich wie "Partner Productions" */
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.brand-ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker-scroll 35s linear infinite;
}
.brand-ticker-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.ticker-word {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 46px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0 22px;
}
.ticker-word.ticker-white { color: var(--white); }
.ticker-word.ticker-blue { color: var(--blue); }
.ticker-word.ticker-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--off-white);
  text-stroke: 1.5px var(--off-white);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-ticker-track { animation: none; }
}

/* ---------- Scroll Sections (THE MIRACLE OF... / LIVE TO TRACK / EXCLUSIVE PROJECTS) ---------- */
.scroll-section {
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--navy-mid);
}
.scroll-section-navy { background: var(--navy); }
.scroll-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Sidebar (nummeriert) + Carousel nebeneinander */
.scroll-split {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 32px;
}
.scroll-split > * { min-width: 0; }
.scroll-split-index {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: rgba(75, 159, 255, 0.20);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.scroll-split-title {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.15;
}
.scroll-split-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.scroll-split-text {
  font-size: 14px;
  color: var(--off-white);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 24px;
}
.scroll-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-light);
  transition: color 0.2s ease;
}
.scroll-more-link .normal-case { text-transform: none; }
.scroll-more-link .arrow-icon { display: inline-block; transition: transform 0.2s ease; }
.scroll-more-link:hover { color: var(--white); }
.scroll-more-link:hover .arrow-icon { transform: translateX(4px); }

.scroll-row-wrapper {
  position: relative;
  padding: 0 28px;
  min-width: 0;
}
.scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-width: 0;
}
.scroll-row::-webkit-scrollbar { display: none; }

.show-card-compact {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 140px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.show-card-compact-media {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.show-card-compact-link {
  display: block;
  width: 100%;
  height: 100%;
}
.show-card-compact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.show-card-compact:hover .show-card-compact-media {
  transform: translateY(-4px);
  border-color: rgba(75,159,255,0.35);
}
.show-card-compact-btn {
  display: block;
  text-align: center;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-light);
  border: 1.5px solid var(--blue-light);
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}
.show-card-compact-btn:hover { background: var(--blue-light); color: var(--navy); }
.show-card-compact-btn.is-disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}
.show-card-compact-btn.is-disabled:hover { background: none; color: var(--blue-light); }
.show-card-compact-disabled .show-card-compact-media { cursor: default; }
.show-card-compact-disabled:hover .show-card-compact-media {
  transform: none;
  border-color: rgba(255,255,255,0.06);
}

/* Pfeil-Navigation für die Scroll-Rows */
.scroll-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-card);
  border: 1.5px solid var(--blue-light);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.scroll-arrow:hover { background: var(--blue-light); color: var(--navy); }
.scroll-arrow:disabled { opacity: 0.3; cursor: default; }
.scroll-arrow:disabled:hover { background: var(--navy-card); color: var(--blue-light); }
.scroll-arrow-prev { left: 4px; }
.scroll-arrow-next { right: 4px; }

/* ---------- Upcoming Events / Ticket CTA ---------- */
.ticket-cta-section {
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ticket-cta-section .scroll-split-sidebar .btn { margin-top: 8px; display: inline-flex; align-items: center; gap: 8px; }

.ticket-cta-card {
  background: rgba(10,14,26,0.55);
  border: 1px solid rgba(15,136,253,0.55);
  border-radius: 20px;
  padding: 48px 40px;
  margin: 0 28px;
  box-shadow: 0 0 0 1px rgba(15,136,253,0.15), 0 0 50px rgba(15,136,253,0.25), inset 0 0 40px rgba(15,136,253,0.06);
  backdrop-filter: blur(6px);
}
.ticket-cta-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.ticket-cta-logo-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.ticket-cta-tagline {
  text-align: center;
  color: var(--off-white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 4px 0 40px;
}

.ticket-cta-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.ticket-cta-feature {
  text-align: center;
  padding: 0 12px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.ticket-cta-feature:first-child { border-left: none; }
.ticket-cta-feature-icon {
  color: var(--blue-light);
  margin-bottom: 14px;
}
.ticket-cta-feature h3 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.ticket-cta-feature p {
  font-size: 14px;
  color: var(--off-white);
  font-weight: 300;
  line-height: 1.5;
}

/* ---------- Showreel ---------- */
.showreel {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 100px 0;
}
.showreel-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.showreel-media img {
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.showreel-quote {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.showreel-text {
  color: var(--off-white);
  font-weight: 300;
  margin-bottom: 28px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 32px 56px;
}
.footer-logo { height: 30px; margin-bottom: 16px; }
.footer-tagline {
  color: var(--white);
  font-weight: 700;
  line-height: 0.96;
  margin: 0 0 18px;
  font-size: clamp(42px, 8vw, 68px);
}
.footer-tagline-line1 {
  display: block;
}
.footer-tagline-line2 {
  display: block;
  font-size: 0.4615em; /* fest an line1 gekoppelt (=24/52) — Verhältnis bleibt bei jeder Breite exakt gleich */
  margin-top: 2px;
}
.footer-brand p {
  color: var(--off-white);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 18px;
}
.footer-subhead-spaced { margin-top: 32px; }
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--off-white);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--off-white);
}
.footer-credit-link {
  color: var(--blue-light);
  text-decoration: none;
}
.footer-credit-link:hover {
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .showreel-inner { grid-template-columns: 1fr; }
  .show-card-compact { flex-basis: calc((100% - 20px) / 2); }
  .scroll-split { grid-template-columns: 240px 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; gap: 16px; }
  .nav-logo img { height: 26px; }

  .nav-links { padding: 0 24px; }
  .nav-links a {
    font-size: 16px;
    padding: 14px 0;
  }
  .nav-links a::before { font-size: 12px; }

  .hero-content { padding: calc(var(--nav-height) + 24px) 20px 56px; }
  .intro-inner { padding: 0 20px; margin-bottom: 56px; }
  .scroll-section { padding: 56px 0; }
  .scroll-split { grid-template-columns: 1fr; padding: 0 20px; gap: 28px; }
  .scroll-split-sidebar { text-align: left; }
  .scroll-row-wrapper { padding: 0 20px; }
  .show-card-compact { flex-basis: 100%; }
  .scroll-arrow { width: 38px; height: 38px; }
  .scroll-arrow-prev { left: 6px; }
  .scroll-arrow-next { right: 6px; }
  .ticket-cta-section { padding: 56px 0; }
  .ticket-cta-card { padding: 32px 24px; margin: 0 20px; }
  .ticket-cta-features { grid-template-columns: 1fr; gap: 28px; }
  .ticket-cta-feature { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
  .ticket-cta-feature:first-child { border-top: none; padding-top: 0; }
  .showreel { padding: 64px 0; }
  .showreel-inner { padding: 0 20px; }
  .footer-inner { grid-template-columns: 1fr; padding: 0 20px 40px; }
  .site-footer { padding: 56px 0 0; }
  .footer-tagline { font-size: clamp(46px, 16vw, 64px); }

  /* Platz für die fixe Social-Bar am unteren Rand freihalten */
  body { padding-bottom: 68px; }

  .social-sidebar {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    padding: 12px 0;
    background: rgba(15, 22, 39, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .social-sidebar-icon { width: 38px; height: 38px; }
}


/* =====================================================
   Legal Pages (Impressum / AGB / Datenschutzerklärung)
   Neu ergänzt für united-concerts.com — nutzt bestehende
   Farb-Variablen, keine bestehenden Regeln verändert.
   ===================================================== */
.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 64px) 32px 100px;
}
.legal-page-header {
  text-align: center;
  margin-bottom: 56px;
}
.legal-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.legal-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.legal-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 48px;
  text-align: center;
}
.legal-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-block:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-block h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}
.legal-block p {
  font-size: 15px;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--blue-light); text-decoration: underline; text-underline-offset: 2px; }
.legal-block a:hover { color: var(--white); }
.legal-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.legal-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-light);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.legal-block-header h2 { margin-bottom: 0; }
.legal-info-card {
  background: rgba(10,14,26,0.55);
  border: 1px solid rgba(75,159,255,0.18);
  border-radius: 12px;
  padding: 8px 20px;
  margin-bottom: 16px;
}
.legal-info-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.legal-info-row:last-child { border-bottom: none; }
.legal-info-row span:first-child {
  color: var(--off-white);
  font-weight: 500;
  flex-shrink: 0;
}
.legal-info-row span:last-child {
  text-align: right;
  font-weight: 300;
}
.legal-basis {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--blue-light);
  background: rgba(75,159,255,0.1);
  border: 1px solid rgba(75,159,255,0.25);
  border-radius: 4px;
  padding: 5px 10px;
  margin-top: 4px;
}
.legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.legal-right-card {
  background: rgba(10,14,26,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legal-right-card strong { font-size: 14px; font-weight: 700; }
.legal-right-card span { font-size: 12px; color: var(--off-white); font-weight: 300; }
.legal-contact-card {
  background: rgba(10,14,26,0.55);
  border: 1px solid rgba(15,136,253,0.4);
  border-radius: 16px;
  padding: 32px;
  margin-top: 48px;
}
.legal-contact-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.legal-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.legal-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(75,159,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.legal-contact-label { font-size: 12px; color: var(--off-white); font-weight: 300; }
.legal-contact-value { font-size: 14px; font-weight: 500; }
.legal-contact-value a { color: var(--white); }
.legal-contact-value a:hover { color: var(--blue-light); }
.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-light);
  transition: color 0.2s ease;
}
.legal-back-link:hover { color: var(--white); }

@media (max-width: 768px) {
  .legal-page { padding: calc(var(--nav-height) + 40px) 20px 72px; }
  .legal-info-row { flex-direction: column; gap: 4px; }
  .legal-info-row span:last-child { text-align: left; }
  .legal-rights-grid { grid-template-columns: 1fr 1fr; }
}
