@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/archivo-500.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/archivo-700.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../assets/fonts/archivo-800.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/worksans-400.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/worksans-500.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/worksans-600.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/worksans-700.woff2") format("woff2");
}

:root {
  --ink: #0b0b0b;
  --paper: #f6f3ec;
  --crimson: #e4003a;
  --crimson-deep: #b8002e;
  --yellow: #ffd400;
  --line: rgba(11,11,11,0.12);
  --line-on-dark: rgba(246,243,236,0.16);
  --radius-lg: 28px;
  --radius-md: 16px;
  --shadow: 0 20px 50px rgba(0,0,0,0.25);
  --font-display: "Archivo", "Arial Black", sans-serif;
  --font-body: "Work Sans", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--yellow);
  color: var(--ink);
  padding: 12px 20px;
  font-weight: 700;
  z-index: 200;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--line-on-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  height: 46px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}

.site-nav a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.site-nav a:hover { color: var(--yellow); }

.nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-social a { color: var(--paper); display: flex; }
.nav-social a:hover { color: var(--yellow); }

.nav-cta {
  background: var(--crimson);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 10px;
}
.nav-cta:hover { background: var(--crimson-deep); color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line-on-dark);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 0 8px;
  background: var(--paper);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: clamp(64px, 12vw, 140px) 0 clamp(72px, 10vw, 120px);
}

.hero-flame {
  position: absolute;
  right: clamp(-60px, -2vw, 10px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 26vw, 400px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  font-size: 0.85rem;
  margin: 0 0 18px;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  color: var(--paper);
}

.hero h1 .ink { color: var(--crimson); }

.hero-lead {
  margin: 28px 0 0;
  max-width: 52ch;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(246,243,236,0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 30px;
  border-radius: 12px;
  background-clip: padding-box;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus { outline: none; }
.btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--crimson);
  color: #fff;
}
.btn-primary:hover { background: var(--crimson-deep); }

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-on-dark);
}
.btn-ghost:hover { border-color: var(--paper); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--crimson); color: var(--crimson); }

/* ---------- Section basics ---------- */

section { padding: clamp(72px, 10vw, 128px) 0; }

.section-kicker {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  color: var(--crimson-deep);
  margin: 0 0 14px;
}
.section-kicker-light { color: var(--yellow); }

h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  color: var(--ink);
}
h2.light { color: var(--paper); }

.section-lead {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: rgba(11,11,11,0.75);
}
.section-lead.light { color: rgba(246,243,236,0.82); }

/* ---------- Story / Bandgeschichte ---------- */

.placeholder-copy {
  font-style: italic;
  color: rgba(11,11,11,0.6);
}

/* ---------- Repertoire ---------- */

.repertoire-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.repertoire-group {
  background: rgba(11,11,11,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}

.repertoire-genre {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 14px;
  color: var(--ink);
}

.repertoire-songs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.repertoire-songs li {
  font-size: 0.92rem;
  color: rgba(11,11,11,0.72);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.repertoire-songs li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ---------- Band / members ---------- */

.member-grid {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 22px;
}

.member-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.member-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  background: rgba(11,11,11,0.045);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.member-photo span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(11,11,11,0.62);
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card a:hover .member-photo {
  border-color: var(--crimson);
  transform: translateY(-2px);
}

.member-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.member-card a:hover .member-name {
  color: var(--crimson);
}

/* ---------- Events ---------- */

.events {
  background: var(--ink);
  color: var(--paper);
}

.event-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.event-card {
  background: rgba(246,243,236,0.05);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-md);
  padding: 30px;
}

.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--yellow);
  margin-bottom: 14px;
  line-height: 1.15;
}

.event-card p {
  margin: 0;
  color: rgba(246,243,236,0.78);
}

/* ---------- Termine / dates ---------- */

.date-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.date-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.date-when {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
}
.date-when span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: rgba(11,11,11,0.6);
}

.date-what { font-weight: 700; }

.date-where {
  color: rgba(11,11,11,0.6);
  font-size: 0.95rem;
  text-align: right;
}
.date-where a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(11,11,11,0.25);
  text-underline-offset: 3px;
}
.date-where a:hover {
  color: var(--crimson);
  text-decoration-color: currentColor;
}

.date-empty {
  margin: 40px 0 0;
  padding: 26px 28px;
  border-radius: var(--radius-md);
  background: rgba(11,11,11,0.04);
  color: rgba(11,11,11,0.7);
}
.date-empty a { color: var(--crimson-deep); font-weight: 600; }

/* ---------- Gallery ---------- */

.instagram-feed {
  margin-top: 40px;
  margin-bottom: 32px;
}

/* ---------- Contact ---------- */

.contact {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.contact-flame {
  position: absolute;
  left: clamp(-140px, -8vw, -40px);
  bottom: clamp(-80px, -6vw, -20px);
  width: clamp(220px, 26vw, 380px);
  opacity: 0.22;
  pointer-events: none;
}

.contact-inner { position: relative; max-width: 640px; }

.contact-email {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--yellow);
  text-decoration: none;
  word-break: break-word;
}
.contact-email:hover { color: #fff; }

.contact-press-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: rgba(246,243,236,0.6);
}
.contact-press-note a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: rgba(246,243,236,0.35);
}
.contact-press-note a:hover { color: var(--yellow); }

.contact-form {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  background: rgba(246,243,236,0.04);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.form-row label {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(246,243,236,0.85);
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-on-dark);
  background: rgba(246,243,236,0.06);
  color: var(--paper);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(246,243,236,0.4);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* Browser-Autofill (z. B. Chrome) setzt sonst einen hellen Hintergrund samt
   dunkler Schrift, was auf dem dunklen Formular kaum lesbar wäre. */
.form-row input:-webkit-autofill,
.form-row input:-webkit-autofill:hover,
.form-row input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--paper);
  -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset;
  box-shadow: 0 0 0 1000px #1a1a1a inset;
  caret-color: var(--paper);
  transition: background-color 9999s ease-in-out 0s;
}
.form-row input:autofill {
  color: var(--paper);
  background: #1a1a1a;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-consent input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--crimson);
}

.form-consent span {
  font-size: 0.9rem;
  color: rgba(246,243,236,0.75);
}

.form-consent a {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255,212,0,0.4);
}
.form-consent a:hover { text-decoration-color: currentColor; }

.btn-block {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(246,243,236,0.55);
}
.form-note-success { color: #7fd88f; font-weight: 600; }
.form-note-error { color: #ff8a8a; font-weight: 600; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ---------- Member profile pages ---------- */

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--crimson);
}
.back-link.on-dark { color: var(--paper); }
.back-link:hover { text-decoration: underline; }

.member-hero {
  background: var(--ink);
  color: var(--paper);
}

.member-hero-inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 48px);
  flex-wrap: wrap;
}

.member-photo-lg {
  width: clamp(160px, 22vw, 220px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  background: rgba(246,243,236,0.06);
  border: 1px solid var(--line-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246,243,236,0.58);
  font-weight: 600;
  font-size: 0.85rem;
  overflow: hidden;
}
.member-photo-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: var(--paper);
}

.member-role {
  display: inline-block;
  margin-top: 14px;
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.member-bio { background: var(--paper); }

/* ---------- Legal pages ---------- */

.legal-wrap {
  max-width: 720px;
  padding-top: 8px;
}

.legal h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 1.15rem;
  margin: 40px 0 12px;
}

.legal p {
  margin: 0 0 4px;
  color: rgba(11,11,11,0.78);
  line-height: 1.6;
}

.legal a {
  color: var(--crimson-deep);
  text-decoration: underline;
  text-decoration-color: rgba(184,0,46,0.35);
  text-underline-offset: 2px;
}
.legal a:hover { text-decoration-color: currentColor; }
.legal a.btn-primary, .legal a.btn-ghost, .legal a.btn-outline { text-decoration: none; }
.legal a.btn-primary { color: #fff; }
.legal a.btn-ghost { color: var(--paper); }
.legal a.btn-outline { color: var(--ink); }
.legal a.btn-outline:hover { color: var(--crimson); }

.tech-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.downloads-loading { color: rgba(11,11,11,0.62); margin-top: 32px; }

.downloads-featured {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: rgba(11,11,11,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.download-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 4px;
}
.download-card p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(11,11,11,0.62);
}

.downloads-empty {
  margin-top: 32px;
  color: rgba(11,11,11,0.7);
}

.legal-back {
  margin-top: 48px;
}
.legal-back a { font-weight: 600; text-decoration: none; }
.legal-back a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 36px 0;
}

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

.footer-logo { height: 32px; width: auto; }

.footer-inner p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(11,11,11,0.6);
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social a {
  display: flex;
  color: rgba(11,11,11,0.6);
}
.footer-social a:hover { color: var(--crimson); }

.footer-legal {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.footer-legal a {
  font-size: 0.85rem;
  color: rgba(11,11,11,0.6);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--crimson); }

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px clamp(20px, 5vw, 48px) 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line-on-dark);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero-flame {
    top: auto;
    bottom: clamp(-40px, -6vw, -10px);
    right: clamp(-60px, -10vw, -20px);
    transform: none;
    width: clamp(160px, 46vw, 240px);
    opacity: 0.22;
  }

  .contact-flame {
    width: clamp(140px, 40vw, 200px);
    left: clamp(-60px, -8vw, -20px);
    opacity: 0.14;
  }

  .date-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .date-where { text-align: left; }

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