/* ============================================================================
   MEHRALSMUSIK — Shared Styles
   ============================================================================ */

:root {
  --paper: #f2ebdc;
  --paper-2: #ebe2cf;
  --paper-shade: #d9cfb8;
  --ink: #0d0d0d;
  --ink-2: #1c1c1c;
  --ink-soft: #3a3a3a;
  --muted: #6e6759;
  --line: rgba(13, 13, 13, 0.14);
  --line-strong: rgba(13, 13, 13, 0.32);
  --red: #e3262f;
  --red-deep: #b51a22;
  --red-bright: #ff3a44;
  --gold: #c9a96a;
  --green: #4ec973;
  --max-w: 1440px;
  --pad-x: 40px;
  --t: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-fast: 0.18s ease-out;
}
@media (max-width: 700px) { :root { --pad-x: 20px; } }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--red); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--red); color: #fff; }

/* Halftone / Paper-Textur Overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(13,13,13,0.18) 1px, transparent 1.2px);
  background-size: 4px 4px;
  opacity: 0.18;
  mix-blend-mode: multiply;
  z-index: 1;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  z-index: 2;
}

.site-header, main, .site-footer { position: relative; z-index: 3; }

/* ---------- Typografie ---------- */
.stencil { font-family: 'Big Shoulders Stencil Display', 'Staatliches', sans-serif; font-weight: 900; letter-spacing: 0.01em; text-transform: uppercase; line-height: 0.9; }
.staat { font-family: 'Staatliches', sans-serif; letter-spacing: 0.04em; text-transform: uppercase; }
.typewriter { font-family: 'Special Elite', 'Courier New', monospace; letter-spacing: 0.02em; }

.display-xxl { font-family: 'Big Shoulders Stencil Display', sans-serif; font-weight: 900; font-size: clamp(60px, 14vw, 220px); line-height: 0.85; letter-spacing: -0.01em; text-transform: uppercase; }
.display-xl  { font-family: 'Big Shoulders Stencil Display', sans-serif; font-weight: 900; font-size: clamp(50px, 9vw, 140px); line-height: 0.88; text-transform: uppercase; }
.display-lg  { font-family: 'Staatliches', sans-serif; font-size: clamp(38px, 5.5vw, 82px); line-height: 0.98; letter-spacing: 0.005em; text-transform: uppercase; }
.display-md  { font-family: 'Staatliches', sans-serif; font-size: clamp(26px, 3.2vw, 44px); line-height: 1.05; text-transform: uppercase; }

.eyebrow {
  font-family: 'Special Elite', monospace;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: '★'; color: var(--red); font-size: 11px; }
.eyebrow.ink { color: var(--ink); }
.eyebrow.ink::before { color: var(--red); }

.red { color: var(--red); }
.gold { color: var(--gold); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-narrow { max-width: 1040px; margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: clamp(70px, 10vw, 140px) 0; }
.section-sm { padding: clamp(50px, 7vw, 90px) 0; }

/* ============================================================================
   HEADER / NAV (auf jeder Seite)
   ============================================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  transition: padding var(--t);
}
.site-header.scrolled { padding: 10px 0; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  gap: 20px;
}
.brand {
  font-family: 'Big Shoulders Stencil Display', sans-serif;
  font-weight: 900; font-size: 26px;
  letter-spacing: 0.02em; text-transform: uppercase;
  display: inline-flex; align-items: baseline; gap: 2px; white-space: nowrap;
}
.brand .a { color: var(--red); }
.brand .b { color: var(--ink); }
.brand .star { color: var(--red); margin: 0 6px; font-size: 14px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  font-family: 'Staatliches', sans-serif;
  font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--paper);
  padding: 12px 20px; font-family: 'Staatliches', sans-serif;
  font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 2px solid var(--ink); transition: all var(--t-fast);
  transform: rotate(-1deg);
}
.btn-cta:hover { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(0); }
.btn-cta .dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; }
.btn-cta:hover .dot { background: #fff; }
.menu-toggle {
  display: none; background: var(--ink); color: var(--paper);
  border: 0; padding: 10px 14px; font-family: 'Staatliches', sans-serif;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
}
@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 13px; letter-spacing: 0.12em; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 24px var(--pad-x);
    border-bottom: 2px solid var(--ink);
    gap: 16px; align-items: flex-start;
  }
  .menu-toggle { display: inline-block; }
  .btn-cta { display: none; }
}
main { padding-top: 68px; }

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--red); color: #fff;
  padding: 16px 28px; font-family: 'Staatliches', sans-serif;
  font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid var(--red); transition: all var(--t-fast);
}
.btn-primary:hover { background: transparent; color: var(--red); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; color: var(--ink);
  padding: 16px 28px; font-family: 'Staatliches', sans-serif;
  font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid var(--ink); transition: all var(--t-fast);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost.light { color: var(--paper); border-color: var(--paper); }
.btn-ghost.light:hover { background: var(--paper); color: var(--ink); }

/* Tape / Stamp */
.tape {
  display: inline-block; background: rgba(227, 38, 47, 0.85); color: #fff;
  padding: 4px 12px; font-family: 'Special Elite', monospace;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  transform: rotate(-2deg);
}
.stamp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border: 2px solid var(--red); color: var(--red);
  font-family: 'Staatliches', sans-serif;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  transform: rotate(-2deg); background: rgba(255,255,255,0.6);
}

/* ============================================================================
   PAGE INTRO (auf Unterseiten)
   ============================================================================ */
.page-intro {
  padding: clamp(70px, 10vw, 130px) 0 clamp(40px, 5vw, 60px);
  border-bottom: 2px solid var(--ink);
  background:
    radial-gradient(ellipse at 30% 0%, rgba(227, 38, 47, 0.07), transparent 65%);
  position: relative;
}
.page-intro .eyebrow { margin-bottom: 18px; }
.page-intro h1 { margin-bottom: 18px; }
.page-intro p {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-soft);
  max-width: 660px;
  line-height: 1.6;
}

/* ============================================================================
   SECTION-HEAD (Standard Section Header)
   ============================================================================ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}
.section-head h2 { margin-top: 18px; }
.section-head p {
  font-size: clamp(15px, 1.3vw, 17px); color: var(--ink-soft);
  line-height: 1.6; max-width: 480px; justify-self: end;
}
@media (max-width: 800px) { .section-head p { justify-self: start; } }

/* ============================================================================
   MARQUEE
   ============================================================================ */
.marquee {
  background: var(--ink); color: var(--paper);
  border-top: 4px solid var(--red); border-bottom: 4px solid var(--red);
  padding: 18px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: 'Big Shoulders Stencil Display', sans-serif;
  font-weight: 900; font-size: clamp(26px, 3.2vw, 42px);
  text-transform: uppercase; letter-spacing: 0.02em;
  align-items: center;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .sep { color: var(--red); font-size: 0.7em; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================================
   NEWSLETTER (kann auf jeder Seite eingebunden werden)
   ============================================================================ */
.newsletter-block {
  background: var(--ink); color: var(--paper);
  padding: clamp(60px, 9vw, 120px) 0;
  position: relative; overflow: hidden;
}
.newsletter-block::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent 0 80px, rgba(227, 38, 47, 0.06) 80px 82px
  );
}
.newsletter-block .wrap { position: relative; z-index: 2; }
.newsletter-block .nl-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 60px; align-items: start;
}
@media (max-width: 900px) { .newsletter-block .nl-grid { grid-template-columns: 1fr; gap: 36px; } }
.newsletter-block h2 { color: var(--paper); margin-bottom: 18px; }
.newsletter-block .eyebrow { color: var(--red-bright); }
.newsletter-block .eyebrow::before { color: var(--red-bright); }
.newsletter-block .lede {
  color: rgba(242, 235, 220, 0.78); font-size: 16px; line-height: 1.6; max-width: 520px;
}

.newsletter-card {
  background: var(--paper); color: var(--ink);
  padding: 32px 28px; position: relative;
  transform: rotate(1.5deg);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--red);
}
.newsletter-card .tape {
  position: absolute; top: -16px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
}
.newsletter-card h3 {
  font-family: 'Big Shoulders Stencil Display', sans-serif;
  font-weight: 900; font-size: clamp(26px, 2.6vw, 36px);
  line-height: 0.95; text-transform: uppercase; margin-bottom: 10px;
}
.newsletter-card p {
  color: var(--ink-soft); font-size: 14px; line-height: 1.5; margin-bottom: 18px;
}
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input {
  background: var(--paper-shade); border: 2px solid var(--ink);
  padding: 14px 16px; font-size: 14px; color: var(--ink); width: 100%;
}
.newsletter-form input:focus { outline: none; border-color: var(--red); }
.newsletter-form button {
  background: var(--ink); color: var(--paper);
  border: 2px solid var(--ink); padding: 14px 16px;
  font-family: 'Staatliches', sans-serif; font-size: 15px;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: all var(--t-fast);
}
.newsletter-form button:hover { background: var(--red); border-color: var(--red); }
.newsletter-card .small {
  font-family: 'Special Elite', monospace; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-top: 12px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
  background: var(--ink); color: var(--paper);
  padding: 80px 0 28px;
  position: relative; overflow: hidden;
}
.site-footer .wordmark {
  font-family: 'Big Shoulders Stencil Display', sans-serif;
  font-weight: 900;
  font-size: clamp(50px, 14vw, 200px);
  letter-spacing: 0.01em; text-transform: uppercase;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px rgba(242, 235, 220, 0.18);
  text-align: center; margin-bottom: 50px;
}
.site-footer .wordmark .red { -webkit-text-stroke: 2px var(--red); }
.ft-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 50px;
}
@media (max-width: 900px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ft-grid { grid-template-columns: 1fr; } }
.ft-col h5 {
  font-family: 'Staatliches', sans-serif; font-size: 14px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.ft-col ul li { margin-bottom: 8px; }
.ft-col ul li a {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px;
  color: rgba(242, 235, 220, 0.72);
}
.ft-col ul li a:hover { color: var(--red); }
.ft-col p {
  font-size: 14px; color: rgba(242, 235, 220, 0.65);
  line-height: 1.6; max-width: 320px;
}
.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(242, 235, 220, 0.12);
  font-family: 'Special Elite', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(242, 235, 220, 0.5);
  flex-wrap: wrap; gap: 16px;
}

/* ============================================================================
   REVEAL
   ============================================================================ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================================
   COMMON CARD STYLES (re-usable)
   ============================================================================ */

/* Album/Release/Product Card */
.product {
  background: var(--paper); border: 2px solid var(--ink);
  position: relative; display: flex; flex-direction: column;
  transition: all var(--t-fast); cursor: pointer;
}
.product:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 0 var(--red); }
.product:nth-child(odd) { transform: rotate(-0.4deg); }
.product:nth-child(even) { transform: rotate(0.3deg); }
.product:hover { transform: translate(-3px, -3px) rotate(0); box-shadow: 6px 6px 0 0 var(--red); }
.product .cover {
  aspect-ratio: 1; background: var(--ink);
  position: relative; overflow: hidden;
}
.product .cover-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.product .cover-art::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, transparent 0 30px, rgba(227, 38, 47, 0.08) 30px 32px);
  pointer-events: none;
}
.product .cover-art .ph-title {
  font-family: 'Big Shoulders Stencil Display', sans-serif;
  font-weight: 900; font-size: clamp(20px, 2vw, 32px);
  color: var(--paper); text-transform: uppercase; text-align: center;
  line-height: 0.95; text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}
.product .stamp-new {
  position: absolute; top: 12px; right: -10px;
  background: var(--red); color: #fff;
  padding: 5px 14px; font-family: 'Staatliches', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  transform: rotate(4deg); z-index: 3;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}
.product .info {
  padding: 18px 16px 16px;
  display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.product .artist {
  font-family: 'Special Elite', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
}
.product .title {
  font-family: 'Big Shoulders Stencil Display', sans-serif;
  font-weight: 900; font-size: 22px; line-height: 1;
  text-transform: uppercase; color: var(--ink);
}
.product .formats { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.product .fmt {
  font-family: 'Staatliches', sans-serif; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 3px 8px; border: 1.5px solid var(--ink); color: var(--ink);
}
.product .fmt.vinyl { border-color: var(--red); color: var(--red); }
.product .fmt.cd { border-color: var(--ink-soft); color: var(--ink-soft); }
.product .fmt.digital { border-color: var(--gold); color: var(--muted); }
.product .price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; padding-top: 14px;
  border-top: 1.5px dashed var(--line-strong);
}
.product .price {
  font-family: 'Big Shoulders Stencil Display', sans-serif;
  font-weight: 900; font-size: 26px; color: var(--ink); line-height: 1;
}
.product .price .from {
  font-family: 'Special Elite', monospace; font-size: 9px;
  letter-spacing: 0.16em; color: var(--muted);
  display: block; margin-bottom: 2px;
}
.product .buy {
  background: var(--ink); color: var(--paper);
  border: 2px solid var(--ink); padding: 8px 14px;
  font-family: 'Staatliches', sans-serif;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  transition: all var(--t-fast); cursor: pointer;
}
.product .buy:hover { background: var(--red); border-color: var(--red); }

/* Cover-Gradients (Wiederverwendung) */
.cv-1 { background: linear-gradient(135deg, #7a1014 0%, #0d0d0d 100%); }
.cv-2 { background: linear-gradient(135deg, #0d0d0d 0%, #4a1a1c 100%); }
.cv-3 { background: linear-gradient(135deg, #1c2a3a 0%, #0d0d0d 100%); }
.cv-4 { background: linear-gradient(135deg, #2a1c3a 0%, #0d0d0d 100%); }
.cv-5 { background: linear-gradient(135deg, #4a3a1c 0%, #0d0d0d 100%); }
.cv-6 { background: linear-gradient(135deg, #1c3a2a 0%, #0d0d0d 100%); }
.cv-7 { background: linear-gradient(135deg, #3a1c2a 0%, #0d0d0d 100%); }
.cv-8 { background: linear-gradient(135deg, #0d0d0d 0%, #2a2a2a 100%); }

/* Filter-Bar */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px; padding-bottom: 24px;
  border-bottom: 2px solid var(--ink);
}
.filter-btn {
  padding: 10px 18px; border: 2px solid var(--ink);
  background: transparent; color: var(--ink);
  font-family: 'Staatliches', sans-serif; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; transition: all var(--t-fast);
}
.filter-btn:hover { background: var(--ink); color: var(--paper); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.filter-btn .count { margin-left: 6px; font-size: 11px; opacity: 0.7; }

/* Grid Helpers */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  {
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px)  {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
