/* ==========================================================================
   Jetzt mal ehrlich. — style.css
   Alle Styles zentral hier. Keine Inline-Styles in den PHP-Dateien.
   ========================================================================== */

:root {
  --c-bg:        #0a0a0c;
  --c-panel:     #16161a;
  --c-panel-2:   #1d1d22;
  --c-red:       #940102;   /* exakt der Rotton aus Logo und Social-Grafiken */
  --c-red-dark:  #6b0102;
  --c-red-glow:  rgba(148, 1, 2, 0.20);
  --c-paper:     #ede9e0;
  --c-white:     #f5f5f0;
  --c-text:      #d2d2d7;
  --c-grey:      #97979e;
  --c-grey-dim:  #62626a;
  --c-line:      #2a2a30;

  /* Plattformfarben — an einer Stelle gepflegt, gelten fuer die ganze Seite */
  --c-fb:        #1877F2;
  --c-fb-dark:   #0f5ec4;
  --c-tt:        #25F4EE;
  --c-tt-dark:   #12cfc9;
  --c-ig:        #E1306C;
  --c-ig-grad:   linear-gradient(45deg, #F58529 0%, #DD2A7B 45%, #8134AF 75%, #515BD4 100%);

  --f-display: 'Anton', Impact, 'Arial Black', sans-serif;
  --f-body:    'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', 'Courier New', monospace;

  --radius: 2px;
  --max-w: 1100px;
  --gutter: 24px;
}

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

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--c-white); text-decoration-color: var(--c-red); text-underline-offset: 3px; }
a:hover { color: var(--c-white); }

:focus-visible { outline: 2px solid var(--c-red); outline-offset: 3px; }

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

/* ==========================================================================
   Kopfzeile
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 12, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
}

.brand { display: block; line-height: 0; flex: 0 0 auto; }
.brand-logo { height: 34px; width: auto; }

.header-right { display: flex; align-items: center; gap: 20px; }

.main-nav { display: flex; align-items: center; gap: 24px; }

.main-nav a {
  color: var(--c-grey);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.main-nav a:hover { color: var(--c-white); }
.main-nav a[aria-current="page"] { color: var(--c-white); border-bottom-color: var(--c-red); }

/* Kanal-Icons in der Kopfzeile — auf jeder Breite sichtbar */

.header-social { display: flex; align-items: center; gap: 4px; }

.header-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: var(--c-grey);
  transition: color .15s ease, transform .12s ease;
}
.header-social-btn:hover { transform: translateY(-1px); }
.header-social-btn svg { width: 19px; height: 19px; display: block; }

/* --- Plattformfarben, zentral gepflegt --- */

.header-social-btn.is-facebook:hover  { color: var(--c-fb); }
.header-social-btn.is-tiktok:hover    { color: var(--c-tt); }
.header-social-btn.is-instagram:hover { color: var(--c-ig); }

.channel-card.is-facebook .channel-icon  { background: var(--c-fb); color: #fff; }
.channel-card.is-tiktok .channel-icon    { background: var(--c-tt); color: #000; }
.channel-card.is-instagram .channel-icon { background: var(--c-ig-grad); color: #fff; }

/* Unterstützen-Knopf, auf jeder Seite dauerhaft sichtbar */

.header-support {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--c-red);
  border: 1px solid var(--c-red);
  border-radius: var(--radius);
  color: var(--c-white);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s ease;
}
.header-support:hover { background: var(--c-red-dark); color: var(--c-white); }

/* Burger */

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px 2px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-135deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .header-right { gap: 10px; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--c-panel);
    border-bottom: 1px solid var(--c-line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .main-nav.open { max-height: 300px; }

  .main-nav > a {
    padding: 15px var(--gutter);
    border-bottom: 0;
    border-top: 1px solid var(--c-line);
  }
  .main-nav > a[aria-current="page"] {
    border-bottom: 0;
    box-shadow: inset 3px 0 0 var(--c-red);
  }
}

@media (max-width: 560px) {
  .brand-logo { height: 26px; }
  .header-social { gap: 5px; }
  .header-social-btn { width: 32px; height: 32px; }
  .header-social-btn svg { width: 16px; height: 16px; }
  .header-support { padding: 8px 12px; font-size: 0.8rem; }
  .site-header .wrap { gap: 10px; }
}

@media (max-width: 380px) {
  .brand-logo { height: 22px; }
  .header-support { padding: 7px 10px; font-size: 0.75rem; }
}

/* ==========================================================================
   Signatur: Riss-Optik (rein CSS, kein Bildmaterial)
   ========================================================================== */

.torn-divider {
  height: 20px;
  background: var(--c-red);
  margin: 52px 0;
  clip-path: polygon(
    0% 32%, 3% 2%, 9% 42%, 15% 6%, 21% 46%, 27% 11%, 33% 41%,
    39% 1%, 45% 36%, 51% 9%, 57% 46%, 63% 6%, 69% 41%,
    75% 1%, 81% 36%, 87% 11%, 93% 46%, 100% 16%,
    100% 100%, 0% 100%
  );
}

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

.hero {
  position: relative;
  padding: 76px 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--c-line);
  background:
    radial-gradient(ellipse 80% 60% at 78% -10%, var(--c-red-glow), transparent 60%),
    linear-gradient(180deg, #000 0%, var(--c-bg) 65%);
}

@media (max-width: 760px) { .hero { padding: 52px 0 44px; } }

.hero::before {
  content: "";
  position: absolute;
  inset: -25%;
  pointer-events: none;
  filter: blur(40px);
  background:
    radial-gradient(circle at 18% 28%, rgba(255,255,255,0.045), transparent 42%),
    radial-gradient(circle at 82% 12%, rgba(255,255,255,0.035), transparent 38%),
    radial-gradient(circle at 58% 74%, rgba(255,255,255,0.03), transparent 46%);
}

.hero-inner { position: relative; z-index: 1; max-width: 700px; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-red);
  margin: 0 0 16px;
}

.hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6.4vw, 4.3rem);
  line-height: 1.03;
  color: var(--c-white);
  margin: 0 0 22px;
}
.hero h1 .accent { color: var(--c-red); }

.lead {
  font-size: 1.14rem;
  color: var(--c-grey);
  max-width: 56ch;
  margin: 0 0 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--f-body);
  font-size: 0.97rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--c-red); color: var(--c-white); }
.btn-primary:hover { background: var(--c-red-dark); color: var(--c-white); }

.btn-ghost { background: transparent; color: var(--c-white); border-color: var(--c-line); }
.btn-ghost:hover { border-color: var(--c-red); color: var(--c-white); }

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

/* Kanal-Reihe im Hero */

.hero-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--c-line);
}

.hero-social-label {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-grey-dim);
  margin-right: 4px;
}

.hero-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background .15s ease, transform .12s ease;
}
.hero-social-btn:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-1px);
  color: var(--c-white);
}

/* Facebook ist der wichtigste Kanal und bekommt daher mehr Breite */
.hero-social-btn.is-facebook { flex: 2 1 200px; }
.hero-social-btn.is-tiktok,
.hero-social-btn.is-instagram { flex: 1 1 130px; }

.hero-social-icon { display: flex; }
.hero-social-icon svg { width: 17px; height: 17px; display: block; }

.hero-social-btn.is-facebook  .hero-social-icon { color: var(--c-fb); }
.hero-social-btn.is-tiktok    .hero-social-icon { color: var(--c-tt); }
.hero-social-btn.is-instagram .hero-social-icon { color: var(--c-ig); }

@media (max-width: 560px) {
  .hero-social-label { width: 100%; margin-bottom: 2px; }
  .hero-social-btn.is-facebook { flex: 1 1 100%; }
}

/* ==========================================================================
   Sektionen
   ========================================================================== */

section { padding: 84px 0; }
section.alt { background: var(--c-panel); }

.page-hero {
  padding: 68px 0 44px;
  border-bottom: 1px solid var(--c-line);
  background: linear-gradient(180deg, #000 0%, var(--c-bg) 100%);
}

.page-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 5.2vw, 3rem);
  line-height: 1.08;
  color: var(--c-white);
  margin: 0;
}

.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  line-height: 1.12;
  color: var(--c-white);
  margin: 0 0 14px;
}
.section-head p { color: var(--c-grey); margin: 0; }

.text-lead { font-size: 1.14rem; color: var(--c-text); margin: 0 0 32px; }

.plain-list { list-style: none; padding: 0; margin: 0 0 24px; }
.plain-list li { position: relative; padding-left: 22px; margin-bottom: 10px; }
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 2px;
  background: var(--c-red);
}

/* ==========================================================================
   Karten
   ========================================================================== */

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

@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color .15s ease;
}
.card:hover { border-color: #3a3a42; }
.card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.22rem;
  color: var(--c-white);
  margin: 0 0 12px;
}
.card p { color: var(--c-grey); font-size: 0.96rem; margin: 0; }

/* ==========================================================================
   Kanäle (Social) — prominent, da hier alle Beiträge erscheinen
   ========================================================================== */

.channels {
  background:
    radial-gradient(ellipse 70% 100% at 20% 0%, rgba(148,1,2,0.14), transparent 60%),
    var(--c-panel);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 820px) { .channel-grid { grid-template-columns: 1fr; } }

.channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .15s ease, transform .12s ease, background .15s ease;
}
.channel-card:hover { background: #0d0d10; transform: translateY(-2px); }

.channel-card.is-facebook:hover  { border-color: var(--c-fb); }
.channel-card.is-tiktok:hover    { border-color: var(--c-tt); }
.channel-card.is-instagram:hover { border-color: var(--c-ig); }

.channel-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
}
.channel-icon svg { width: 24px; height: 24px; display: block; }

.channel-body { flex: 1; min-width: 0; }

.channel-name {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.18rem;
  color: var(--c-white);
}
.channel-text { display: block; font-size: 0.88rem; color: var(--c-grey); margin-top: 3px; }

.channel-arrow {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--c-grey-dim);
  border-right: 2px solid var(--c-grey-dim);
  transform: rotate(45deg);
  transition: border-color .15s ease, transform .15s ease;
}
.channel-card:hover .channel-arrow { transform: rotate(45deg) translate(2px, -2px); }
.channel-card.is-facebook:hover  .channel-arrow { border-color: var(--c-fb); }
.channel-card.is-tiktok:hover    .channel-arrow { border-color: var(--c-tt); }
.channel-card.is-instagram:hover .channel-arrow { border-color: var(--c-ig); }

/* ==========================================================================
   Unterstützen
   ========================================================================== */

.support-box {
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-red);
  border-radius: var(--radius);
  padding: 28px 26px;
  margin-bottom: 18px;
}
.support-box.quiet { border-left-color: var(--c-line); }
.support-box h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--c-white);
  margin: 0 0 8px;
}
.support-box p { color: var(--c-grey); margin: 0 0 18px; }
.support-box p:last-child { margin-bottom: 0; }

/* Betragsraster (PayPal / Stripe)
   Drei feste Betraege nebeneinander, der Wunschbetrag darunter ueber die
   volle Breite — auch auf schmalen Schirmen, damit die Reihe nicht umbricht. */

.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.amount-grid > :nth-child(4) { grid-column: 1 / -1; }

.amount-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 6px;
  background: var(--c-panel-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-white);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s ease, border-color .15s ease;
}
.amount-btn:hover { background: var(--c-red); border-color: var(--c-red); color: var(--c-white); }

@media (max-width: 400px) {
  .amount-grid { gap: 8px; }
  .amount-btn { font-size: 0.9rem; padding: 12px 4px; }
}

/* Aufklappbare Blöcke */

.fold { margin: -28px -26px; }
.fold-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px;
  cursor: pointer;
  list-style: none;
}
.fold-head::-webkit-details-marker { display: none; }

.fold-title {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--c-white);
}
.fold-sub { display: block; color: var(--c-grey); font-size: 0.92rem; margin-top: 4px; }

.fold-arrow {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--c-grey);
  border-bottom: 2px solid var(--c-grey);
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-right: 4px;
}
.fold[open] .fold-arrow { transform: rotate(-135deg); }

.fold-body { padding: 0 26px 26px; }

/* Kopierfelder */

.field-label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-grey-dim);
  margin: 20px 0 7px;
}
.fold-body > .field-label:first-child { margin-top: 0; }

.copy-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 10px 10px 10px 14px;
}

.copy-value { flex: 1; min-width: 0; color: var(--c-white); font-size: 0.96rem; align-self: center; }
.copy-value.mono { font-family: var(--f-mono); font-size: 0.88rem; }
.copy-value.break { word-break: break-all; }

.copy-btn {
  flex: 0 0 auto;
  padding: 7px 14px;
  background: var(--c-panel-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-grey);
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.copy-btn:hover { color: var(--c-white); border-color: var(--c-red); }
.copy-btn.done { background: var(--c-red); border-color: var(--c-red); color: var(--c-white); }

.hint { font-size: 0.84rem; color: var(--c-grey-dim); margin: 8px 0 0; }
.warn {
  font-size: 0.84rem;
  color: var(--c-grey);
  border-left: 2px solid var(--c-red);
  padding-left: 14px;
  margin: 18px 0 0;
}

/* Krypto-Auswahl */

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

.coin-btn {
  padding: 13px 8px;
  background: var(--c-panel-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-white);
  font-family: var(--f-mono);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.coin-btn:hover { border-color: var(--c-red); }
.coin-btn.active { background: var(--c-red); border-color: var(--c-red); }

.coin-panel { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--c-line); }

.coin-qr {
  width: 168px;
  height: 168px;
  background: #fff;
  padding: 10px;
  border-radius: var(--radius);
  margin: 0 0 22px;
}

.coin-net { color: var(--c-white); font-size: 0.96rem; margin: 0; }

.mail-link { font-family: var(--f-mono); font-size: 1rem; }

/* ==========================================================================
   Rechtstexte (zentrale rechtliches-common.php)
   ========================================================================== */

.legal { padding-top: 56px; }

.legal .content-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.legal .content-container h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: var(--c-white);
  margin: 0 0 28px;
  padding-top: 8px;
  scroll-margin-top: 90px;
}

.legal .content-container h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--c-white);
  margin: 38px 0 10px;
}

.legal .content-container p { color: var(--c-text); margin: 0 0 14px; }
.legal .content-container strong { color: var(--c-white); font-weight: 700; }
.legal .content-container a { color: var(--c-white); word-break: break-word; }

.legal .content-container .box {
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-red);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 0 0 22px;
  font-family: var(--f-mono);
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--c-text);
}

.legal .content-container hr {
  border: 0;
  border-top: 1px solid var(--c-line);
  margin: 56px 0;
}

/* ==========================================================================
   Fußzeile
   ========================================================================== */

.site-footer {
  background: #000;
  border-top: 1px solid var(--c-line);
  padding: 0 0 30px;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 30px 0;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 40px;
}

.footer-cta-text {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--c-white);
  margin: 0;
}

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background .15s ease;
}
.footer-social-btn:hover { background: var(--c-panel-2); color: var(--c-white); }

.footer-social-btn.is-facebook { flex: 2 1 190px; }
.footer-social-btn.is-tiktok,
.footer-social-btn.is-instagram { flex: 1 1 125px; }

.footer-social-icon { display: flex; }
.footer-social-icon svg { width: 17px; height: 17px; display: block; }

.footer-social-btn.is-facebook  .footer-social-icon { color: var(--c-fb); }
.footer-social-btn.is-tiktok    .footer-social-icon { color: var(--c-tt); }
.footer-social-btn.is-instagram .footer-social-icon { color: var(--c-ig); }

@media (max-width: 560px) {
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .footer-social { width: 100%; }
  .footer-social-btn.is-facebook { flex: 1 1 100%; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 34px;
}

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { height: 30px; width: auto; margin-bottom: 14px; }
.footer-claim { color: var(--c-grey-dim); font-size: 0.9rem; max-width: 34ch; margin: 0; }

.footer-grid h4 {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-grey-dim);
  margin: 0 0 14px;
}

.footer-grid a {
  display: block;
  color: var(--c-grey);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 9px;
}
.footer-grid a:hover { color: var(--c-white); }

.footer-bottom {
  border-top: 1px solid var(--c-line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--c-grey-dim);
}

/* ==========================================================================
   Bewegungsreduktion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
