/* ============================================================
   MHHHMTASTY — Stylesheet v2
   Design-Sprache direkt aus dem Logo abgeleitet:
   Club-Schwarz, gestempelte Ticket-Linien, Fill/Outline-Typo-Duo
   und ein Vinyl/Strobe-Motiv als durchgängige Signatur.
   ============================================================ */

:root {
  --black:      #0a0a0a;   /* echtes Logo-Schwarz */
  --black-2:    #131313;   /* angehobene Fläche für Karten/Panels */
  --black-3:    #1a1a1a;   /* noch eine Spur heller, für Hover-States */
  --paper:      #f2efe6;   /* warmes Off-White, Haupttextfarbe */
  --dim:        #8f8b82;   /* gedämpftes Warmgrau, Sekundärtext */
  --smoke:      #55524c;   /* für sehr leise Beschriftungen */
  --yellow:     #f3e68b;   /* der Punkt aus dem Logo — einzige Akzentfarbe */
  --yellow-2:   #d8c85e;   /* etwas satter, für Hover/Kontrast auf Yellow */
  --line:       rgba(242, 239, 230, 0.12);
  --line-strong: rgba(242, 239, 230, 0.22);

  --display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --body: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;

  --max-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* faint grain over everything, keeps the black from looking flat/digital */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Skip link / focus ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 8px 16px;
  z-index: 1000;
  font-family: var(--mono);
}
.skip-link:focus { left: 16px; top: 16px; }
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* ---------- Pulse dot — the recurring signature mark ----------
   Steht für den gelben Punkt im Logo / die Stroboskop-Scheibe
   eines Plattentellers. Taucht als Aufzählungspunkt, "Live"-Marker
   und Status-Indikator überall auf der Seite wieder auf. */
.pulse-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex: none;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--yellow);
  opacity: 0.5;
  animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.6); opacity: 0.6; }
  80%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img { height: 40px; width: auto; }
.logo:hover { text-decoration: none; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  position: relative;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 6px 2px 10px;
  display: inline-block;
  transition: color 0.15s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--paper);
  text-decoration: none;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  padding: 8px 12px;
  cursor: pointer;
}

/* ---------- Language toggle ---------- */
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  margin-left: 26px;
  flex: none;
}
.lang-toggle button {
  background: none;
  border: none;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 1.5px;
  padding: 7px 12px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.lang-toggle button + button { border-left: 1px solid var(--line-strong); }
.lang-toggle button[aria-pressed="true"] {
  color: var(--black);
  background: var(--yellow);
}
.lang-toggle button:hover:not([aria-pressed="true"]) { color: var(--paper); }

@media (max-width: 760px) {
  .lang-toggle { margin-left: 12px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.is-open { max-height: 320px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 8px 24px 20px; }
  .main-nav li { border-top: 1px solid var(--line); }
  .main-nav a { display: block; padding: 14px 0; }
  .main-nav a::after { display: none; }
}

/* ---------- Ticker strip — rave-flyer info line ---------- */
.ticker {
  border-bottom: 1px solid var(--line);
  background: var(--black-2);
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 32s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  padding: 10px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticker-track span .pulse-dot { width: 5px; height: 5px; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Hero: fill/outline duotone wordmark ---------- */
.hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-eyebrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 3px;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.wordmark {
  position: relative;
  z-index: 2;
  margin: 0 0 26px;
}
.wordmark .line {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(58px, 12vw, 148px);
  line-height: 0.86;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.wordmark .fill { color: var(--paper); }
.wordmark .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--paper);
  paint-order: stroke;
}
.wordmark .outline .dot { color: var(--yellow); -webkit-text-stroke: 0; }

.hero .lede {
  position: relative;
  z-index: 2;
  max-width: 560px;
  font-size: 19px;
  color: var(--dim);
}

/* strobe / turntable-disc ornament — the ambient signature behind the hero */
.strobe {
  position: absolute;
  top: 50%;
  right: -220px;
  width: 600px;
  height: 600px;
  transform: translateY(-50%);
  opacity: 0.16;
  z-index: 1;
  animation: strobe-spin 140s linear infinite;
}
.strobe .sd { fill: var(--paper); }
.strobe .sd-b { fill: var(--yellow); }
@keyframes strobe-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
@media (max-width: 900px) {
  .strobe { right: -280px; width: 460px; height: 460px; opacity: 0.12; }
}

.stamp {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1.5px solid var(--yellow);
  padding: 4px 10px;
  border-radius: 2px;
  transform: rotate(-2deg);
  background: rgba(243, 230, 139, 0.06);
}
.stamp.ghost {
  color: var(--paper);
  border-color: var(--line-strong);
  background: transparent;
  transform: rotate(1.5deg);
}
.stamp-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 4px;
}

/* Auf den Artist-Seiten sollen die Balken unter dem Namen gerade stehen,
   statt der leicht gekippten "Stempel"-Optik im Rest der Seite. */
.artist-bio .stamp,
.artist-bio .stamp.ghost,
.hero .stamp,
.hero .stamp.ghost {
  transform: none;
}

/* ---------- Section basics ---------- */
section { padding: 72px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 46px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  color: var(--paper);
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-link {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--paper);
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 2px;
}
.section-link:hover { color: var(--yellow); text-decoration: none; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Under-construction / notice ---------- */
.notice {
  border-left: 3px solid var(--yellow);
  background: var(--black-2);
  padding: 18px 22px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--dim);
  letter-spacing: 0.3px;
  margin-bottom: 56px;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ---------- Release teaser row (home) ---------- */
.release-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.release-card {
  position: relative;
  background: var(--black-2);
  border: 1px solid var(--line);
  padding: 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.release-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.release-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
  display: block;
}
.release-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--paper);
}
.release-card p {
  color: var(--dim);
  font-size: 14.5px;
  margin: 0 0 18px;
}
.release-card .go {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.release-card .go svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.release-card:hover .go svg { transform: translateX(4px); }

/* ---------- Vinyl-sleeve cards — Roster teaser (home) ---------- */
.roster-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 46px 32px;
}
.vinyl { position: relative; display: block; }
.vinyl-stage { position: relative; aspect-ratio: 1 / 1; container-type: inline-size; }
.vinyl-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--yellow) 0 13%, #0d0d0d 13.5% 14%, #171717 14% 100%),
    repeating-radial-gradient(circle at center, #171717 0 3px, #1d1d1d 3px 6px);
  transform: translate(0, 0) rotate(0deg);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.vinyl-disc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(242,239,230,0.06);
}
.vinyl-sleeve {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--black-2);
  border: 1px solid var(--line-strong);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vinyl-sleeve img { width: 100%; height: 100%; object-fit: cover; }
.vinyl-initial {
  font-family: var(--display);
  font-weight: 900;
  font-size: 24cqw;
  letter-spacing: 0.5px;
  color: var(--line-strong);
  text-align: center;
  padding: 0 8%;
}
/* Fallback for browsers without container query support: fixed clamp */
@supports not (container-type: inline-size) {
  .vinyl-initial { font-size: clamp(18px, 5vw, 32px); }
}
.vinyl:hover .vinyl-disc {
  transform: translate(14%, -12%) rotate(28deg);
  animation: vinyl-spin 3.6s linear infinite;
}
.vinyl:hover .vinyl-sleeve { transform: translate(-4%, 3%) rotate(-2deg); }
@keyframes vinyl-spin {
  from { transform: translate(14%, -12%) rotate(28deg); }
  to   { transform: translate(14%, -12%) rotate(388deg); }
}
.vinyl-name {
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--paper);
}
.vinyl-genre {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 4px;
}

/* ---------- Instagram feed grid ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.ig-grid blockquote.instagram-media {
  margin: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
}

/* ---------- About page ---------- */
.about-block { max-width: 760px; }
.about-block p { font-size: 18px; color: var(--dim); margin-bottom: 22px; }
.about-block strong { color: var(--paper); }
.pull-quote {
  position: relative;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  color: var(--paper);
  text-transform: uppercase;
  margin: 44px 0;
  padding-left: 28px;
}
.pull-quote::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  background: var(--yellow);
}

.value-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.value-card { border: 1px solid var(--line); padding: 24px; }
.value-card .num { font-family: var(--mono); font-size: 12px; color: var(--yellow); letter-spacing: 2px; }
.value-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  margin: 10px 0 8px;
  color: var(--paper);
}
.value-card p { color: var(--dim); font-size: 14.5px; margin: 0; }

/* ---------- Artist cards (Artists page) ---------- */
.artist {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  padding: 56px 0;
  align-items: start;
}
.artist:not(:last-child) { border-bottom: 1px solid var(--line); }
.artist-stage { position: relative; }
.artist-stage .artist-photo-link { display: block; text-decoration: none; }
.artist-name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.artist-name a:hover { color: var(--yellow); border-color: var(--yellow); }
.artist-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 48px);
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--paper);
}
.artist-bio p { color: var(--dim); margin-bottom: 16px; }
.artist-links { display: flex; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.artist-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid var(--line-strong);
  padding: 9px 14px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.artist-links a:hover { color: var(--yellow); border-color: var(--yellow); text-decoration: none; }
.artist-links svg { width: 15px; height: 15px; }

@media (max-width: 720px) {
  .artist { grid-template-columns: 1fr; }
  .artist-stage { max-width: 240px; }
}

/* ---------- Contact / Impressum ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.panel { background: var(--black-2); border: 1px solid var(--line); padding: 32px; }
.panel h2 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 26px;
  margin: 0 0 8px;
  color: var(--paper);
}
.panel > p { color: var(--dim); font-size: 14px; margin-bottom: 22px; }

.panel > p/* ---------- Newsletter form (Brevo) ----------
   WICHTIG: Die HTML-Struktur ist bewusst 1:1 wie von Brevo bereitgestellt
   belassen (ids, Klassen, Verschachtelung), damit Brevos eigenes Skript
   (main.js) Absenden, Validierung und Lade-Status korrekt steuern kann.
   Hier wird NUR die Optik überschrieben (Farben/Schrift/Abstände),
   mit !important, weil Brevo viele Inline-Styles mitliefert. */

#sib-form-container,
#sib-container,
.sib-form {
  background: transparent !important;
  text-align: left !important;
  max-width: none !important;
  border: none !important;
  padding: 0 !important;
}

:where(.sib-form-message-panel) { display: none; }
.sib-form-message-panel {
  font-family: var(--body) !important;
  font-size: 13.5px !important;
  padding: 12px 14px !important;
  border-radius: 2px !important;
  margin-bottom: 16px !important;
}
#error-message.sib-form-message-panel {
  color: #ffb4b4 !important;
  background: rgba(255, 73, 73, 0.08) !important;
  border: 1px solid rgba(255, 73, 73, 0.35) !important;
}
#success-message.sib-form-message-panel {
  color: #b7f3cf !important;
  background: rgba(19, 206, 102, 0.08) !important;
  border: 1px solid rgba(19, 206, 102, 0.35) !important;
}

.entry__label {
  display: block;
  font-family: var(--mono) !important;
  font-size: 11.5px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: var(--dim) !important;
  font-weight: 400 !important;
  margin-bottom: 10px !important;
}
.entry__field .input {
  width: 100% !important;
  background: var(--black) !important;
  border: 1px solid var(--line-strong) !important;
  color: var(--paper) !important;
  padding: 13px 14px !important;
  font-family: var(--body) !important;
  font-size: 14px !important;
  border-radius: 0 !important;
  box-sizing: border-box;
}
.entry__field .input::placeholder { color: var(--smoke) !important; }
.entry__error {
  font-family: var(--body) !important;
  font-size: 12.5px !important;
  color: #ffb4b4 !important;
  background: none !important;
  border: none !important;
  padding: 8px 0 0 !important;
}

.sib-form-block__button {
  background: var(--yellow) !important;
  color: var(--black) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: var(--mono) !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  padding: 13px 20px !important;
  cursor: pointer;
  margin-top: 14px;
}
.sib-form-block__button:hover { background: var(--paper) !important; }
.sib-form-block__button svg { fill: currentColor !important; }
.brevo-label {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 10px;
}
.brevo-field-row { display: flex; gap: 10px; flex-wrap: wrap; }
.brevo-input {
  flex: 1;
  min-width: 180px;
  background: var(--black);
  border: 1px solid var(--line-strong);
  color: var(--paper);
  padding: 13px 14px;
  font-family: var(--body);
  font-size: 14px;
  border-radius: 0;
}
.brevo-input::placeholder { color: var(--smoke); }
.brevo-input:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.brevo-button {
  background: var(--yellow);
  color: var(--black);
  border: none;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 13px 20px;
  cursor: pointer;
  transition: background 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brevo-button:hover { background: var(--paper); }
.brevo-button .icon { width: 16px; height: 16px; fill: currentColor; }
.brevo-error {
  display: block;
  font-family: var(--body);
  font-size: 12.5px;
  color: #ffb4b4;
  margin-top: 8px;
}
.brevo-error:empty { display: none; }

/* ---------- Reduced motion ---------- */

.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  background: var(--black);
  border: 1px solid var(--line-strong);
  color: var(--paper);
  padding: 13px 14px;
  font-family: var(--body);
  font-size: 14px;
}
.newsletter-form input::placeholder { color: var(--smoke); }
.newsletter-form button {
  background: var(--yellow);
  color: var(--black);
  border: none;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 13px 20px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.newsletter-form button:hover { background: var(--paper); }
.form-note { font-size: 12px; color: var(--smoke); margin-top: 12px; }

.impressum address { font-style: normal; color: var(--dim); line-height: 1.9; }
.impressum a { color: var(--paper); }
.impressum a:hover { color: var(--yellow); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0 52px; margin-top: 40px; }
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--smoke);
}
.legal-list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.legal-list a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dim);
}
.legal-list a:hover { color: var(--yellow); text-decoration: none; }
.social-list { display: flex; gap: 14px; list-style: none; margin: 0; padding: 0; }
.social-list a {
  display: inline-flex;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.social-list a:hover { border-color: var(--yellow); transform: translateY(-2px); }
.social-list svg { width: 15px; height: 15px; fill: var(--paper); }
.social-list a:hover svg { fill: var(--yellow); }

/* ---------- Cookie-Consent-Banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 500;
  background: var(--black-2);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.cookie-banner p {
  margin: 0;
  color: var(--dim);
  font-size: 13.5px;
  max-width: 640px;
  flex: 1 1 320px;
}
.cookie-banner p a { color: var(--paper); border-bottom: 1px solid var(--yellow); }
.cookie-banner p a:hover { color: var(--yellow); text-decoration: none; }
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex: none;
}
.cookie-banner-actions button {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 18px;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--paper);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.cookie-banner-actions button:hover { border-color: var(--yellow); color: var(--yellow); }
.cookie-banner-actions button.primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.cookie-banner-actions button.primary:hover { background: var(--paper); border-color: var(--paper); color: var(--black); }

@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions button { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
