/* ============================================
   dAVOS — Apple-inspired minimal black theme
   ============================================ */

:root {
  --bg: #000000;
  --bg-elev: #0a0a0a;
  --bg-card: #111111;
  --text: #f5f5f7;
  --text-dim: #a1a1a6;
  --text-mute: #6e6e73;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --accent: #ffffff;
  --header-h: 56px;
  --container: 1180px;
  --container-narrow: 760px;
  --font-stack: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-stack);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.47059;
  letter-spacing: -0.022em;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

@media (max-width: 734px) {
  body { font-size: 16px; }
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}

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

button {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.header-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

.logo-img {
  height: 22px;
  width: auto;
  display: block;
}

.social-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  margin-right: 8px;
}

.social-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-dim);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.social-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.social-nav svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 5px;
  padding: 0;
  position: relative;
}

.menu-toggle .bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease);
}

.menu-toggle.is-open .bar:nth-child(1) {
  transform: translateY(3.25px) rotate(45deg);
}
.menu-toggle.is-open .bar:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Language switcher in header */
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 11px;
  margin: 0 8px 0 4px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.lang-switch:hover {
  color: var(--text);
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

/* Language toggle inside burger menu */
.menu-lang {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}

.menu-lang-active {
  color: var(--text);
}

.menu-lang-sep {
  opacity: 0.4;
}

.menu-lang-other {
  color: var(--text-mute);
  transition: color 0.25s var(--ease);
}

.menu-lang-other:hover {
  color: var(--text);
}

@media (max-width: 540px) {
  .social-nav a { width: 32px; height: 32px; }
  .social-nav svg { width: 16px; height: 16px; }
  .header-inner { padding: 0 18px; }
  .lang-switch { margin: 0 6px 0 2px; height: 24px; padding: 0 9px; font-size: 10px; }
}

@media (max-width: 420px) {
  .social-nav { gap: 2px; }
  .lang-switch { margin: 0 4px 0 2px; padding: 0 7px; }
}

@media (max-width: 360px) {
  /* On very narrow phones, hide header lang switch — burger menu still has it */
  .lang-switch { display: none; }
}

/* ============================================
   SLIDE-OUT MENU
   ============================================ */

.menu-overlay {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
  overflow-y: auto;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: flex;
  flex-direction: column;
}

.menu-link {
  display: block;
  padding: 18px 0;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  transition: color 0.2s var(--ease), padding-left 0.3s var(--ease-out);
}

.menu-link:hover {
  color: var(--text-dim);
  padding-left: 8px;
}

@media (max-width: 540px) {
  .menu-link { font-size: 22px; padding: 16px 0; }
  .menu-nav { padding: 28px 18px 60px; }
}

/* ============================================
   COMMON SECTION
   ============================================ */

.section {
  padding: 140px 0;
  position: relative;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-inner.narrow {
  max-width: var(--container-narrow);
}

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 16px;
}

.headline {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 16px;
  background: linear-gradient(180deg, #ffffff 0%, #d8d8db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.headline-small {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 32px;
  color: var(--text);
}

.lede {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--text-dim);
  margin: 0 0 56px;
  max-width: 620px;
}

@media (max-width: 734px) {
  .section { padding: 96px 0; }
  .section-inner { padding: 0 22px; }
  .lede { margin-bottom: 40px; }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--header-h) 24px 80px;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: heroFadeUp 1.2s var(--ease-out) both;
}

.hero-logo {
  width: clamp(220px, 36vw, 460px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.04));
}

.hero-tagline {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-dim);
  margin: 0;
  letter-spacing: -0.01em;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--text-mute);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}

.scroll-cue span {
  display: block;
  width: 2px;
  height: 6px;
  background: var(--text-dim);
  border-radius: 1px;
  animation: scrollPulse 1.8s var(--ease) infinite;
}

.scroll-cue:hover { opacity: 1; }

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%      { transform: translateY(8px); opacity: 1; }
}

@media (max-width: 540px) {
  .scroll-cue { bottom: 28px; }
}

/* ============================================
   NEWS
   ============================================ */

.section-news {
  background: linear-gradient(180deg, #000 0%, #050505 100%);
}

.news-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.news-art {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
}

.news-art img {
  width: 100%;
  height: auto;
  display: block;
}

.news-text p {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--text-dim);
  margin: 0 0 20px;
  line-height: 1.55;
}

.news-text p:first-child {
  color: var(--text);
  font-size: clamp(18px, 1.6vw, 22px);
}

.news-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .news-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), background 0.25s var(--ease);
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

/* ============================================
   BAND
   ============================================ */

.band-bio {
  max-width: 720px;
  margin: 0 0 80px;
}

.band-bio p {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0 0 18px;
}

.band-bio p:first-child { color: var(--text); }

.band-feature {
  border-radius: 18px;
  overflow: hidden;
  margin: 0 0 100px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
}

.band-feature img {
  width: 100%;
  height: auto;
  display: block;
}

.members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.member {
  display: flex;
  flex-direction: column;
}

.member-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  margin-bottom: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border);
  transition: transform 0.5s var(--ease-out);
}

.member:hover .member-photo {
  transform: translateY(-4px);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.15) contrast(1.05);
  transition: filter 0.5s var(--ease), transform 0.8s var(--ease-out);
}

.member:hover .member-photo img {
  filter: grayscale(0) contrast(1.1);
  transform: scale(1.03);
}

.member-name {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  color: var(--text);
}

.member-role {
  font-size: 14px;
  color: var(--text-mute);
  margin: 0;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .members { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .band-feature { margin-bottom: 64px; }
}

@media (max-width: 540px) {
  .members { grid-template-columns: 1fr; gap: 28px; max-width: 420px; margin: 0 auto; }
  .member-photo { aspect-ratio: 4 / 5; }
}

/* ============================================
   LIVE
   ============================================ */

.section-live {
  background: linear-gradient(180deg, #050505 0%, #000 100%);
}

.live-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.live-flyer {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
  background: #000;
}

.live-flyer img {
  width: 100%;
  height: auto;
  display: block;
}

.live-details dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px 24px;
  margin: 0;
}

.live-details dt {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  padding-top: 4px;
}

.live-details dd {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.012em;
}

.live-details .muted {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  color: var(--text-mute);
}

@media (max-width: 900px) {
  .live-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .live-flyer { max-width: 560px; margin: 0 auto; }
}

@media (max-width: 540px) {
  .live-details dl { grid-template-columns: 100px 1fr; gap: 14px 18px; }
}

.live-tba {
  margin: 64px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

@media (max-width: 540px) {
  .live-tba { margin-top: 48px; font-size: 13px; }
}

/* ============================================
   LINKS
   ============================================ */

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.link-card:hover {
  transform: translateY(-3px);
  background: #161616;
  border-color: var(--border-strong);
}

.link-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
}

.link-icon svg {
  width: 22px;
  height: 22px;
}

.link-text {
  flex: 1;
  min-width: 0;
}

.link-platform {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 2px;
  color: var(--text);
}

.link-handle {
  font-size: 13px;
  color: var(--text-mute);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-arrow {
  width: 16px;
  height: 16px;
  color: var(--text-mute);
  flex-shrink: 0;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease-out);
}

.link-card:hover .link-arrow {
  color: var(--text);
  transform: translate(2px, -2px);
}

/* ============================================
   LEGAL (Datenschutz + Impressum)
   ============================================ */

.section-legal,
.section-impressum {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.section-impressum { padding-bottom: 60px; }

.legal-body,
.impressum-body {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: -0.005em;
}

.legal-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 10px;
  letter-spacing: -0.01em;
}

.legal-body h3:first-child { margin-top: 0; }

.legal-body p,
.legal-body ul,
.impressum-body p {
  margin: 0 0 12px;
}

.legal-body ul {
  padding-left: 20px;
}

.legal-body li {
  margin-bottom: 4px;
}

.legal-body a,
.impressum-body a {
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
  transition: border-color 0.2s var(--ease);
}

.legal-body a:hover,
.impressum-body a:hover {
  border-color: var(--text);
}

.impressum-body strong {
  color: var(--text);
  font-weight: 600;
}

.impressum-body p { margin: 0 0 14px; }

.legal-note {
  padding: 14px 18px;
  margin: 0 0 32px;
  border-left: 2px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.02);
  font-size: 13px;
  color: var(--text-mute);
  border-radius: 0 4px 4px 0;
}

.legal-note a {
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
}

/* ============================================
   CONTACT FORM
   ============================================ */

.section-contact {
  background: linear-gradient(180deg, #000 0%, #050505 100%);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: -0.005em;
  font-weight: 500;
}

.field label .muted {
  color: var(--text-mute);
  font-weight: 400;
  margin-left: 4px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-mute);
}

.field input:hover,
.field textarea:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--text);
  background: #161616;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 8px;
}

.form-actions .btn {
  min-width: 140px;
}

.form-actions .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
  min-height: 1.4em;
  line-height: 1.4;
}

.form-status.is-error { color: #ff7a7a; }
.form-status.is-success { color: #5dcaa5; }
.form-status.is-pending { color: var(--text-dim); }

@media (max-width: 540px) {
  .field input,
  .field textarea { padding: 12px 14px; }
  .contact-form { gap: 20px; }
}

.copyright {
  margin: 56px 0 0;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.01em;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #1c1c1e; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #2c2c2e; }

/* ============================================
   SELECTION
   ============================================ */

::selection { background: rgba(255, 255, 255, 0.18); color: #fff; }
