/* ============================================================
   KAMPFSPORT AKADEMIE RAIN — Design System
   Fight-Poster-Ästhetik: Tiefschwarz · Blutrot · Grain · Stempel
   ============================================================ */

/* ---- Tokens ---------------------------------------------- */
:root {
  --ink:        #0a0a0c;   /* Basis-Schwarz, leicht kühl */
  --ink-2:      #101014;   /* zweite Ebene */
  --panel:      #16161b;   /* Karten/Panels */
  --panel-2:    #1d1d23;   /* Hover-Panel */
  --bone:       #ece6dc;   /* gebrochenes Weiß (Zeitungs-Ton) */
  --bone-dim:   #a8a39a;   /* gedämpfter Text */
  --ash:        #6f6f79;   /* Hilfstext */
  --red:        #e21414;   /* Blutrot, der Punch */
  --red-bright: #ff2a2a;   /* Glow/Highlight */
  --blood:      #8a0d10;   /* tiefes Oxblood */
  --line:       #26262d;   /* Trennlinien/Border */
  --tape:       #e9c200;   /* Warnband-Gelb, sparsam */

  --maxw: 1200px;
  --pad: clamp(1.1rem, 4vw, 2.5rem);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-cond:    'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, monospace;
}

/* ---- Reset ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: .005em;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }

/* ---- Körnung / Grain overlay ----------------------------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* sanfter roter Schein im Hintergrund */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 80% -5%, rgba(226,20,20,.18), transparent 60%),
    radial-gradient(50% 40% at 0% 100%, rgba(138,13,16,.16), transparent 60%);
}

/* ---- Layout-Helfer --------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3.5rem, 9vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }
.section--alt { background: linear-gradient(180deg, var(--ink-2), var(--ink)); }

/* ---- Typografie ------------------------------------------ */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: .9;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  letter-spacing: .005em;
  margin-top: .6rem;
}
.section-title .out {
  -webkit-text-stroke: 1.5px var(--bone);
  color: transparent;
}
.lead { color: var(--bone-dim); font-size: clamp(1rem, 2.2vw, 1.18rem); max-width: 60ch; }
.text-red { color: var(--red); }

/* ---- Buttons --------------------------------------------- */
.btn {
  --bg: var(--red);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .92rem;
  padding: .95rem 1.7rem;
  background: var(--bg);
  color: var(--fg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
  position: relative;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 0 -4px var(--blood); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  --bg: transparent; --fg: var(--bone);
  border: 2px solid var(--line);
}
.btn--ghost:hover { --fg: #fff; border-color: var(--red); box-shadow: none; }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---- Stempel-Badge --------------------------------------- */
.stamp {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--red-bright);
  border: 3px solid var(--red);
  padding: .5rem 1rem;
  display: inline-block;
  transform: rotate(-7deg);
  background: rgba(226,20,20,.07);
  line-height: 1.05;
  font-size: 1rem;
  box-shadow: inset 0 0 0 1px rgba(226,20,20,.4);
}

/* ---- Marquee / Ticker ------------------------------------ */
.marquee {
  background: var(--red);
  color: #fff;
  border-block: 3px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding-block: .55rem;
  transform: rotate(-1deg) scale(1.03);
  margin-block: -.4rem;
}
.marquee__track {
  display: inline-block;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: .04em;
}
.marquee__track span { padding-inline: 1.2rem; }
.marquee__track span::after { content: "✕"; color: var(--ink); margin-left: 2.4rem; font-size: .8em; vertical-align: middle; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,12,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .85rem;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark {
  width: 38px; height: 38px;
  flex: none;
  background: var(--red);
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  box-shadow: 0 0 22px rgba(226,20,20,.5);
}
.brand__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.18rem;
  line-height: .82;
  letter-spacing: .02em;
}
.brand__name small {
  display: block;
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .42em;
  color: var(--red);
  font-weight: 400;
  margin-top: .25rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav__links a {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
  font-size: .92rem;
  padding: .5rem .85rem;
  color: var(--bone-dim);
  position: relative;
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--bone); }
.nav__links a.is-active { color: var(--bone); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .2rem;
  height: 2px; background: var(--red);
}
.nav__cta { margin-left: .6rem; }
.nav__toggle {
  display: none;
  width: 46px; height: 42px;
  border: 1px solid var(--line);
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--bone); transition: .2s ease; }

@media (max-width: 920px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--ink-2);
    border-left: 1px solid var(--line);
    padding: 5rem 1.4rem 2rem;
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { padding: 1rem .4rem; font-size: 1.3rem; border-bottom: 1px solid var(--line); }
  .nav__links a.is-active::after { display: none; }
  .nav__cta { margin: 1.2rem 0 0; }
  body.menu-open { overflow: hidden; }
  .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(-45deg); }
}

/* ============================================================
   HERO (Fight-Poster)
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(3rem, 10vw, 7rem) clamp(2rem, 6vw, 4rem);
  overflow: hidden;
}
.hero__bars {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    repeating-linear-gradient(115deg, transparent 0 78px, rgba(255,255,255,.012) 78px 80px);
}
.hero__glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 70vw; height: 70vw; max-width: 760px; max-height: 760px;
  right: -10%; top: -20%;
  background: radial-gradient(circle, rgba(226,20,20,.28), transparent 62%);
  filter: blur(10px);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; margin-bottom: 1.4rem; }
.hero__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: .86;
  letter-spacing: .005em;
  font-size: clamp(3.2rem, 13.5vw, 9.5rem);
  margin: .2rem 0;
}
.hero__title .line2 { color: transparent; -webkit-text-stroke: 2px var(--bone); }
.hero__title .slash { color: var(--red); }
.hero__sub { margin-top: 1.4rem; max-width: 54ch; font-size: clamp(1rem, 2.4vw, 1.22rem); color: var(--bone-dim); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; align-items: center; }
.hero__meta {
  margin-top: 2.6rem;
  display: flex; flex-wrap: wrap; gap: 2.4rem;
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--ash);
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.hero__meta b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--bone); letter-spacing: .02em; }

/* ============================================================
   ALLGEMEINE KARTEN / GRIDS
   ============================================================ */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px){ .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  position: relative;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.card:hover { border-color: var(--red); transform: translateY(-3px); background: var(--panel-2); }

/* Disziplin-Karten (Startseite) */
.disc {
  padding: 1.8rem 1.6rem 2rem;
  display: flex; flex-direction: column; gap: .7rem;
  min-height: 230px;
  overflow: hidden;
}
.disc__no { font-family: var(--font-mono); color: var(--ash); font-size: .8rem; letter-spacing: .2em; }
.disc h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.85rem; line-height: .95; letter-spacing: .01em; }
.disc p { color: var(--bone-dim); font-size: .96rem; }
.disc__tag { margin-top: auto; font-family: var(--font-mono); font-size: .76rem; color: var(--red); letter-spacing: .12em; text-transform: uppercase; }
.disc::after {
  content: ""; position: absolute; right: -30px; bottom: -30px;
  width: 120px; height: 120px;
  background: var(--red); opacity: .06;
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
  transition: opacity .25s ease, transform .25s ease;
}
.disc:hover::after { opacity: .14; transform: scale(1.1) rotate(8deg); }

/* ---- Foto-Platzhalter (Duotone) -------------------------- */
.photo {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 7px),
    linear-gradient(150deg, var(--blood), var(--ink) 75%);
  display: grid; place-items: center;
  overflow: hidden;
}
.photo::after {
  content: attr(data-label);
  position: absolute; bottom: 8px; right: 10px;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .15em;
  color: rgba(236,230,220,.4); text-transform: uppercase;
}
.photo svg { width: 44%; max-width: 90px; opacity: .5; }
.photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 3px solid var(--red);
  background: var(--ink-2);
  padding-block: clamp(2.8rem, 6vw, 4rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.2rem;
}
@media (max-width: 760px){ .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; } }
.footer__grid h4 { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .14em; font-size: .85rem; color: var(--ash); margin-bottom: 1rem; }
.footer__grid a:hover { color: var(--red); }
.footer__grid p, .footer__grid li { color: var(--bone-dim); margin-bottom: .4rem; font-size: .95rem; }
.footer__brand .display { font-size: 2.2rem; }
.footer__brand p { margin-top: .8rem; max-width: 34ch; }
.footer__bottom {
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between;
  font-family: var(--font-mono); font-size: .76rem; color: var(--ash); letter-spacing: .05em;
}
.footer__bottom a { color: var(--ash); }

/* ============================================================
   PAGE-HEADER (Unterseiten)
   ============================================================ */
.page-head { padding-block: clamp(3rem, 8vw, 5.5rem) clamp(1.5rem, 4vw, 2.5rem); position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-head__bg { position: absolute; right: -5%; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: clamp(7rem, 26vw, 22rem); color: rgba(255,255,255,.022); text-transform: uppercase; line-height: 1; pointer-events: none; white-space: nowrap; }
.page-head h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.8rem, 9vw, 6rem); line-height: .9; position: relative; }
.page-head p { margin-top: 1rem; max-width: 56ch; color: var(--bone-dim); position: relative; }

/* ============================================================
   TRAINER
   ============================================================ */
.coach { display: flex; flex-direction: column; }
.coach .photo { aspect-ratio: 3/4; }
.coach__body { padding: 1.3rem 1.3rem 1.6rem; }
.coach__role { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .16em; color: var(--red); text-transform: uppercase; }
.coach__name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.7rem; line-height: .95; margin: .4rem 0 .6rem; }
.coach__bio { color: var(--bone-dim); font-size: .92rem; }
.coach__stats { display: flex; gap: 1.2rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: .72rem; color: var(--ash); }
.coach__stats b { display: block; color: var(--bone); font-family: var(--font-display); font-size: 1.3rem; }

/* ============================================================
   TRAININGSZEITEN (Scorecard)
   ============================================================ */
.schedule { border: 1px solid var(--line); background: var(--panel); }
.sched-row { display: grid; grid-template-columns: 130px 1fr auto; gap: 1rem; align-items: center; padding: 1.1rem var(--pad); border-bottom: 1px solid var(--line); transition: background .15s ease; }
.sched-row:last-child { border-bottom: none; }
.sched-row:hover { background: var(--panel-2); }
.sched-row__day { font-family: var(--font-display); text-transform: uppercase; font-size: 1.25rem; letter-spacing: .03em; }
.sched-row__day span { display: block; font-family: var(--font-mono); font-size: .68rem; color: var(--red); letter-spacing: .15em; }
.sched-row__class { }
.sched-row__class b { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .05em; font-size: 1.05rem; font-weight: 600; }
.sched-row__class small { display: block; color: var(--ash); font-size: .82rem; }
.sched-row__time { font-family: var(--font-mono); font-size: 1.05rem; color: var(--bone); white-space: nowrap; text-align: right; }
.sched-row__time span { display: block; font-size: .68rem; color: var(--ash); letter-spacing: .1em; text-transform: uppercase; }
.lvl { display: inline-block; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; padding: .15rem .5rem; border: 1px solid var(--line); color: var(--bone-dim); margin-left: .5rem; vertical-align: middle; }
.lvl--all { border-color: var(--blood); color: var(--red); }
@media (max-width: 640px){
  .sched-row { grid-template-columns: 1fr auto; row-gap: .4rem; }
  .sched-row__day { grid-column: 1 / -1; }
}

/* ============================================================
   KÄMPFE (Fight-Card)
   ============================================================ */
.fight {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.6rem var(--pad);
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.4rem;
  align-items: center;
  position: relative;
  transition: border-color .2s ease;
}
.fight:hover { border-color: var(--red); }
.fight__date {
  text-align: center;
  font-family: var(--font-display);
  border-right: 1px solid var(--line);
  padding-right: 1.2rem;
}
.fight__date .d { font-size: 2.6rem; line-height: .85; }
.fight__date .m { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .2em; color: var(--red); }
.fight__date .y { font-family: var(--font-mono); font-size: .7rem; color: var(--ash); }
.fight__vs { display: flex; align-items: center; gap: 1rem; }
.fighter { }
.fighter b { font-family: var(--font-display); text-transform: uppercase; font-size: 1.35rem; line-height: .95; display: block; }
.fighter small { font-family: var(--font-mono); font-size: .72rem; color: var(--ash); }
.fight__vs .vs { font-family: var(--font-display); color: var(--red); font-size: 1.4rem; padding: 0 .2rem; }
.fight__info { text-align: right; }
.fight__info .ev { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.fight__info .loc { font-family: var(--font-mono); font-size: .76rem; color: var(--ash); display: block; margin-top: .2rem; }
.fight__tag { position: absolute; top: -1px; left: -1px; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; padding: .25rem .6rem; background: var(--red); color: #fff; }
.fight__tag--done { background: var(--line); color: var(--bone-dim); }
@media (max-width: 720px){
  .fight { grid-template-columns: 90px 1fr; row-gap: 1rem; }
  .fight__info { grid-column: 1 / -1; text-align: left; border-top: 1px solid var(--line); padding-top: 1rem; }
  .fight__date .d { font-size: 2rem; }
}

/* ============================================================
   GALERIE
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
@media (max-width: 760px){ .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery__item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.gallery__item:nth-child(4n) { grid-row: span 2; aspect-ratio: 1/2; }
@media (max-width: 760px){ .gallery__item:nth-child(4n) { grid-row: span 1; aspect-ratio: 1/1; } }
.gallery__item .photo { position: absolute; inset: 0; }
.gallery__item button { position: absolute; inset: 0; width: 100%; height: 100%; }
.gallery__item .play {
  position: absolute; inset: 0; margin: auto; width: 56px; height: 56px;
  background: rgba(226,20,20,.9); display: grid; place-items: center; pointer-events: none;
  clip-path: polygon(50% 0,100% 38%,82% 100%,18% 100%,0 38%);
}
.gallery__item .play::after { content: "▶"; color: #fff; font-size: 1.1rem; margin-left: 3px; }
.gallery__item .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem .8rem .7rem; background: linear-gradient(transparent, rgba(10,10,12,.85)); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; color: var(--bone); opacity: 0; transition: opacity .2s ease; pointer-events: none; }
.gallery__item:hover .cap { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(6,6,8,.94); display: none; place-items: center; padding: var(--pad); }
.lightbox.is-open { display: grid; }
.lightbox__inner { max-width: 900px; width: 100%; }
.lightbox .photo { aspect-ratio: 16/10; border: 1px solid var(--line); }
.lightbox__cap { font-family: var(--font-mono); font-size: .82rem; color: var(--bone-dim); margin-top: 1rem; text-align: center; }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.4rem; font-family: var(--font-display); font-size: 1.6rem; color: var(--bone); width: 48px; height: 48px; border: 1px solid var(--line); }
.lightbox__close:hover { color: var(--red); border-color: var(--red); }

/* ============================================================
   CTA-Band & Info-Boxen
   ============================================================ */
.cta-band { border-block: 3px solid var(--red); background: linear-gradient(120deg, var(--ink-2), #1a0708); }
.cta-band .wrap { display: flex; flex-wrap: wrap; gap: 1.6rem; align-items: center; justify-content: space-between; padding-block: clamp(2.4rem, 6vw, 3.6rem); }
.cta-band h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2rem, 6vw, 3.4rem); line-height: .92; max-width: 16ch; }
.cta-band h2 em { color: var(--red); font-style: normal; }

.callout { background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--red); padding: 1.4rem 1.5rem; }
.callout h4 { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem; }
.callout p { color: var(--bone-dim); font-size: .95rem; }

/* admin-Hinweis (Galerie) */
.note-admin { font-family: var(--font-mono); font-size: .78rem; color: var(--ash); border: 1px dashed var(--line); padding: 1rem 1.2rem; }
.note-admin b { color: var(--red); }

/* ---- Reveal on scroll (nur wenn JS aktiv → sonst sichtbar) - */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---- Fokus / Accessibility ------------------------------- */
:focus-visible { outline: 3px solid var(--red-bright); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
