/* ============================================================
   Kö-Bogen Übergangsseite — Shared Stylesheet
   Designsprache: Full-bleed Editorial (AD-Magazin Vorbild)
   Bodoni Moda · Inter · Schwarz/Weiß · Magenta nur als Detail
   ============================================================ */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-paper: #f7f5f1;
  --bg-dark: #0e0e0e;
  --ink: #0e0e0e;
  --ink-soft: #3d3d3d;
  --ink-muted: #888;
  --rule: #0e0e0e;
  --line: rgba(14,14,14,.14);
  --line-soft: rgba(14,14,14,.08);
  --on-dark: #ffffff;
  --on-dark-muted: rgba(255,255,255,.72);
  --accent: #d8127a;

  --serif: 'Bodoni Moda', Didot, 'Bodoni MT', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --max: 1320px;
  --px: clamp(1.5rem, 4vw, 3rem);
  --py: clamp(4rem, 8vw, 6.5rem);
  --ease: cubic-bezier(.2,.7,.2,1);
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body { min-height: 100vh; }
em, i, cite { font-style: normal; font-weight: 500; }
img, video { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ============================================================
   HEADER (überlagert dunklen Hero, oder solid auf hellem BG)
   ============================================================ */
.topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 1.4rem var(--px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar.is-light {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #fff;
}
.topbar.is-light .brand { color: var(--ink); }
.brand img { height: 54px; width: auto; display: block; }
.brand-meta {
  font-family: var(--serif);
  font-style: normal;
  font-size: .92rem;
  letter-spacing: .02em;
  line-height: 1.1;
}
.brand-meta small {
  display: block;
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: .25rem;
}
.topbar.is-light .brand-meta small { color: var(--ink-muted); }
@media (max-width: 640px) { .brand-meta { display: none; } .brand img { height: 44px; } }

.lang {
  display: inline-flex;
  gap: .4rem;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: .35rem .4rem;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,.4);
}
.topbar.is-light .lang {
  background: var(--bg-paper);
  box-shadow: none;
}
.lang a, .lang span {
  text-decoration: none;
  color: var(--ink-soft);
  padding: .15rem .75rem;
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.lang a.on {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}
.lang a:not(.on):hover { color: var(--accent); }
.lang .disabled {
  color: var(--ink-muted);
  cursor: not-allowed;
}

/* ============================================================
   HERO — Full-bleed Editorial
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
}
.hero__photo { position: absolute; inset: 0; z-index: 1; }
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .78;
  filter: grayscale(.18) contrast(1.04);
}
.hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(14,14,14,.2) 0%,
    rgba(14,14,14,.05) 40%,
    rgba(14,14,14,.55) 80%,
    rgba(14,14,14,.92) 100%);
}
.hero__content {
  position: absolute;
  left: var(--px); right: var(--px);
  bottom: clamp(2rem, 5vw, 4rem);
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.6rem, 9vw, 9rem);
  line-height: .92;
  letter-spacing: -.02em;
  max-width: 14ch;
}
.hero__title em { font-weight: 400; }

/* Strip directly under hero (caption-like) */
.strip {
  padding: 1rem var(--px);
  background: var(--bg-dark);
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.strip b { color: var(--accent); font-weight: 600; }

/* ============================================================
   SECTION FRAMES & TYPO
   ============================================================ */
section.block { padding: var(--py) var(--px); }
section.block .inner { max-width: var(--max); margin: 0 auto; }

.kicker {
  font-size: .7rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.kicker::before { content: "·"; color: var(--accent); margin-right: .6rem; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.005em;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  max-width: 22ch;
  margin-bottom: 1.5rem;
}

.deck {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--ink-soft);
  max-width: 54ch;
  line-height: 1.45;
  margin-bottom: 2rem;
}

/* ============================================================
   SOMMERPROGRAMM CLUSTER (Onepager + Übersicht)
   ============================================================ */
.program {
  padding: clamp(4rem,7vw,6rem) var(--px);
  background: var(--bg-paper);
}
.program__head {
  max-width: var(--max);
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.5rem;
}
@media (max-width: 760px) { .program__head { grid-template-columns: 1fr; } }
.program__head .label {
  font-size: .7rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}
.program__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: .95;
  letter-spacing: -.02em;
}
.program__head .meta {
  font-family: var(--serif);
  color: var(--ink-soft);
  text-align: right;
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 42ch;
}
@media (max-width: 760px) { .program__head .meta { text-align: left; } }

.program__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}
@media (max-width: 960px) { .program__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .program__grid { grid-template-columns: 1fr; } }

.feature {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}
.feature__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-dark);
  position: relative;
}
.feature__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.12);
  transition: transform .7s var(--ease), filter .4s;
}
.feature:hover .feature__photo img {
  transform: scale(1.04);
  filter: grayscale(0);
}
.feature__no {
  position: absolute;
  top: .85rem; left: .85rem;
  font-family: var(--serif);
  font-size: .92rem;
  color: #fff;
  letter-spacing: .04em;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}
.feature__body { padding-top: 1.25rem; }
.feature__kicker {
  font-size: .62rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .5rem;
}
.feature__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: .6rem;
}
.feature__dates {
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--ink-soft);
  margin-bottom: .6rem;
  letter-spacing: .02em;
  line-height: 1.5;
}
.feature__time {
  display: block;
  color: var(--ink-muted);
  font-size: .78rem;
  margin-top: .25rem;
  letter-spacing: .01em;
}
.feature__meta {
  font-size: .88rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: .65rem 0 .85rem;
  max-width: 38ch;
}
.feature__more {
  font-size: .7rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-block;
}
.feature__more::after {
  content: " →";
  color: var(--accent);
  transition: padding-left .2s var(--ease);
}
.feature:hover .feature__more::after { padding-left: .5rem; }

/* Übersicht-Button unter dem Cluster */
.btn-overview {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  padding: 1rem 2.4rem;
  text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.btn-overview:hover { background: var(--ink); color: #fff; }

/* ============================================================
   ARTICLE-STYLE (Editorial-Block für #ueber)
   ============================================================ */
.article {
  padding: clamp(5rem,9vw,8rem) var(--px) clamp(4rem,7vw,6rem);
  max-width: 1080px;
  margin: 0 auto;
}
.article h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  max-width: 18ch;
  margin-bottom: 2rem;
}
.article .cols {
  column-count: 2;
  column-gap: 2.5rem;
  column-rule: 1px solid rgba(0,0,0,.08);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
@media (max-width: 760px) { .article .cols { column-count: 1; } }
.article .cols p { margin-bottom: 1.1rem; break-inside: avoid-column; }
.article .cols p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 5.2rem;
  float: left;
  line-height: .85;
  padding: .3rem .6rem 0 0;
  font-weight: 400;
  color: var(--ink);
}
.pullquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.25;
  color: var(--ink);
  margin: 2.5rem 0;
  padding-left: 2rem;
  border-left: 3px solid var(--accent);
  max-width: 60ch;
  break-inside: avoid;
}

/* ============================================================
   AKTUELLES (News-Block)
   ============================================================ */
.news {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: var(--py) var(--px);
}
.news__inner { max-width: var(--max); margin: 0 auto; }
.news__head {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}
@media (max-width: 760px) { .news__head { grid-template-columns: 1fr; } }
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 900px) { .news__grid { grid-template-columns: 1fr; } }
.news__item .date {
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .65rem;
}
.news__item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: .65rem;
}
.news__item p {
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt {
  background: var(--bg-paper);
  padding: var(--py) var(--px);
  border-top: 1px solid var(--rule);
}
.kontakt .inner { max-width: var(--max); margin: 0 auto; }
.kontakt .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem 2rem;
  margin-top: 2rem;
}
.kontakt .item .label {
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .65rem;
}
.kontakt .item .value,
.kontakt .item a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.kontakt .item a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ============================================================
   FOOTER (Colophon)
   ============================================================ */
.colophon {
  padding: 3rem var(--px);
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  text-align: center;
}
.colophon .imp {
  display: block;
  font-size: .65rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.colophon nav {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.colophon nav a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: .15rem;
  transition: color .2s, border-color .2s;
}
.colophon nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ============================================================
   DETAIL-PAGE — Full-bleed Hero + Editorial-Body
   ============================================================ */
.detail-hero {
  position: relative;
  min-height: 78vh;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
}
.detail-hero__photo { position: absolute; inset: 0; z-index: 1; }
.detail-hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .82;
  filter: grayscale(.12) contrast(1.05);
}
.detail-hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(14,14,14,.15) 0%,
    rgba(14,14,14,.05) 35%,
    rgba(14,14,14,.6) 80%,
    rgba(14,14,14,.92) 100%);
}
.detail-hero__content {
  position: absolute;
  left: var(--px); right: var(--px);
  bottom: clamp(2rem, 5vw, 4rem);
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
}
.detail-hero__no {
  font-size: .7rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.detail-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: .95;
  letter-spacing: -.02em;
  max-width: 16ch;
  margin-bottom: 1.25rem;
}
.detail-hero .deck {
  font-family: var(--serif);
  color: rgba(255,255,255,.85);
  max-width: 50ch;
  margin-bottom: 0;
}

/* Strip below detail hero with meta-row */
.detail-meta {
  background: var(--bg-dark);
  color: #fff;
  padding: 1.5rem var(--px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.detail-meta__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem 2.5rem;
}
.detail-meta .item .label {
  font-size: .62rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .35rem;
}
.detail-meta .item .value {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
}

/* Breadcrumb */
.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem var(--px) 0;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { padding: 0 .5rem; }
.breadcrumb .here { color: var(--ink); }

.detail-body {
  padding: clamp(3rem, 5vw, 5rem) var(--px);
  max-width: 880px;
  margin: 0 auto;
}
.detail-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.detail-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 5rem;
  float: left;
  line-height: .85;
  padding: .25rem .55rem 0 0;
  color: var(--ink);
  font-weight: 400;
}
.detail-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  margin: 3rem 0 1.25rem;
}
.detail-body .pullquote { margin: 2.5rem 0; }

/* Termine block on detail pages */
.termine {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  padding: 2rem;
  margin: 2.5rem 0;
}
.termine .label {
  font-size: .7rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.termine ul { list-style: none; }
.termine li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: .95rem 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.termine li:last-child { border-bottom: 0; }
.termine li .when {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
}
.termine li .note {
  font-size: .82rem;
  color: var(--ink-muted);
  text-align: right;
}
.termine li.collision {
  background: rgba(216,18,122,.06);
  margin: 0 -1rem;
  padding: .95rem 1rem;
  border-bottom-color: rgba(216,18,122,.18);
}
.termine .tag {
  display: inline-block;
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: .22rem .6rem;
  margin-left: .65rem;
  vertical-align: 2px;
  font-weight: 600;
}

/* Praktisches Info-Grid */
.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem 2rem;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  padding: 2rem;
  margin: 2.5rem 0;
}
.info .item .label {
  font-size: .65rem;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .5rem;
}
.info .item .value,
.info .item a {
  color: var(--ink);
  text-decoration: none;
  font-size: .98rem;
  line-height: 1.5;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.info .item a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Related events on detail pages */
.related {
  background: var(--bg);
  padding: var(--py) var(--px);
  border-top: 1px solid var(--line);
}
.related .inner { max-width: var(--max); margin: 0 auto; }
.related h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 2rem;
}
.related__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
@media (max-width: 800px) { .related__grid { grid-template-columns: 1fr; } }
.related__card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--bg-paper);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: background .2s, transform .2s var(--ease);
}
.related__card:hover {
  background: #fff;
  transform: translateY(-3px);
}
.related__card img {
  width: 110px; height: 110px;
  object-fit: cover;
}
.related__card .body { min-width: 0; }
.related__card .relkicker {
  font-size: .6rem;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .35rem;
}
.related__card .reltitle {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: .35rem;
}
.related__card .relmeta {
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Back to overview */
.detail-back {
  padding: 2rem var(--px) 4rem;
  text-align: center;
  background: var(--bg);
}
.detail-back a {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: .25rem;
}
.detail-back a::before {
  content: "← ";
  transition: padding-right .2s;
}
.detail-back a:hover::before { padding-right: .3rem; }

/* ============================================================
   PROGRAMM-ÜBERSICHTSSEITE — chronologische Liste
   ============================================================ */
.overview {
  padding: clamp(3rem, 6vw, 5rem) var(--px) var(--py);
  background: var(--bg);
}
.overview__head {
  max-width: var(--max);
  margin: 0 auto 3rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}
.overview__head h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: .95;
  letter-spacing: -.02em;
  margin: .8rem 0;
  max-width: 18ch;
}
.overview__head .legend {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-top: 1.25rem;
  max-width: 65ch;
  line-height: 1.5;
}

.overview__list {
  max-width: var(--max);
  margin: 0 auto;
}
.overview__row {
  display: grid;
  grid-template-columns: 200px 1fr 1.4fr 200px 120px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background .2s var(--ease), padding-left .2s var(--ease);
}
.overview__row:hover {
  background: var(--bg-paper);
  padding-left: 1rem;
}
@media (max-width: 1100px) {
  .overview__row { grid-template-columns: 130px 1fr; padding: 1.25rem 0; }
  .overview__row .desc, .overview__row .dates, .overview__row .cta-wrap { display: none; }
}
.overview__row .no {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--accent);
  text-align: center;
}
.overview__row .thumb {
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--bg-dark);
}
.overview__row .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.1);
  transition: filter .4s, transform .6s var(--ease);
}
.overview__row:hover .thumb img {
  filter: grayscale(0);
  transform: scale(1.05);
}
.overview__row .title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
}
.overview__row .title small {
  display: block;
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .4rem;
  font-weight: 500;
}
.overview__row .desc {
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.overview__row .dates {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  text-align: right;
  line-height: 1.5;
}
.overview__row .dates small {
  display: block;
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .35rem;
}
.overview__row .cta-wrap { text-align: right; }
.overview__row .cta {
  font-size: .65rem;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: .2rem;
  display: inline-block;
}
.overview__row:hover .cta { color: var(--accent); border-color: var(--accent); }

/* ============================================================
   LEGAL-PAGES (Impressum, Datenschutz)
   ============================================================ */
.legal {
  background: var(--bg);
  padding: clamp(3rem, 5vw, 5rem) var(--px) var(--py);
}
.legal__inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  margin: 2.5rem 0 .8rem;
  color: var(--ink);
}
.legal p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--accent); }

/* ============================================================
   ANIMATION & A11Y
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media print {
  .topbar, .colophon, .detail-back { display: none; }
  .hero, .detail-hero { min-height: auto; }
  .hero__photo, .detail-hero__photo { display: none; }
}

/* ============================================================
   Consent-Banner (DSGVO) — Cookie / Tracking-Einwilligung
   ============================================================ */
#kb-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: var(--bg-dark);
  color: var(--on-dark);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -8px 40px rgba(0,0,0,.35);
  animation: kb-consent-in .35s var(--ease) both;
}
@keyframes kb-consent-in { from { transform: translateY(100%); } to { transform: translateY(0); } }
.kb-consent__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem var(--px);
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.kb-consent__text { flex: 1 1 460px; min-width: 280px; }
.kb-consent__title {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: .01em;
  margin-bottom: .35rem;
}
.kb-consent__text p {
  margin: 0;
  font-size: .85rem;
  line-height: 1.55;
  color: var(--on-dark-muted);
}
.kb-consent__text a { color: var(--on-dark); text-decoration: underline; text-underline-offset: 2px; }
.kb-consent__actions {
  flex: 0 0 auto;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.kb-btn {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.kb-btn--accent { background: var(--accent); color: #fff; }
.kb-btn--accent:hover { background: #b50f66; }
.kb-btn--ghost { background: transparent; color: var(--on-dark); border-color: rgba(255,255,255,.4); }
.kb-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
@media (max-width: 640px) {
  .kb-consent__inner { gap: 1rem; }
  .kb-consent__actions { width: 100%; }
  .kb-btn { flex: 1 1 auto; text-align: center; }
}


/* === SEO-OPT 2026-05-22 === */
/* Stretched-link pattern: short keyword anchor, whole card clickable */
.feature, .overview__row, .related__card { position: relative; }
.stretched-link { text-decoration: none; color: inherit; }
.stretched-link::after { content: ""; position: absolute; inset: 0; z-index: 2; }
.feature__title a.stretched-link:hover,
.related__card .reltitle.stretched-link:hover,
.overview__row .title a.stretched-link:hover { color: var(--accent); }

/* FAQ section */
.faq { padding: 0 var(--px) clamp(3rem, 5vw, 5rem); }
.faq .inner { max-width: 880px; margin: 0 auto; }
.faq h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 2.8vw, 2.2rem); line-height: 1.15; margin: 0 0 1.5rem; }
.faq__item { border-top: 1px solid var(--line); padding: 1.5rem 0; }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item h3 { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; line-height: 1.25; margin-bottom: .6rem; color: var(--ink); }
.faq__item p { font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); }
.faq__item p a { color: var(--ink); border-bottom: 1px solid var(--accent); text-decoration: none; }
