/* ============================================================
   ZINGERLE AUDIO — Homepage-Stylesheet
   ------------------------------------------------------------
   Migriert auf das zentrale Design-System (2026-07-10, Opus).
   Farben/Fonts/Radien kommen jetzt aus assets/zingerle-tokens.css
   (Quelle der Wahrheit). Die alten --bg/--accent/… bleiben als
   Alias auf die --za-*-Tokens bestehen, damit der Diff klein ist
   und nichts bricht. Neue Werte NICHT hier erfinden — in der
   Token-Datei ändern.
   ============================================================ */

:root {
  /* Alias auf die kanonischen --za-*-Tokens (mit Fallback, falls die
     Token-Datei einmal nicht geladen wird). */
  --bg:               var(--za-bg, #100e0b);
  --surface:          var(--za-surface-1, #1a1713);
  --surface-2:        var(--za-surface-2, #221e18);
  --surface-3:        var(--za-surface-3, #2c2820);

  --hairline:         var(--za-line, rgba(235, 225, 204, 0.12));
  --hairline-strong:  var(--za-line-strong, rgba(235, 225, 204, 0.22));
  --hairline-soft:    var(--za-line-soft, rgba(235, 225, 204, 0.07));

  --text:             var(--za-text, #f3ead6);
  --text-muted:       var(--za-text-muted, rgba(243, 234, 214, 0.72)); /* war .78 → auf Token .72 vereinheitlicht */
  --text-faint:       var(--za-text-faint, rgba(243, 234, 214, 0.50)); /* war .55 → auf Token .50 vereinheitlicht */
  --text-ghost:       rgba(243, 234, 214, 0.25); /* nur Deko (Preview-Wave); kein Token */

  --accent:           var(--za-accent, #c8a662);
  --accent-bright:    var(--za-accent-bright, #d8b876);
  --accent-soft:      var(--za-accent-soft, rgba(200, 166, 98, 0.32));
  --accent-glow:      var(--za-accent-glow, rgba(200, 166, 98, 0.16));
  --accent-fg:        var(--za-accent-ink, #15100a);

  --danger:           var(--za-danger, #c25b5b); /* war #b14457 → Token-Danger */
  --warn:             var(--za-warn, #d6a96a);
  --ok:               var(--za-ok, #8fbf7f);
  --info:             var(--za-info, #8fa8bf);

  --radius:           var(--za-radius, 4px);       /* war 3px → Token 4px */
  --radius-sm:        var(--za-radius-sm, 2px);
  --radius-lg:        var(--za-radius-lg, 6px);

  --max-w:            var(--za-max-w, 1180px);
  --max-w-narrow:     var(--za-max-w-narrow, 880px);

  /* Marken-Typografie (Fallbacks greifen, bis die WOFF2 in assets/fonts/ liegen) */
  --font-display:     var(--za-font-display, "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  --font-body:        var(--za-font-body, "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif);
  --font-mono:        var(--za-font-mono, ui-monospace, "SF Mono", Consolas, monospace);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  /* Subtle radial vignette — slight champagne undertone gives the page depth */
  background:
    radial-gradient(ellipse at 50% -8%, rgba(200,166,98,0.07), transparent 55%),
    radial-gradient(ellipse at 50% 108%, rgba(200,166,98,0.04), transparent 55%),
    var(--bg);
  min-height: 100vh;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.12s ease;
}
a:hover { color: var(--accent-bright); text-decoration: underline; text-decoration-color: var(--accent-soft); text-underline-offset: 4px; }

::selection { background: var(--accent-soft); color: var(--text); }

/* ============================================================
   Typography
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: var(--za-track-h1, -0.02em);
  line-height: 1.1;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: var(--za-track-label, 0.18em);
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.section-title em {
  display: block;
  font-style: normal; /* Space Grotesk hat keinen echten Kursiv-Schnitt */
  color: var(--accent);
  font-weight: 600;
  margin-top: 6px;
}

.label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--za-track-label, 0.18em);
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); }
.small { font-size: 12px; }
.center { text-align: center; }
.hidden { display: none !important; }

/* ============================================================
   Layout
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.container-narrow {
  width: 100%;
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 48px;
}

section { padding: 88px 0; border-bottom: 0.5px solid var(--hairline); position: relative; }
section:last-of-type { border-bottom: none; }
section.section-alt {
  background:
    linear-gradient(to right, transparent, rgba(200,166,98,0.025) 50%, transparent) padding-box,
    var(--surface);
}

/* Numbered section header (editorial) */
.section-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.section-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--za-track-label, 0.18em);
  text-transform: uppercase;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  flex-shrink: 0;
  padding-top: 6px;
}
.section-num::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 0.5px;
  background: var(--accent-soft);
}
.section-head .eyebrow { margin: 0 0 6px; }
.section-head .section-title { margin: 0; }
.section-head .head-meta {
  flex: 1;
}

/* ============================================================
   Header / Navigation
   ============================================================ */

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 14, 11, 0.94);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 0.5px solid var(--hairline-strong);
  /* Tiefe über Haarlinie statt Schatten (Design-System) */
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; line-height: 0; transition: opacity 0.12s ease; }
.brand:hover { opacity: 0.8; }
.brand-logo {
  height: 28px; /* Design-System: Logo klein setzen (war 60px) */
  width: auto;
  display: block;
}
header.site .brand-logo {
  height: 80px;
}
/* Legacy classes kept so older content keeps working — used by the small
   in-footer brand and any place that still references just the mark. */
.brand-mark { width: 26px; height: 26px; }
.brand-word {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 10px 16px;
  transition: color 0.12s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-bright);
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-intro,
.shop-intro {
  padding: 28px 0 0;
  border-bottom: 0.5px solid var(--hairline);
}
.page-intro .section-head,
.shop-intro .section-head {
  margin-bottom: 12px;
}
.page-intro .section-title,
.shop-title {
  font-size: 34px;
  line-height: 1.08;
}
.shop-lead {
  margin-top: 8px;
  max-width: 62ch;
}
.shop-intro .tabs {
  margin-top: 12px;
}
.shop-intro .tab {
  padding-top: 10px;
  padding-bottom: 10px;
}
#shop-grid {
  margin-top: 0;
}
.lang-pill {
  background: transparent;
  color: var(--text);
  border: 0.5px solid var(--hairline-strong);
  padding: 6px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.12s ease, border-color 0.12s ease;
}
.lang-pill:hover { color: var(--accent); border-color: var(--accent-soft); }

.burger {
  display: none;
  background: transparent;
  border: 0.5px solid var(--hairline-strong);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 14px;
  height: 0.5px;
  background: var(--text);
  position: relative;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 14px;
  height: 0.5px;
  background: var(--text);
}
.burger span::before { top: -5px; }
.burger span::after { top: 5px; }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.12s ease, color 0.12s ease, border-color 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}
.btn.primary {
  background: var(--accent);
  color: var(--accent-fg);
}
.btn.primary:hover { filter: brightness(1.08); text-decoration: none; }
.btn.primary:disabled { opacity: 0.5; cursor: progress; filter: grayscale(0.3); }

.btn.ghost {
  background: transparent;
  color: var(--text-muted);
  border: 0.5px solid var(--hairline-strong);
  padding: 13px 26px;
}
.btn.ghost:hover { color: var(--text); border-color: var(--text); text-decoration: none; }

.btn.link {
  background: transparent;
  color: var(--accent);
  padding: 6px 0;
  letter-spacing: 0.18em;
}
.btn.link:hover { color: var(--accent-bright); }

.btn.small { padding: 9px 18px; font-size: 12px; letter-spacing: 0.14em; }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  padding: 96px 0 64px;
  border-bottom: 0.5px solid var(--hairline);
  position: relative;
  overflow: hidden;
}

/* ===== Hero with Eurorack background ===== */
.hero.hero-eurorack {
  padding: 120px 0 110px;
  isolation: isolate;
}
.hero-eurorack .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-eurorack .hero-bg img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 78%;
  max-width: 1180px;
  height: auto;
  display: block;
}
.hero-eurorack .hero-bg-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      var(--bg) 0%,
      var(--bg) 28%,
      rgba(16,14,11,0.85) 48%,
      rgba(16,14,11,0.4) 75%,
      rgba(16,14,11,0.05) 100%);
}
.hero-eurorack .hero-inner {
  position: relative;
  z-index: 1;
}
.hero-eurorack .hero-inner h1 {
  max-width: 18ch;
}
.hero-eurorack .hero-inner p.lead {
  max-width: 50ch;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  max-width: 14ch;
  margin: 0 0 18px;
}
.hero h1 em {
  display: block;
  font-style: normal; /* Space Grotesk hat keinen echten Kursiv-Schnitt */
  color: var(--accent);
  font-weight: 600;
}
.hero p.lead {
  max-width: 56ch;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 400;
  margin: 0 0 28px;
}
.hero-wave {
  margin-top: 40px;
  width: 100%;
  height: 36px;
  opacity: 0.7;
}

/* ============================================================
   Cards / Products
   ============================================================ */

.grid {
  display: grid;
  gap: 1px;
  background: var(--hairline);
  border: 0.5px solid var(--hairline);
  margin-top: 32px;
}
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.product {
  background: var(--bg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.18s ease;
  position: relative;
}
.product:hover { background: var(--surface); }

.product-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-cover svg { width: 100%; height: 100%; }

.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--za-track-label, 0.18em);
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  background: rgba(0,0,0,0.5);
  border: 0.5px solid var(--hairline-strong);
  color: var(--accent);
  backdrop-filter: blur(6px);
}

.product-cat {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--za-track-label, 0.18em);
  text-transform: uppercase;
  color: var(--text-faint);
}
.product-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}
.product-desc {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 0.5px solid var(--hairline-soft);
}
.product-price {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.product-price s { color: var(--text-faint); margin-right: 8px; }

/* Audio player chip inside product */
.preview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 0.5px solid var(--hairline-strong);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--za-track-label, 0.18em);
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.12s ease, color 0.12s ease;
}
.preview:hover { border-color: var(--accent-soft); color: var(--text); }
.preview.playing { border-color: var(--accent); color: var(--accent); }
.preview-btn {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 0.5px solid var(--hairline-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.preview.playing .preview-btn { border-color: var(--accent); background: var(--accent-glow); }
.preview-icon { width: 8px; height: 8px; fill: currentColor; }
.preview-wave {
  flex: 1;
  height: 18px;
  display: flex;
  gap: 2px;
  align-items: center;
  overflow: hidden;
}
.preview-wave span {
  flex: 1;
  background: var(--text-ghost);
  height: 30%;
  border-radius: 1px;
  transition: height 0.15s ease, background 0.15s ease;
}
.preview.playing .preview-wave span { background: var(--accent-soft); }

/* ============================================================
   Filter Tabs
   ============================================================ */

.tabs {
  display: flex;
  gap: 0;
  border-bottom: 0.5px solid var(--hairline);
  margin-top: 28px;
  flex-wrap: wrap;
}
.tab {
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  margin-bottom: -0.5px;
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--za-track-label, 0.18em);
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.12s ease, border-color 0.12s ease;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ============================================================
   Forms
   ============================================================ */

.form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-row label.label { margin-bottom: 4px; }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 0.5px solid var(--hairline-strong);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  border-radius: var(--radius);
  transition: border-color 0.12s ease, background 0.12s ease;
}
textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
input:hover, textarea:hover, select:hover { border-color: rgba(235,225,204,0.32); }
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  background: var(--surface-2);
}
input::placeholder, textarea::placeholder { color: var(--text-faint); font-weight: 300; }

select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
}
.checkbox input { width: auto; }

/* Newsletter inline form */
.newsletter {
  display: flex;
  gap: 0;
  margin-top: 20px;
  border: 0.5px solid var(--hairline-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  max-width: 480px;
}
.newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 14px 16px;
}
.newsletter input:focus { background: var(--surface-2); }
.newsletter button {
  border: none;
  background: var(--accent);
  color: var(--accent-fg);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 24px;
  cursor: pointer;
  transition: filter 0.12s ease;
}
.newsletter button:hover { filter: brightness(1.08); }

.newsletter-status {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  min-height: 18px;
}
.newsletter-status.ok { color: var(--accent); }

/* ============================================================
   Footer
   ============================================================ */

footer.site {
  border-top: 0.5px solid var(--hairline);
  padding: 56px 0 40px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--za-track-label, 0.18em);
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  margin: 0 0 18px;
}
.footer-col a {
  display: block;
  color: var(--text);
  font-size: 14px;
  padding: 5px 0;
}
.footer-col a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding: 24px 48px 0;
  border-top: 0.5px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   Editorial / About / Blog
   ============================================================ */

.prose { max-width: 64ch; }
.prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 400;
  margin: 0 0 18px;
}
.prose p strong { color: var(--text); font-weight: 400; }
.prose h3 {
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  margin: 36px 0 14px;
}
.prose blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 22px;
  border-left: 1px solid var(--accent-soft);
  font-style: italic;
  color: var(--text);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.split-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--za-track-label, 0.18em);
  text-transform: uppercase;
  color: var(--text-faint);
  line-height: 1.9;
}
.split-meta dt { color: var(--text-muted); margin-top: 10px; }
.split-meta dd { margin: 0 0 6px; color: var(--text); letter-spacing: 0; text-transform: none; font-size: 14px; }

/* Article list */
.posts { display: flex; flex-direction: column; }
.post-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 0.5px solid var(--hairline);
  align-items: baseline;
}
.post-row:last-child { border-bottom: none; }
.post-date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--za-track-label, 0.18em);
  text-transform: uppercase;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
}
.post-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
.post-title a { color: inherit; }
.post-title a:hover { color: var(--accent); }
.post-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   FAQ Accordion
   ============================================================ */

details.faq {
  border-bottom: 0.5px solid var(--hairline);
  padding: 18px 0;
}
details.faq summary {
  cursor: pointer;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.18s ease;
}
details.faq[open] summary::after { content: "−"; }
details.faq p {
  margin: 12px 0 4px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
  max-width: 64ch;
}

/* ============================================================
   Embeds
   ============================================================ */

.embed {
  position: relative;
  width: 100%;
  border: 0.5px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.embed.sc { padding-top: 166px; }
.embed.yt { padding-top: 56.25%; }
.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   Legal pages
   ============================================================ */

.legal-page .construction-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 28px clamp(24px, 6vw, 72px);
  border-bottom: 1px solid rgba(235, 225, 204, 0.12);
  background: var(--bg);
}
.legal-page .construction-header-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.legal-page .construction-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 0;
  text-decoration: none;
}
.legal-page .construction-brand-mark {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 0 12px rgba(200, 166, 98, 0.2));
}
.legal-page .construction-brand-wordmark {
  width: 205px;
  height: auto;
}
.legal-page .construction-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}
.legal-page .construction-menu a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 120ms ease, color 120ms ease;
}
.legal-page .construction-menu a:hover,
.legal-page .construction-menu a:focus-visible {
  border-color: var(--line-strong);
  color: var(--text);
  outline: none;
}
@media (max-width: 680px) {
  .legal-page .construction-header { padding: 20px 22px; }
  .legal-page .construction-header-inner { align-items: flex-start; flex-wrap: wrap; gap: 12px; }
  .legal-page .construction-brand-mark { width: 36px; height: 36px; }
  .legal-page .construction-brand-wordmark { width: 136px; }
  .legal-page .construction-menu { width: 100%; justify-content: flex-start; gap: 2px; }
  .legal-page .construction-menu a {
    min-height: 36px;
    padding: 0 9px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

.legal {
  padding: 28px 0 80px;
}
.legal h1 {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.legal h2 {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  margin: 48px 0 14px;
  padding-top: 24px;
  border-top: 0.5px solid var(--hairline);
}
.legal h3 {
  font-size: 14px;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--text);
  font-weight: 400;
  margin: 28px 0 10px;
}
.legal p, .legal li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}
.legal p { margin: 0 0 14px; max-width: 72ch; }
.legal ul, .legal ol { padding-left: 22px; max-width: 72ch; }
.legal ul li, .legal ol li { margin: 4px 0; }
.legal strong { color: var(--text); font-weight: 400; }
.legal a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent-soft); text-underline-offset: 3px; }
.legal .toc {
  display: flex; flex-wrap: wrap; gap: 6px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 24px 0 36px;
}
.legal .toc a { color: var(--text-muted); text-decoration: none; }
.legal .toc a:hover { color: var(--accent); }
.legal .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--za-track-label, 0.18em);
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 6px 0 0;
}
.legal .callout {
  margin: 18px 0;
  padding: 14px 18px;
  border-left: 1px solid var(--accent-soft);
  background: var(--accent-glow);
  border-radius: 0 2px 2px 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}
.legal address {
  font-style: normal;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 18px;
}

/* Checkout consent */
.checkout-consent {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
  padding: 12px;
  background: var(--surface);
  border: 0.5px solid var(--hairline);
  border-radius: var(--radius);
}
.checkout-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  line-height: 1.55;
  cursor: pointer;
}
.checkout-consent input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.checkout-consent a { color: var(--accent); }

/* Checkout consent dialog (FAGG § 18) */
dialog#checkout-consent-dialog {
  background: var(--surface);
  border: 0.5px solid var(--hairline-strong);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 540px;
  width: 92%;
  max-height: 88vh;
  overflow: hidden;
  /* Trennung über kräftige Haarlinie statt Schlagschatten (Design-System) */
  border-color: var(--hairline-strong);
}
dialog#checkout-consent-dialog::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}
.co-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: 88vh;
  overflow-y: auto;
}
.co-body h2 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
}
.co-body p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-muted); font-weight: 300; }
.co-product {
  padding: 12px 14px;
  background: var(--surface-2);
  border-left: 1px solid var(--accent-soft);
  font-size: 13px;
  color: var(--text);
}
.co-list { display: flex; flex-direction: column; gap: 12px; margin: 4px 0; }
.co-list label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 300;
  cursor: pointer;
}
.co-list label input {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.co-list label a { color: var(--accent); }
.co-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 0.5px solid var(--hairline);
  padding-top: 18px;
  margin-top: 4px;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 0.5px solid var(--hairline);
  margin-top: 32px;
}
.testimonial {
  background: var(--bg);
  padding: 36px 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.testimonial.alt { background: var(--surface); }
.testimonial-quote {
  font-size: 17px;
  line-height: 1.55;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 0;
  flex: 1;
}
.testimonial-quote::before {
  content: "\201C";
  display: inline;
  margin-right: 4px;
  color: var(--accent);
  font-size: 22px;
  font-style: normal;
  vertical-align: -2px;
}
.testimonial-quote::after {
  content: "\201D";
  display: inline;
  margin-left: 2px;
  color: var(--accent);
  font-size: 22px;
  font-style: normal;
  vertical-align: -2px;
}
.testimonial-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 0.5px solid var(--hairline);
  padding-top: 18px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0.5px solid var(--accent-soft);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testimonial-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text);
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}
.testimonial-role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--za-track-label, 0.18em);
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 4px;
  display: block;
}
.testimonial-stub {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warn);
  opacity: 0.55;
}
@media (max-width: 880px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* Privacy-friendly embed placeholder (2-click) */
.embed-placeholder {
  position: relative;
  width: 100%;
  border: 0.5px solid var(--hairline-strong);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 200px;
}
.embed-placeholder .ep-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--za-track-label, 0.18em);
  text-transform: uppercase;
  color: var(--accent);
}
.embed-placeholder p {
  margin: 0;
  max-width: 50ch;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}
.embed-placeholder a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent-soft); }

/* ============================================================
   Responsive
   ============================================================ */

/* Footer brand uses a slightly smaller logo */
.footer-col .brand-logo { height: 24px; }

@media (max-width: 880px) {
  .container, .container-narrow, .nav, .footer-grid, .footer-bottom, .hero-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav { padding: 20px 24px; }
  .brand-logo { height: 24px; }
  header.site .brand-logo { height: 60px; }
  .footer-col .brand-logo { height: 24px; }
  .hero { padding: 64px 0 48px; }
  .hero h1 { font-size: 38px; }
  .hero.hero-eurorack { padding: 80px 0 80px; }
  .hero-eurorack .hero-bg img {
    width: 150%;
    right: -30%;
    top: auto;
    bottom: 0;
    transform: none;
    opacity: 0.45;
  }
  .hero-eurorack .hero-bg-fade {
    background:
      linear-gradient(to bottom,
        var(--bg) 0%,
        rgba(16,14,11,0.85) 45%,
        rgba(16,14,11,0.5) 80%,
        rgba(16,14,11,0.2) 100%);
  }
  .grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 48px 0; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border-bottom: 0.5px solid var(--hairline);
    padding: 12px 24px 20px;
    gap: 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 0; border-bottom: 0.5px solid var(--hairline-soft); font-size: 16px; }
  .nav-links a:last-child { border-bottom: none; }
  .burger { display: inline-flex; }
}

@media (max-width: 540px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .post-row { grid-template-columns: 1fr; gap: 6px; }
  .hero h1 { font-size: 32px; }
}
