/* ============================================================
   JSG Moritzberg – Stylesheet
   Editorial-sportlich: Anthrazit/Schwarz, Grau, Weiss, Signal-Gruen
   ============================================================ */

:root {
  --ink:      #141414;
  --ink-2:    #1c1c1c;
  --ink-3:    #2b2b2b;
  --gray:     #6b7280;
  --gray-2:   #9ca3af;
  --line:     #e6e6e3;
  --paper:    #ffffff;
  --paper-2:  #f5f6f3;
  --lime:     #c8ff00;
  --lime-deep:#b2e600;

  --display: 'Anton', 'Arial Narrow', sans-serif;
  --body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --wrap: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --shadow: 0 18px 50px -20px rgba(20,20,20,.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; }

h1, h2, h3 { margin: 0; line-height: 1.02; font-weight: 400; }

.display {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .01em;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }

.label {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gray);
}
.label--lime { color: var(--ink); }
.label--lime::before {
  content: "";
  display: inline-block;
  width: 26px; height: 3px;
  background: var(--lime);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-3px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--body);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .85rem 1.5rem;
  border-radius: 8px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: var(--lime-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost-invert { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-invert:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: #fff;
}
.brand img, .brand svg { width: 44px; height: 44px; }
.brand-word {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: .04em;
  line-height: 1;
}
.brand-word small {
  display: block;
  font-family: var(--body);
  font-weight: 700;
  font-size: .58rem;
  letter-spacing: .3em;
  color: var(--lime);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  text-decoration: none;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .3rem 0;
  position: relative;
  transition: color .15s ease;
}
.nav a:hover { color: #fff; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--lime);
  transition: width .2s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: #fff; }
.nav .btn { padding: .6rem 1.1rem; }
.nav a.btn--lime, .nav a.btn--lime:hover { color: var(--ink); }

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .5rem;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 880px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ink);
    padding: 1rem var(--pad) 2rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transform: translateY(-120%);
    transition: transform .3s ease;
  }
  .nav-open .nav { transform: translateY(0); }
  .nav a { width: 100%; padding: .9rem 0; font-size: 1.15rem; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 1rem; width: 100%; justify-content: center; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  /* grosser, dezenter Fussball als Hintergrundmotiv */
  content: "";
  position: absolute;
  right: -4%;
  bottom: -10%;
  width: min(46vw, 560px);
  aspect-ratio: 1 / 1;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20200%20200%27%3E%3Cdefs%3E%3CclipPath%20id%3D%27bc%27%3E%3Ccircle%20cx%3D%27100%27%20cy%3D%27100%27%20r%3D%2792%27%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27white%27%20stroke-width%3D%272%27%20stroke-linejoin%3D%27round%27%20opacity%3D%27.16%27%20clip-path%3D%27url%28%23bc%29%27%3E%3Cpolygon%20points%3D%27100.0%2C68.3%20130.1%2C90.2%20118.6%2C125.6%2081.4%2C125.6%2069.9%2C90.2%27%2F%3E%3Cpolygon%20points%3D%27100.0%2C68.3%20130.1%2C90.2%20164.1%2C75.1%20168.0%2C38.1%20137.9%2C16.2%20103.9%2C31.3%27%2F%3E%3Cpolygon%20points%3D%27130.1%2C90.2%20118.6%2C125.6%20143.5%2C153.3%20179.9%2C145.5%20191.4%2C110.1%20166.5%2C82.5%27%2F%3E%3Cpolygon%20points%3D%27118.6%2C125.6%2081.4%2C125.6%2062.8%2C157.9%2081.4%2C190.1%20118.6%2C190.1%20137.2%2C157.9%27%2F%3E%3Cpolygon%20points%3D%2781.4%2C125.6%2069.9%2C90.2%2033.5%2C82.5%208.6%2C110.1%2020.1%2C145.5%2056.5%2C153.3%27%2F%3E%3Cpolygon%20points%3D%2769.9%2C90.2%20100.0%2C68.3%2096.1%2C31.3%2062.1%2C16.2%2032.0%2C38.1%2035.9%2C75.1%27%2F%3E%3C%2Fg%3E%3Ccircle%20cx%3D%27100%27%20cy%3D%27100%27%20r%3D%2792%27%20fill%3D%27none%27%20stroke%3D%27white%27%20stroke-width%3D%272%27%20opacity%3D%27.16%27%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 11vw, 8rem);
  max-width: 1140px;
}
.hero h1 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.9rem, 8vw, 7.4rem);
  line-height: .92;
  letter-spacing: .005em;
  margin-top: 1.4rem;
}
.hero h1 .lime { color: var(--lime); }
.hero p.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255,255,255,.72);
  max-width: 46ch;
  margin: 1.6rem 0 2.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* Hero mit Foto (Startseite) */
.hero--photo { min-height: 620px; display: flex; align-items: center; }
.hero-photo-frame {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 52%;
  z-index: 0;
}
.hero-photo-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(20,20,20,0) 18%);
  z-index: 1;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero--photo .hero-inner { padding-block: clamp(2.6rem, 8vw, 5rem); width: 100%; }
.hero-content { max-width: 480px; position: relative; z-index: 1; }
.hero--photo .hero-content h1 { margin-top: 1rem; font-size: clamp(2.6rem, 4.4vw, 4.6rem); }
.hero-bullet {
  display: flex; align-items: center; gap: .65rem;
  margin-top: 1rem;
  font-size: clamp(.85rem, 2.6vw, 1rem);
  color: rgba(255,255,255,.85);
}
.hero-bullet svg { flex: none; width: 22px; height: 22px; color: var(--lime); }
.hero-bullet .lime { color: var(--lime); font-weight: 800; }
.hero-actions { margin-top: 1.6rem; }
.hero-bullet--tag { margin-top: 1.6rem; font-size: .85rem; color: rgba(255,255,255,.65); }
.hero-bullet--tag svg { width: 20px; height: 20px; }

@media (max-width: 720px) {
  .hero--photo { min-height: 0; flex-direction: column; align-items: stretch; }
  .hero-photo-frame { position: relative; top: auto; right: auto; bottom: auto; width: auto; height: 42vh; min-height: 240px; order: -1; }
  .hero--photo .hero-inner { padding-block: 1.8rem 3rem; }
  .hero-content { max-width: none; }
  .hero--photo .hero-content h1 { font-size: clamp(2.2rem, 11vw, 3.6rem); }
}

/* Warum JSG Moritzberg */
.rule-center { display: block; width: 56px; height: 4px; background: var(--lime); border-radius: 2px; margin: 1rem auto 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.4rem; }
.feature-card { text-align: center; padding: 0 1.2rem; }
.feature-card + .feature-card { border-left: 1px solid var(--line); }
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 1.2rem;
  border: 2px solid var(--lime-deep); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime-deep);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .03em; color: var(--ink); }
.feature-card p { color: var(--gray); margin-top: .6rem; font-size: .95rem; }
@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-card + .feature-card { border-left: none; border-top: 1px solid var(--line); padding-top: 2rem; }
}

/* Kennzahlen-Leiste */
.stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border-top: 1px solid rgba(255,255,255,.1);
}
.stats .stat { background: var(--ink); padding: 1.6rem var(--pad); }
.stat .num { font-family: var(--display); font-size: clamp(2rem, 5vw, 3rem); color: var(--lime); line-height: 1; }
.stat .cap { color: rgba(255,255,255,.6); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-top: .5rem; }

/* ============================================================
   Sections
   ============================================================ */
.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section--alt { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #fff; }

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: .98;
  margin-top: .8rem;
}
.section-head p { color: var(--gray); font-size: 1.08rem; margin-top: 1rem; }
.section--ink .section-head p { color: rgba(255,255,255,.65); }

/* Vereine / Feature-Grid */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.club-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.club-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.club-card { padding: 0 0 1.75rem; overflow: hidden; }
.club-card .club-body { padding: 1.75rem 1.75rem 0; }
.club-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.club-card .club-mark {
  width: 56px; height: 56px; border-radius: 10px;
  background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; padding: 6px;
  overflow: hidden;
}
.club-card .club-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.club-card h3 { font-size: 1.3rem; font-weight: 800; font-family: var(--body); letter-spacing: -.01em; }
.club-card p { color: var(--gray); margin: .6rem 0 0; font-size: .98rem; }

/* Teaser-Kacheln (Start) */
.teasers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.teaser {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  background: var(--ink-2);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 5rem;
  overflow: hidden;
  min-height: 220px;
  transition: transform .2s ease;
}
.teaser:hover { transform: translateY(-4px); }
.teaser .t-index {
  font-family: var(--display);
  font-size: 4.5rem;
  color: rgba(255,255,255,.08);
  position: absolute;
  right: 1rem; top: .2rem;
  line-height: 1;
}
.teaser h3 { font-family: var(--body); font-weight: 800; font-size: 1.35rem; position: relative; }
.teaser p { color: rgba(255,255,255,.6); font-size: .95rem; margin: .6rem 0 0; position: relative; }
.teaser .go {
  position: absolute; left: 1.75rem; bottom: 1.6rem;
  color: var(--lime); font-weight: 800; font-size: .95rem;
  display: inline-flex; align-items: center; gap: .4rem;
}
.teaser:hover .go .arrow { transform: translateX(4px); }
.teaser .arrow { transition: transform .15s ease; }

/* ============================================================
   Teams
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.1rem;
}
.team-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.7rem;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.team-card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--lime);
  transform: scaleY(0); transform-origin: top;
  transition: transform .25s ease;
}
.team-card:hover::before { transform: scaleY(1); }
.team-card .jersey {
  font-family: var(--display);
  font-size: 4.6rem;
  line-height: .8;
  color: var(--paper-2);
  -webkit-text-stroke: 2px var(--line);
  position: absolute;
  right: .8rem; top: .3rem;
  transition: color .2s ease, -webkit-text-stroke-color .2s ease;
}
.team-card:hover .jersey { color: #fbffe6; -webkit-text-stroke-color: var(--lime); }
.team-card .age { font-family: var(--display); font-size: 1.7rem; text-transform: uppercase; position: relative; }
.team-card .role { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gray); margin-top: 1.3rem; }
.team-card .person { font-weight: 800; font-size: 1.15rem; margin-top: .2rem; }
.team-card .phone-display {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .35rem;
  font-size: .95rem; font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.team-card .phone-display svg { width: 14px; height: 14px; color: var(--gray-2); flex: none; }
.team-card .phone-display:hover { color: var(--lime-deep); }
.team-card .contact { margin-top: 1rem; display: flex; flex-direction: column; gap: .35rem; }
.team-card .contact a {
  text-decoration: none;
  color: var(--ink);
  font-size: .95rem;
  display: inline-flex; align-items: center; gap: .55rem;
  width: fit-content;
}
.team-card .contact a:hover { color: var(--lime-deep); }
.team-card .contact svg { width: 16px; height: 16px; color: var(--gray); flex: none; }
.team-card .contact .muted { color: var(--gray-2); font-size: .9rem; }

/* ============================================================
   Info-Rows (Training / generisch)
   ============================================================ */
.notice {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--lime);
  border-radius: 10px;
  padding: 1.3rem 1.5rem;
}
.notice .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); margin-top: .5rem; flex: none; }
.notice h3 { font-family: var(--body); font-weight: 800; font-size: 1.1rem; }
.notice p { margin: .3rem 0 0; color: var(--gray); }

.schedule { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.schedule th, .schedule td { text-align: left; padding: .95rem 1rem; border-bottom: 1px solid var(--line); }
.schedule th { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gray); font-weight: 700; }
.schedule td:first-child { font-family: var(--display); text-transform: uppercase; font-size: 1.15rem; }
.schedule .tbd { color: var(--gray-2); }

/* ============================================================
   Team-Karten 2.0 (Avatar, Jahrgang, Call/WhatsApp, Training)
   ============================================================ */
.team-card { padding-top: 1.8rem; }
.team-head { display: flex; align-items: flex-start; gap: 1rem; }
.team-avatar {
  flex: none;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 2px solid var(--paper-2);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease;
}
.team-card:hover .team-avatar { border-color: var(--lime); }
.team-avatar svg { width: 78%; height: 78%; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name-row { padding-top: .1rem; }
.team-name-row .age { font-family: var(--display); font-size: 1.5rem; text-transform: uppercase; line-height: 1; }
.jahrgang-badge {
  display: inline-block;
  margin-top: .85rem;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  background: var(--ink); color: var(--lime);
  padding: .22rem .55rem; border-radius: 5px;
}
.team-card .jersey { top: .1rem; }

.contact-actions { display: flex; gap: .6rem; margin-top: 1.1rem; }
.contact-actions a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .6rem .5rem;
  border-radius: 8px;
  font-size: .85rem; font-weight: 700;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  transition: background .15s ease, color .15s ease;
}
.contact-actions a svg { width: 15px; height: 15px; flex: none; }
.contact-actions a.call:hover { background: var(--ink); color: #fff; }
.contact-actions a.whatsapp { border-color: #25d366; color: #128c3e; }
.contact-actions a.whatsapp:hover { background: #25d366; color: #fff; }

.team-training {
  margin-top: 1.1rem;
  padding-top: .9rem;
  border-top: 1px dashed var(--line);
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .85rem; color: var(--gray);
}
.team-training svg { width: 16px; height: 16px; flex: none; margin-top: .1rem; color: var(--gray-2); }
.team-training .tbd { color: var(--gray-2); font-style: italic; }
.team-card { scroll-margin-top: 100px; }
.team-card--coordinator { border-color: var(--lime-deep); background: var(--paper-2); }
.team-card--coordinator::before { transform: scaleY(1); }

.person-secondary {
  margin-top: .5rem;
  font-size: .85rem; color: var(--gray);
}
.person-secondary a { color: var(--gray); text-decoration: none; font-weight: 700; }
.person-secondary a:hover { color: var(--lime-deep); }

.tag {
  display: inline-block;
  font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: var(--lime); color: var(--ink);
  padding: .18rem .5rem; border-radius: 5px;
  margin-left: .4rem; vertical-align: middle;
}
.tag--muted { background: var(--paper-2); color: var(--gray); border: 1px solid var(--line); }


/* ============================================================
   BFV-Team-App Hinweis
   ============================================================ */
.app-notice {
  display: flex; gap: 1.3rem; align-items: center;
  background: var(--ink); color: #fff;
  border-radius: var(--radius);
  padding: 1.8rem clamp(1.3rem, 4vw, 2.2rem);
  flex-wrap: wrap;
}
.app-notice .app-icon {
  flex: none; width: 52px; height: 52px; border-radius: 12px;
  background: var(--lime); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.app-notice .app-icon svg { width: 28px; height: 28px; }
.app-notice .app-body { flex: 1; min-width: 220px; }
.app-notice h3 { font-family: var(--body); font-weight: 800; font-size: 1.1rem; }
.app-notice p { color: rgba(255,255,255,.7); font-size: .92rem; margin: .4rem 0 0; max-width: 62ch; }
.app-notice .app-links { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .3rem; }

/* ============================================================
   Philosophie: Zitate
   ============================================================ */
.quote-block {
  border-left: 4px solid var(--lime);
  padding: .3rem 0 .3rem 1.4rem;
  margin: 2rem 0;
}
.quote-block p.quote-text {
  font-family: var(--display);
  text-transform: none;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.quote-block .quote-translate { color: var(--gray); font-size: .95rem; margin-top: .6rem; }
.quote-block .quote-source { color: var(--gray-2); font-size: .82rem; margin-top: .8rem; letter-spacing: .02em; }
.section--ink .quote-block { border-left-color: var(--lime); }
.section--ink .quote-block p.quote-text { color: #fff; }
.section--ink .quote-block .quote-translate { color: rgba(255,255,255,.65); }
.section--ink .quote-block .quote-source { color: rgba(255,255,255,.45); }

/* ============================================================
   Sponsoren
   ============================================================ */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.sponsor-card {
  display: flex; align-items: center; gap: .95rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.sponsor-card:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-2px); }
.sponsor-mono {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 9px;
  background: var(--ink); color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 1.05rem; letter-spacing: .02em;
}
.sponsor-card .name { font-weight: 800; font-size: .95rem; min-width: 0; }
.sponsor-card .addr { color: var(--gray); font-size: .82rem; margin-top: .2rem; }

@media (max-width: 560px) {
  .contact-actions { flex-direction: column; }
}

/* ============================================================
   Values / Über uns
   ============================================================ */
.values { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.2rem; margin-top: 1rem; }
.value { padding: 1.8rem; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.value .v-num { font-family: var(--display); color: var(--lime); font-size: 1.4rem; }
.value .value-top { display: flex; align-items: center; justify-content: space-between; }
.value .v-swatch { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.25); flex: none; }
.value h3 { font-family: var(--body); font-weight: 800; font-size: 1.2rem; margin-top: .6rem; }
.value p { color: rgba(255,255,255,.62); margin-top: .5rem; font-size: .96rem; }
.value p.v-colorname { font-family: var(--display); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 1rem; }
.value p.v-rule { font-weight: 700; color: #fff; margin-top: .4rem; font-size: 1rem; }
.value p.v-meaning { margin-top: .6rem; }

/* Split (Text + Fakten) */
.split-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.photo-frame { width: 100%; height: 100%; min-height: 260px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.prose p { color: var(--gray); margin: 0 0 1.1rem; }
.prose p.big { font-size: 1.25rem; color: var(--ink); line-height: 1.5; }
.factbox { background: var(--ink); color:#fff; border-radius: var(--radius); padding: 2rem; }
.factbox dl { margin: 0; display: grid; gap: 1.1rem; }
.factbox dt { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--lime); }
.factbox dd { margin: .25rem 0 0; font-weight: 700; font-size: 1.05rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; background: var(--paper);
}
.contact-card h3 { font-family: var(--body); font-weight: 800; font-size: 1.25rem; }
.contact-card a { color: var(--ink); font-weight: 700; text-decoration: none; }
.contact-card a:hover { color: var(--lime-deep); }

.cta-band { background: var(--lime); color: var(--ink); border-radius: var(--radius); padding: clamp(2rem,5vw,3.2rem); text-align: center; }
.cta-band h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.8rem,5vw,3rem); }
.cta-band p { max-width: 44ch; margin: .8rem auto 1.6rem; font-weight: 500; }
.cta-band .btn--dark { background: var(--ink); color: #fff; }
.cta-band .btn--dark:hover { background: #000; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding-block: 3.5rem 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; color:#fff; text-decoration:none; }
.footer-brand img, .footer-brand svg { width: 42px; height: 42px; }
.footer-brand .brand-word { font-size: 1.2rem; }
.footer-col h4 { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--lime); font-weight: 700; margin: 0 0 1rem; }
.footer-col a { display: block; text-decoration: none; color: rgba(255,255,255,.7); padding: .3rem 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Page intro (Unterseiten)
   ============================================================ */
.page-intro { background: var(--ink); color: #fff; padding-block: clamp(3rem,7vw,5rem); position: relative; overflow: hidden; }
.page-intro::after {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 4px 4px; pointer-events:none;
}
.page-intro .inner { position: relative; z-index:1; max-width: 760px; }
.page-intro h1 { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.4rem,7vw,4.6rem); line-height:.95; margin-top: 1rem; }
.page-intro p { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-top: 1.1rem; max-width: 52ch; }
.crumbs { font-size: .85rem; color: rgba(255,255,255,.55); }
.crumbs a { color: rgba(255,255,255,.75); text-decoration: none; }
.crumbs a:hover { color: var(--lime); }

/* ---------- Reveal on load ---------- */
.reveal { opacity: 0; transform: translateY(16px); animation: rise .7s ease forwards; }
.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .16s; }
.reveal:nth-child(4) { animation-delay: .24s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .trio, .teasers, .values, .contact-grid { grid-template-columns: 1fr; }
  .split-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .brand-word { font-size: 1.15rem; }
}
