/* ══════════════════════════════════════════
   FFW HOLZHAUSEN — Stylesheet
   style.css
══════════════════════════════════════════ */

/* ── LOCAL FONTS ── */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/bebas-neue-v16-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-v13-latin-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-v13-latin-300italic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-v13-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-v13-latin-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-v13-latin-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-v13-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-v13-latin-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-v13-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-v13-latin-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── VARIABLES ── */
:root {
  --fire:      #CC0000;
  --fire-hot:  #FF2200;
  --ember:     #FF6B00;
  --black:     #080808;
  --ink:       #111111;
  --steel:     #1C1C1C;
  --ash:       #444444;
  --smoke:     #888888;
  --fog:       #BBBBBB;
  --white:     #F5F3EF;
  --pure:      #FFFFFF;
  --display:   'Bebas Neue', sans-serif;
  --cond:      'Barlow Condensed', sans-serif;
  --body:      'Barlow', sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: stretch; justify-content: space-between;
  height: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(8,8,8,0.93);
  backdrop-filter: blur(20px);
}
.nav-left {
  display: flex; align-items: center; gap: 14px; padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.nav-sigil { width: 32px; height: 32px; flex-shrink: 0; }
.nav-sigil svg { width: 100%; height: 100%; }
.nav-wordmark {
  font-family: var(--cond); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fog); line-height: 1.3;
}
.nav-wordmark strong { display: block; font-size: 1rem; color: var(--pure); letter-spacing: 0.08em; }
.nav-links { display: flex; align-items: stretch; list-style: none; flex: 1; justify-content: center; }
.nav-links li { display: flex; }
.nav-links a {
  font-family: var(--cond); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ash); text-decoration: none;
  padding: 0 15px; display: flex; align-items: center;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover { color: var(--pure); border-bottom-color: var(--fire); }
.nav-right { border-left: 1px solid rgba(255,255,255,0.06); }
.nav-cta {
  font-family: var(--cond); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--fire); color: var(--pure);
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: var(--fire-hot); }

/* ── HERO ── */
#hero {
  min-height: 100vh; background: var(--black);
  display: grid; grid-template-rows: 1fr auto;
  padding-top: 60px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(204,0,0,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(255,107,0,0.05) 0%, transparent 50%);
}
.hero-lines { position: absolute; inset: 0; overflow: hidden; opacity: 0.025; }
.hero-lines::before {
  content: ''; position: absolute; left: -5%; top: 0;
  width: 1px; height: 100%; background: var(--pure);
  box-shadow:
    110px 0 0 var(--pure), 220px 0 0 var(--pure), 330px 0 0 var(--pure),
    440px 0 0 var(--pure), 550px 0 0 var(--pure), 660px 0 0 var(--pure),
    770px 0 0 var(--pure), 880px 0 0 var(--pure), 990px 0 0 var(--pure),
    1100px 0 0 var(--pure), 1210px 0 0 var(--pure), 1320px 0 0 var(--pure);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 8vw; min-height: calc(100vh - 120px);
}
.hero-eyebrow {
  font-family: var(--cond); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--fire);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 1.75rem;
  opacity: 0; animation: sR .8s .3s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--fire); }
.hw { overflow: hidden; margin-bottom: 4px; }
.hero-hl {
  font-family: var(--display);
  font-size: clamp(4.5rem, 13vw, 14rem);
  line-height: 0.88; color: var(--pure); letter-spacing: -0.01em;
  display: block; opacity: 0;
  animation: sU .9s .5s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-hl.red    { color: var(--fire); }
.hero-hl.outline { -webkit-text-stroke: 1px rgba(255,255,255,0.22); color: transparent; }
.hero-hl.d2 { animation-delay: .65s; }
.hero-hl.d3 { animation-delay: .8s; }
.hero-sub-row {
  display: flex; align-items: flex-end; gap: 4rem; margin-top: 2.5rem;
  opacity: 0; animation: sU .9s .95s cubic-bezier(.16,1,.3,1) forwards;
  flex-wrap: wrap;
}
.hero-motto {
  font-family: var(--body); font-style: italic; font-weight: 300;
  font-size: 1.05rem; color: var(--smoke);
  max-width: 340px; line-height: 1.65;
  border-left: 2px solid var(--fire); padding-left: 1.2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  font-family: var(--cond); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; padding: 13px 30px;
  border: 1px solid transparent;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .25s;
}
.btn-fire { background: var(--fire); color: var(--pure); border-color: var(--fire); }
.btn-fire:hover { background: transparent; color: var(--fire); }
.btn-ghost { background: transparent; color: var(--fog); border-color: rgba(255,255,255,0.14); }
.btn-ghost:hover { border-color: var(--fog); color: var(--pure); }
.hero-strip {
  position: absolute; right: 0; top: 60px; bottom: 0;
  width: clamp(72px, 8vw, 110px); z-index: 2;
  border-left: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column;
}
.strip-s {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1rem 0.5rem;
  opacity: 0; animation: fI .6s forwards;
}
.strip-s:nth-child(1) { animation-delay: 1s; }
.strip-s:nth-child(2) { animation-delay: 1.15s; }
.strip-s:nth-child(3) { animation-delay: 1.3s; }
.strip-n { font-family: var(--display); font-size: 2rem; color: var(--pure); line-height: 1; text-align: center; }
.strip-n span { color: var(--fire); }
.strip-l {
  font-family: var(--cond); font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ash); text-align: center; margin-top: 4px; line-height: 1.3;
}
.hero-scroll {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  padding: 20px 8vw; border-top: 1px solid rgba(255,255,255,0.05);
  opacity: 0; animation: fI .8s 1.5s forwards;
}
.sc-lbl { font-family: var(--cond); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ash); }
.sc-line { flex: 1; height: 1px; background: rgba(255,255,255,0.07); max-width: 180px; }
.sc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fire); animation: pulse 2s infinite; }

/* ── SECTION BASE ── */
section { padding: 110px 8vw; position: relative; }
.s-label {
  font-family: var(--cond); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--fire);
  display: flex; align-items: center; gap: 12px; margin-bottom: 1.4rem;
}
.s-label::after { content: ''; display: block; width: 28px; height: 1px; background: var(--fire); }
.s-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: 0.92; letter-spacing: 0.01em; color: var(--pure);
}
.s-title em { color: var(--fire); font-style: normal; }

/* ── AKTUELLES ── */
#aktuelles { background: var(--ink); }
.news-layout {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.05); margin-top: 3.5rem;
}
.nc { background: var(--ink); padding: 2.5rem; position: relative; overflow: hidden; transition: background .3s; }
.nc:hover { background: var(--steel); }
.nc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background .3s; }
.nc:hover::before { background: var(--fire); }
.nc.feat { padding: 3rem; }
.nc-idx { font-family: var(--display); font-size: 3.5rem; color: rgba(255,255,255,0.035); position: absolute; top: .8rem; right: 1.5rem; line-height: 1; user-select: none; }
.nc-date { font-family: var(--cond); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fire); margin-bottom: 0.75rem; }
.nc-cat { display: inline-block; font-family: var(--cond); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.13); color: var(--fog); padding: 3px 10px; margin-bottom: 0.9rem; }
.nc h3 { font-family: var(--cond); font-size: 1.15rem; font-weight: 600; color: var(--pure); line-height: 1.3; margin-bottom: 0.7rem; }
.nc.feat h3 { font-size: 1.55rem; }
.nc p { font-size: 0.84rem; color: var(--smoke); line-height: 1.7; }
.nc-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--cond); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fire); text-decoration: none; margin-top: 1.4rem; transition: gap .2s; }
.nc-link:hover { gap: 14px; }
.nc-link::after { content: '→'; }

/* ── ÜBER UNS ── */
#ueber-uns { background: var(--black); overflow: hidden; }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 3.5rem; border: 1px solid rgba(255,255,255,0.06); }
.about-visual { position: relative; background: var(--steel); min-height: 480px; overflow: hidden; display: flex; align-items: flex-end; }
.about-vis-bg { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(204,0,0,0.14) 0%,transparent 50%), repeating-linear-gradient(45deg,transparent,transparent 20px,rgba(255,255,255,0.011) 20px,rgba(255,255,255,0.011) 21px); }
.about-stamp { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--display); font-size: clamp(5rem,10vw,9rem); color: rgba(255,255,255,0.035); white-space: nowrap; line-height: 1; user-select: none; }
.about-badge { position: relative; z-index: 2; padding: 2rem; background: linear-gradient(to top,rgba(0,0,0,0.92),transparent); width: 100%; }
.about-yr { font-family: var(--display); font-size: 3rem; color: var(--fire); line-height: 1; }
.about-yr-sub { font-family: var(--cond); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fog); margin-top: 3px; }
.about-content { padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,0.06); }
.about-content p { font-size: 0.92rem; color: var(--fog); line-height: 1.85; margin-bottom: 1.4rem; font-weight: 300; }
.about-content p strong { color: var(--pure); font-weight: 500; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.05); margin-top: 1rem; }
.pillar { padding: 1.2rem; background: var(--black); }
.pillar-icon { font-size: 1.1rem; margin-bottom: 0.4rem; }
.pillar-title { font-family: var(--cond); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pure); margin-bottom: 2px; }
.pillar-sub { font-size: 0.72rem; color: var(--ash); }

/* ── FAHRZEUGE ── */
#fahrzeuge { background: var(--ink); }
.fz-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr));
  gap: 1px; background: rgba(255,255,255,0.05); margin-top: 3.5rem;
}
.fz-card { background: var(--ink); display: flex; flex-direction: column; transition: background .3s; position: relative; overflow: hidden; }
.fz-card:hover { background: var(--steel); }
.fz-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background .3s; }
.fz-card:hover::after { background: var(--fire); }
.fz-card-img { width: 100%; aspect-ratio: 16/9; background: var(--steel); overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.fz-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.fz-card:hover .fz-card-img img { transform: scale(1.04); }
.fz-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--steel); position: relative; overflow: hidden; }
.fz-card-img-placeholder::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg,transparent,transparent 18px,rgba(255,255,255,0.012) 18px,rgba(255,255,255,0.012) 19px); }
.fz-img-label { font-family: var(--cond); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); position: relative; z-index: 1; }
.fz-card-badge { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: var(--cond); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; background: var(--fire); color: var(--pure); padding: 4px 10px; }
.fz-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.fz-card-tag { font-family: var(--cond); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fire); margin-bottom: 0.4rem; }
.fz-card-name { font-family: var(--display); font-size: 2.2rem; color: var(--pure); line-height: 1; letter-spacing: 0.02em; margin-bottom: 0.3rem; }
.fz-card-sub { font-family: var(--cond); font-size: 0.72rem; font-weight: 500; color: var(--smoke); letter-spacing: 0.06em; margin-bottom: 1rem; }
.fz-card-desc { font-size: 0.84rem; color: var(--smoke); line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.fz-card-specs { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.05); margin-top: auto; }
.fz-card-specs-wide { grid-template-columns: repeat(4,1fr); }
.fz-card-spec { background: var(--black); padding: 0.85rem 0.75rem; }
.fz-card-spec-k { font-family: var(--cond); font-size: 0.52rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ash); margin-bottom: 3px; }
.fz-card-spec-v { font-family: var(--cond); font-size: 0.88rem; font-weight: 600; color: var(--fog); letter-spacing: 0.03em; }

/* ── EINSÄTZE ── */
#einsaetze { background: var(--black); padding: 0; overflow: hidden; }
.stats-hero {
  padding: 80px 8vw;
  background: linear-gradient(105deg, var(--fire) 0%, var(--fire-hot) 40%, #880000 100%);
  position: relative; overflow: hidden;
}
.stats-hero::before { content: 'EINSÄTZE'; position: absolute; right: -1%; top: 50%; transform: translateY(-50%); font-family: var(--display); font-size: 20vw; color: rgba(0,0,0,0.11); line-height: 1; white-space: nowrap; pointer-events: none; }
.stats-top { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 3.5rem; }
.stats-title { font-family: var(--display); font-size: clamp(2.8rem,7vw,5.5rem); line-height: 0.9; color: var(--pure); }
.stats-sub { font-size: 0.88rem; color: rgba(255,255,255,0.58); max-width: 280px; line-height: 1.65; font-weight: 300; font-style: italic; }
.stats-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: rgba(0,0,0,0.2); }
.stat-box { background: rgba(0,0,0,0.14); padding: 2.5rem 1.5rem; text-align: center; backdrop-filter: blur(4px); }
.stat-big { font-family: var(--display); font-size: clamp(2.2rem,3.5vw,3.5rem); color: var(--pure); line-height: 1; }
.stat-lbl { font-family: var(--cond); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.52); margin-top: 0.5rem; line-height: 1.4; }

/* ── EINSATZLISTE ── */
.einsatz-list {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
  margin: 0 0 0 0;
}
.el-header {
  display: grid; grid-template-columns: 140px 80px 1fr;
  padding: 0.9rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--cond); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash);
}
.el-row {
  display: grid; grid-template-columns: 140px 80px 1fr;
  align-items: center;
  padding: 1.1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background .2s;
}
.el-row:last-child { border-bottom: none; }
.el-row:hover { background: rgba(255,255,255,0.022); }
.el-date {
  font-family: var(--cond); font-size: 0.82rem; font-weight: 500;
  color: var(--fog); letter-spacing: 0.04em;
}
.el-type {
  font-family: var(--cond); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; padding: 4px 9px;
  border: 1px solid; display: inline-flex; align-items: center;
  width: fit-content;
}
.el-type--b   { color: var(--fire); border-color: rgba(204,0,0,0.45); }
.el-type--thl { color: #4fa3e0; border-color: rgba(79,163,224,0.4); }
.el-type--abc { color: #e0b44f; border-color: rgba(224,180,79,0.4); }
.el-type--rd { color: #f66720; border-color: #f19d4866; }
.el-desc {
  font-size: 0.88rem; color: var(--smoke);
}

@media (max-width: 900px) {
  .el-header { display: none; }
  .el-row { grid-template-columns: auto 60px 1fr; gap: 0.75rem; padding: 1rem 1.25rem; }
  .el-date { font-size: 0.75rem; }
}

/* ── TERMINE ── */
#termine { background: var(--ink); }
.termine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.05); margin-top: 3.5rem; }
.t-card { background: var(--ink); padding: 1.75rem; display: grid; grid-template-columns: 68px 1fr auto; gap: 1.4rem; align-items: center; transition: background .25s; }
.t-card:hover { background: var(--steel); }
.t-date { background: var(--black); border: 1px solid rgba(255,255,255,0.06); padding: 9px 7px; text-align: center; }
.t-day { font-family: var(--display); font-size: 1.9rem; color: var(--pure); line-height: 1; }
.t-month { font-family: var(--cond); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fire); margin-top: 2px; }
.t-body h4 { font-family: var(--cond); font-size: 0.95rem; font-weight: 600; color: var(--pure); margin-bottom: 3px; letter-spacing: 0.02em; }
.t-body p { font-size: 0.78rem; color: var(--smoke); }
.t-pill { font-family: var(--cond); font-size: 0.52rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; white-space: nowrap; border: 1px solid; }
.pill-r { color: var(--fire); border-color: rgba(204,0,0,0.4); }
.pill-w { color: var(--fog); border-color: rgba(255,255,255,0.14); }

/* ── JUGENDFEUERWEHR ── */
#jugend { background: var(--black); }
.jugend-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 3.5rem; border: 1px solid rgba(255,255,255,0.06); }
.jugend-visual { background: var(--steel); min-height: 420px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.jugend-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(204,0,0,0.12) 0%,transparent 55%), repeating-linear-gradient(45deg,transparent,transparent 18px,rgba(255,255,255,0.01) 18px,rgba(255,255,255,0.01) 19px); }
.jugend-num { font-family: var(--display); font-size: clamp(8rem,14vw,13rem); color: rgba(255,255,255,0.04); line-height: 1; position: absolute; user-select: none; }
.jugend-badge { position: absolute; bottom: 2rem; left: 2rem; z-index: 2; }
.jugend-badge-num { font-family: var(--display); font-size: 3rem; color: var(--fire); line-height: 1; }
.jugend-badge-sub { font-family: var(--cond); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fog); margin-top: 3px; }
.jugend-content { padding: 3.5rem; border-left: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; justify-content: center; }
.jugend-content p { font-size: 0.92rem; color: var(--fog); line-height: 1.85; margin-bottom: 1.4rem; font-weight: 300; }
.jugend-content p strong { color: var(--pure); font-weight: 500; }
.jugend-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.05); margin-top: 1rem; }
.jh { padding: 1.2rem; background: var(--black); }
.jh-icon { font-size: 1.1rem; margin-bottom: 0.4rem; }
.jh-title { font-family: var(--cond); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pure); margin-bottom: 2px; }
.jh-sub { font-size: 0.72rem; color: var(--ash); }

/* ── KONTAKT & KARTE ── */
#kontakt { background: var(--ink); }
.map-full {
  margin-top: 3.5rem;
  position: relative;
  height: 460px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.map-full iframe {
  width: 100%; height: 100%;
  display: block;
  filter: grayscale(30%) brightness(0.9);
}
.map-external {
  position: absolute; bottom: 14px; right: 14px;
  font-family: var(--cond); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(8,8,8,0.85); color: var(--fog);
  padding: 7px 13px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  transition: color .2s, border-color .2s;
}
.map-external:hover { color: var(--pure); border-color: rgba(255,255,255,0.3); }

.kontakt-info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin-top: 1px;
}
.ki-box {
  background: var(--ink);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  transition: background .25s;
}
.ki-box:hover { background: var(--steel); }
.ki-box--emergency { background: rgba(204,0,0,0.08); }
.ki-box--emergency:hover { background: rgba(204,0,0,0.14); }
.ki-icon { font-size: 1.3rem; margin-bottom: 0.2rem; }
.ki-lbl {
  font-family: var(--cond); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash);
}
.ki-val {
  font-size: 0.88rem; color: var(--fog); line-height: 1.55;
}
.ki-val a { color: var(--fog); text-decoration: none; transition: color .2s; }
.ki-val a:hover { color: var(--fire); }
.ki-val--big {
  font-family: var(--display); font-size: 2.4rem;
  color: var(--fire); line-height: 1;
}

/* ── MITGLIED WERDEN ── */
#mitmachen { background: var(--black); }
.mitglied-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 0;
}
.mitglied-left {
  padding: 4rem 3.5rem;
  background: var(--fire);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.mitglied-left::before {
  content: 'FFW';
  position: absolute; right: -0.5rem; bottom: -1rem;
  font-family: var(--display); font-size: 9rem;
  color: rgba(0,0,0,0.12); line-height: 1; pointer-events: none;
}
.mitglied-left .s-label { color: rgba(255,255,255,0.7); }
.mitglied-left .s-label::after { background: rgba(255,255,255,0.4); }
.mitglied-left .s-title { color: var(--pure); }
.mitglied-left .s-title em { color: rgba(255,255,255,0.75); font-style: normal; }
.mitglied-right {
  padding: 4rem 3.5rem;
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; justify-content: center;
}
.mitglied-text {
  font-size: 0.95rem; color: var(--fog);
  line-height: 1.85; margin-bottom: 1.2rem; font-weight: 300;
}
.mitglied-btn { margin-top: 1rem; align-self: flex-start; }

@media (max-width: 900px) {
  .map-full          { height: 300px; }
  .kontakt-info-row  { grid-template-columns: 1fr 1fr; }
  .mitglied-wrap     { grid-template-columns: 1fr; }
  .mitglied-left     { padding: 3rem 2.5rem; }
  .mitglied-right    { padding: 3rem 2.5rem; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
}

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
.ft-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 0; padding: 4rem 8vw; border-bottom: 1px solid rgba(255,255,255,0.06); }
.fc { padding-right: 2.5rem; }
.fc:not(:first-child) { border-left: 1px solid rgba(255,255,255,0.04); padding-left: 2.5rem; padding-right: 0; }
.ft-brand { font-family: var(--display); font-size: 1.6rem; color: var(--pure); line-height: 1; margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.ft-brand em { color: var(--fire); font-style: normal; }
.ft-tag { font-size: 0.78rem; color: var(--ash); font-style: italic; margin-bottom: 1.4rem; }
.ft-notruf { font-family: var(--cond); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; background: var(--fire); color: var(--pure); padding: 7px 14px; display: inline-flex; align-items: center; gap: 8px; }
.ft-col-title { font-family: var(--cond); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--fire); margin-bottom: 1.1rem; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.ft-links a { font-size: 0.83rem; color: var(--ash); text-decoration: none; transition: color .2s; }
.ft-links a:hover { color: var(--pure); }
.ft-social { display: flex; gap: 0.45rem; margin-top: 1.4rem; }
.s-btn { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--ash); text-decoration: none; font-family: var(--cond); font-size: 0.68rem; font-weight: 600; transition: background .2s, color .2s, border-color .2s; }
.s-btn:hover { background: var(--fire); color: var(--pure); border-color: var(--fire); }
.ft-bot { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 8vw; flex-wrap: wrap; gap: 1rem; }
.ft-copy { font-family: var(--cond); font-size: 0.62rem; letter-spacing: 0.1em; color: var(--ash); }
.ft-legal { display: flex; gap: 2rem; list-style: none; }
.ft-legal a { font-family: var(--cond); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); text-decoration: none; transition: color .2s; }
.ft-legal a:hover { color: var(--fire); }

/* ── MODALS ── */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 2rem; opacity: 0; pointer-events: none; transition: opacity .3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--ink); border: 1px solid rgba(255,255,255,0.08); max-width: 740px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; transform: translateY(20px); transition: transform .3s; }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 2rem 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); position: sticky; top: 0; background: var(--ink); z-index: 1; }
.modal-title { font-family: var(--display); font-size: 2rem; color: var(--pure); letter-spacing: 0.03em; }
.modal-close { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1); background: transparent; color: var(--fog); font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.modal-close:hover { background: var(--fire); border-color: var(--fire); color: var(--pure); }
.modal-body { padding: 2.5rem; }
.modal-body h3 { font-family: var(--cond); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fire); margin: 2rem 0 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { font-size: 0.88rem; color: var(--fog); line-height: 1.8; margin-bottom: 0.75rem; }
.modal-body a { color: var(--fire); text-decoration: none; }
.modal-body a:hover { text-decoration: underline; }
.modal-body ul { padding-left: 1.5rem; margin-bottom: 0.75rem; }
.modal-body ul li { font-size: 0.88rem; color: var(--fog); line-height: 1.8; margin-bottom: 0.3rem; }
.modal-note { background: rgba(204,0,0,0.08); border: 1px solid rgba(204,0,0,0.2); padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 0.82rem; color: var(--fog); line-height: 1.7; }
.modal-note strong { color: var(--fire); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ── KEYFRAMES ── */
@keyframes sU    { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: none; } }
@keyframes sR    { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: none; } }
@keyframes fI    { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.35; transform:scale(.65); } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links    { display: none; }
  .hero-strip   { display: none; }
  section       { padding: 80px 6vw; }
  .hero-content { padding: 0 6vw; }
  .news-layout  { grid-template-columns: 1fr; }
  .about-wrap, .jugend-wrap, .kontakt-wrap { grid-template-columns: 1fr; }
  .k-left       { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stats-grid   { grid-template-columns: repeat(3,1fr); }
  .termine-grid { grid-template-columns: 1fr; }
  .ft-top       { grid-template-columns: 1fr 1fr; }
  .v-item       { grid-template-columns: 40px 1fr; }
  .v-idx, .v-since { display: none; }
  .hero-sub-row { flex-direction: column; gap: 2rem; }
  .f-row        { grid-template-columns: 1fr; }
  .fz-card-specs-wide { grid-template-columns: repeat(2,1fr); }
}
