/* ==========================================================================
   Kiwitts Corner — E-Dart & Sports Bar, Hamburg-Langenhorn
   Ein gemeinsames Stylesheet. Kein Framework, kein Build-Step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design-Tokens
   Die "Nacht"-Werte sind bewusst invariant: Hero, Liga-Blöcke und Footer
   bleiben in beiden Farbschemata dunkel, das ist die Identität der Kneipe.
   -------------------------------------------------------------------------- */
:root {
  /* Flächen und Text — wechseln mit dem Farbschema */
  --bg:            #faf8f4;
  --bg-elev:       #ffffff;
  --bg-sunk:       #f2eee6;
  --text:          #1a1a1f;
  --text-mute:     #5d5c66;
  --line:          #e3ddd2;
  --line-strong:   #cfc7b8;

  /* Nacht — invariant */
  --night:         #0e0e12;
  --night-2:       #17171d;
  --night-3:       #21212a;
  --night-text:    #f4f1ea;
  --night-mute:    #a7a39a;
  --night-line:    #2c2c36;

  /* Akzente */
  --gold:          #9a7310;
  --gold-bright:   #e8b93f;
  --red:           #ab2118;
  --red-bright:    #e0483c;
  --green:         #2f6f4a;

  /* Akzente auf Nachtflächen */
  --on-night-accent: var(--gold-bright);

  /* Typografie */
  --font-display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Form */
  --radius:    10px;
  --radius-lg: 16px;
  --radius-sm: 6px;
  --shadow:    0 1px 2px rgba(20, 16, 8, .06), 0 8px 24px -12px rgba(20, 16, 8, .18);
  --shadow-lg: 0 2px 4px rgba(20, 16, 8, .08), 0 24px 56px -24px rgba(20, 16, 8, .30);

  /* Raster */
  --container: 1180px;
  --gutter:    24px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:          #0e0e12;
    --bg-elev:     #17171d;
    --bg-sunk:     #0a0a0d;
    --text:        #f4f1ea;
    --text-mute:   #a7a39a;
    --line:        #2c2c36;
    --line-strong: #3c3c48;
    --gold:        #e8b93f;
    --red:         #e0483c;
    --green:       #58a87a;
    --shadow:      0 1px 2px rgba(0, 0, 0, .5), 0 8px 24px -12px rgba(0, 0, 0, .7);
    --shadow-lg:   0 2px 4px rgba(0, 0, 0, .5), 0 24px 56px -24px rgba(0, 0, 0, .8);
  }
}

/* --------------------------------------------------------------------------
   2. Grundlagen
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .01em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 1.3rem + 3.6vw, 4rem); text-transform: uppercase; letter-spacing: .015em; }
h2 { font-size: clamp(1.6rem, 1.15rem + 2vw, 2.6rem); text-transform: uppercase; }
h3 { font-size: clamp(1.15rem, 1rem + .7vw, 1.45rem); }
h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .05em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 40%, transparent); text-underline-offset: .18em; }
a:hover { text-decoration-color: currentColor; }

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

ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .35em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

strong, b { font-weight: 650; }

address { font-style: normal; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   3. Hilfsklassen und Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 760px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold-bright);
  color: #16120a;
  padding: .75rem 1.25rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.section { padding-block: clamp(3rem, 1.6rem + 5vw, 6rem); }
.section--tight { padding-block: clamp(2rem, 1.2rem + 3vw, 3.5rem); }
.section--sunk { background: var(--bg-sunk); }

/* Nachtflächen: in hell wie dunkel dunkel */
.section--night {
  background: var(--night);
  color: var(--night-text);
  background-image:
    radial-gradient(60rem 30rem at 12% -10%, rgba(232, 185, 63, .10), transparent 65%),
    radial-gradient(48rem 26rem at 92% 110%, rgba(224, 72, 60, .10), transparent 65%);
}
.section--night h1, .section--night h2, .section--night h3, .section--night h4 { color: var(--night-text); }
.section--night .lead, .section--night .muted { color: var(--night-mute); }
.section--night .eyebrow { color: var(--gold-bright); }
.section--night hr { border-top-color: var(--night-line); }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.lead {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 62ch;
}

.muted { color: var(--text-mute); }
.small { font-size: .875rem; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.section-head { max-width: 68ch; margin-bottom: clamp(2rem, 1.2rem + 2vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.stack > * + * { margin-top: 1.1em; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .85em 1.5em;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.1em; height: 1.1em; }

.btn--primary { background: var(--gold-bright); color: #16120a; border-color: var(--gold-bright); }
.btn--primary:hover { background: #f5cc60; border-color: #f5cc60; }

.btn--dark { background: var(--night); color: var(--night-text); border-color: var(--night); }
.btn--dark:hover { background: var(--night-3); border-color: var(--night-3); }

.btn--ghost { background: transparent; color: inherit; border-color: color-mix(in srgb, currentColor 32%, transparent); }
.btn--ghost:hover { border-color: currentColor; background: color-mix(in srgb, currentColor 8%, transparent); }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-row.center { justify-content: center; }

/* --------------------------------------------------------------------------
   5. Kopfbereich und Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 14, 18, .92);
  backdrop-filter: saturate(160%) blur(12px);
  color: var(--night-text);
  border-bottom: 1px solid var(--night-line);
}

.site-header__bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--night-text);
  margin-right: auto;
  flex-shrink: 0;
}
.brand__mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.brand__sub {
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: .32em;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: block;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--night-mute);
  padding: .6rem .8rem;
  border-radius: var(--radius-sm);
  transition: color .15s ease, background-color .15s ease;
}
.nav__link:hover { color: var(--night-text); background: rgba(255, 255, 255, .06); }
.nav__link[aria-current="page"] { color: var(--gold-bright); background: rgba(232, 185, 63, .1); }

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .06em;
  text-decoration: none;
  color: var(--night-text);
  white-space: nowrap;
  padding: .55rem .95rem;
  border: 1px solid var(--night-line);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, color .15s ease;
}
.header__phone:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.header__phone .icon { width: 1.05em; height: 1.05em; color: var(--gold-bright); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  color: var(--night-text);
  border: 1px solid var(--night-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle .icon { width: 22px; height: 22px; }
/* Spezifitaet bewusst erhoeht: .icon weiter unten setzt display ebenfalls. */
.nav-toggle .nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: inline-block; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; order: 3; }
  .header__phone { order: 2; }
  .header__phone .header__phone-label { display: none; }
  .nav {
    order: 4;
    flex-basis: 100%;
    display: none;
    border-top: 1px solid var(--night-line);
    padding-block: .75rem 1.25rem;
  }
  .nav.is-open { display: block; }
  .site-header__bar { flex-wrap: wrap; gap: .75rem; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: .8rem .6rem; font-size: 1.05rem; border-radius: 0; }
  .nav__list li + li .nav__link { border-top: 1px solid var(--night-line); }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--night);
  color: var(--night-text);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 14, 18, .78) 0%, rgba(14, 14, 18, .62) 45%, rgba(14, 14, 18, .94) 100%),
    radial-gradient(52rem 34rem at 78% 18%, rgba(232, 185, 63, .16), transparent 70%);
}
.hero__inner {
  padding-block: clamp(4rem, 2rem + 9vw, 8.5rem);
  max-width: 44rem;
}
.hero h1 { margin-bottom: .45em; }
.hero h1 .hl { color: var(--gold-bright); display: block; }
.hero__lead {
  font-size: clamp(1.08rem, 1rem + .55vw, 1.35rem);
  color: #ddd8cd;
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem;
}
.hero__facts li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--night-text);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  padding: .42rem .95rem;
  margin: 0;
}
.hero__facts .icon { width: 1.05em; height: 1.05em; color: var(--gold-bright); }

/* Schlanker Seitenkopf für Unterseiten */
.pagehead {
  background: var(--night);
  color: var(--night-text);
  background-image:
    radial-gradient(56rem 28rem at 8% -20%, rgba(232, 185, 63, .14), transparent 66%),
    radial-gradient(44rem 24rem at 96% 120%, rgba(224, 72, 60, .12), transparent 66%);
  border-bottom: 1px solid var(--night-line);
}
.pagehead__inner { padding-block: clamp(2.75rem, 1.6rem + 4vw, 4.75rem); max-width: 50rem; }
.pagehead .lead { color: var(--night-mute); }

.breadcrumb {
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--night-mute);
  margin-bottom: 1rem;
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; opacity: .5; }
.breadcrumb a { color: inherit; }

/* --------------------------------------------------------------------------
   7. Raster und Karten
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1.25rem, .8rem + 1.6vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }

.split {
  display: grid;
  gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
}
.split--media-first > .split__media { order: -1; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }

.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 1rem + 1vw, 2rem);
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .5rem; }
.card > :last-child { margin-bottom: 0; }

.section--night .card {
  background: var(--night-2);
  border-color: var(--night-line);
  color: var(--night-text);
}
.section--night .card p { color: var(--night-mute); }

/* Leistungs-Kachel mit Icon */
.feature { }
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--gold) 16%, transparent);
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.feature__icon .icon { width: 25px; height: 25px; }
.section--night .feature__icon { background: rgba(232, 185, 63, .15); color: var(--gold-bright); }

/* --------------------------------------------------------------------------
   8. Termin-Karten
   -------------------------------------------------------------------------- */
.event {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 480px) {
  .event { grid-template-columns: 1fr; }
}

.event__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 5.2rem;
  padding: .85rem .6rem;
  border-radius: var(--radius);
  background: var(--gold-bright);
  color: #16120a;
  font-family: var(--font-display);
  line-height: 1;
}
.event__date .d { font-size: 2rem; font-weight: 600; }
.event__date .m { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-top: .3rem; }
.event__date .y { font-size: .68rem; letter-spacing: .14em; opacity: .7; margin-top: .25rem; }
.event__date--red { background: var(--red-bright); color: #fff; }

.event__body h3 { margin-bottom: .35rem; }
.event__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem .9rem;
  font-size: .88rem;
  color: var(--text-mute);
  margin-bottom: .8rem;
}
.section--night .event__meta { color: var(--night-mute); }
.event__meta span { display: inline-flex; align-items: center; gap: .35rem; }
.event__meta .icon { width: 1em; height: 1em; }

/* Faktenliste (Startgeld, Modus …) */
.facts {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1em;
  border-top: 1px solid var(--line);
}
.section--night .facts { border-top-color: var(--night-line); }
.facts li {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem 1rem;
  justify-content: space-between;
  padding: .6rem 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.section--night .facts li { border-bottom-color: var(--night-line); }
.facts dt, .facts .k {
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.section--night .facts .k { color: var(--night-mute); }
.facts .v { font-weight: 550; text-align: right; }

/* --------------------------------------------------------------------------
   9. Tabellen (Liga-Stände — echte Tabellen statt Bilder)
   -------------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
  -webkit-overflow-scrolling: touch;
}
.section--night .table-wrap { border-color: var(--night-line); background: var(--night-2); }

table.standings {
  width: 100%;
  min-width: 34rem;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  font-size: .94rem;
}
table.standings caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .9rem 1rem;
  color: var(--text-mute);
  border-bottom: 1px solid var(--line);
}
.section--night table.standings caption { color: var(--night-mute); border-bottom-color: var(--night-line); }

table.standings th,
table.standings td {
  padding: .65rem .9rem;
  text-align: right;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.section--night table.standings th,
.section--night table.standings td { border-bottom-color: var(--night-line); }

table.standings thead th {
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
  background: var(--bg-sunk);
}
.section--night table.standings thead th { color: var(--night-mute); background: var(--night-3); }

table.standings th[scope="row"] { text-align: right; width: 3rem; font-weight: 500; color: var(--text-mute); }
.section--night table.standings th[scope="row"] { color: var(--night-mute); }
table.standings td.team { text-align: left; font-weight: 550; white-space: normal; min-width: 11rem; }
table.standings tbody tr:last-child th,
table.standings tbody tr:last-child td { border-bottom: 0; }
table.standings tbody tr.is-top td,
table.standings tbody tr.is-top th { background: color-mix(in srgb, var(--green) 12%, transparent); }
table.standings tbody tr.is-top td.team::after {
  content: "";
  display: inline-block;
  width: .5em; height: .5em;
  margin-left: .5em;
  border-radius: 50%;
  background: var(--green);
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   10. Öffnungszeiten
   -------------------------------------------------------------------------- */
.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem 1.25rem;
  justify-content: space-between;
  align-items: baseline;
  padding: .7rem 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.section--night .hours li, .site-footer .hours li { border-bottom-color: var(--night-line); }
.hours li:last-child { border-bottom: 0; }
.hours .day {
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hours .time { font-variant-numeric: tabular-nums; color: var(--text-mute); }
.section--night .hours .time, .site-footer .hours .time { color: var(--night-mute); }
.hours li.is-today .day { color: var(--gold); }
.hours li.is-today .time { color: var(--text); font-weight: 600; }
.section--night .hours li.is-today .day, .site-footer .hours li.is-today .day { color: var(--gold-bright); }
.section--night .hours li.is-today .time, .site-footer .hours li.is-today .time { color: var(--night-text); }

.note {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  padding: .9rem 1.1rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--gold) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  font-size: .92rem;
}
.note .icon { width: 1.2em; height: 1.2em; flex-shrink: 0; margin-top: .18em; color: var(--gold); }
.section--night .note { background: rgba(232, 185, 63, .1); border-color: rgba(232, 185, 63, .28); }
.section--night .note .icon { color: var(--gold-bright); }

/* --------------------------------------------------------------------------
   11. Brücke zu edart-hamburg.de
   Bewusst als eigenständig erkennbarer Block: was dort liegt, bleibt dort.
   -------------------------------------------------------------------------- */
.bridge {
  display: grid;
  gap: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  align-items: center;
  padding: clamp(1.6rem, 1.1rem + 1.8vw, 2.6rem);
  border-radius: var(--radius-lg);
  background: var(--night-2);
  color: var(--night-text);
  border: 1px solid var(--night-line);
  border-left: 4px solid var(--gold-bright);
}
.bridge h2, .bridge h3 { color: var(--night-text); margin-bottom: .55rem; }
.bridge p { color: var(--night-mute); }
.bridge__links { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.bridge__links li { margin: 0; }
.bridge__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--night-line);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .05em;
  transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
}
.bridge__links a:hover {
  background: rgba(232, 185, 63, .12);
  border-color: var(--gold-bright);
  transform: translateX(2px);
}
.bridge__links .icon { width: 1.05em; height: 1.05em; color: var(--gold-bright); flex-shrink: 0; }

.partner-line {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: var(--font-display);
  color: var(--night-mute);
  margin-bottom: 1rem;
}
.partner-line::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold-bright);
}

/* --------------------------------------------------------------------------
   12. Galerie und Plakate
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
}
.gallery--4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 14.5rem), 1fr)); }
.gallery figure { margin: 0; }
.gallery__item {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-sunk);
  cursor: zoom-in;
  border: 1px solid var(--line);
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery figcaption { font-size: .86rem; color: var(--text-mute); padding-top: .6rem; }

.posters {
  display: grid;
  gap: clamp(1.25rem, .8rem + 1.5vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}
.posters figure { margin: 0; }
.posters img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--night);
}
.section--night .posters img, .section--night .gallery__item { border-color: var(--night-line); }
.posters figcaption { font-size: .86rem; color: var(--text-mute); padding-top: .65rem; }
.section--night .posters figcaption, .section--night .gallery figcaption { color: var(--night-mute); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(8, 8, 11, .94);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lightbox__caption {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  color: #ddd8cd;
  font-size: .88rem;
  text-align: center;
  max-width: 44rem;
  padding-inline: 1rem;
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  cursor: pointer;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .18); }
.lightbox__close .icon { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   13. Karte
   -------------------------------------------------------------------------- */
figure.karte { margin: 0; }
figure.karte a { display: block; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
figure.karte img { width: 100%; height: auto; }
figure.karte figcaption { font-size: .78rem; line-height: 1.55; color: var(--text-mute); padding-top: .6rem; }
figure.karte figcaption a { white-space: nowrap; }
.section--night figure.karte a { border-color: var(--night-line); }
.section--night figure.karte figcaption { color: var(--night-mute); }

/* Kontaktdaten */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }
.contact-list li { display: flex; gap: 1rem; margin: 0; }
.contact-list .icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: color-mix(in srgb, var(--gold) 16%, transparent);
  color: var(--gold);
}
.section--night .contact-list .icon-badge { background: rgba(232, 185, 63, .15); color: var(--gold-bright); }
.contact-list .icon { width: 21px; height: 21px; }
.contact-list h3 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); margin-bottom: .25rem; font-weight: 500; }
.section--night .contact-list h3 { color: var(--night-mute); }
.contact-list a { font-weight: 550; }

/* --------------------------------------------------------------------------
   14. Fußbereich
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--night);
  color: var(--night-text);
  border-top: 1px solid var(--night-line);
  padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 0;
}
.site-footer h2 {
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.1rem;
}
.site-footer p, .site-footer li { color: var(--night-mute); }
.site-footer a { color: var(--night-text); }
.site-footer address { font-style: normal; line-height: 1.8; }

.footer-grid {
  display: grid;
  gap: clamp(2rem, 1.2rem + 2.5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}
.footer-nav { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: .5rem; }
.footer-nav a { text-decoration: none; color: var(--night-mute); }
.footer-nav a:hover { color: var(--gold-bright); }

.footer-social { margin-top: 1rem; }
.footer-social a { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; }
.footer-social a:hover { color: var(--gold-bright); }
.footer-social .icon { width: 1.15em; height: 1.15em; color: var(--gold-bright); }

.tags { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; margin: 1.1rem 0 0; padding: 0; }
.tags li {
  margin: 0;
  font-family: var(--font-display);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--night-mute);
  border: 1px solid var(--night-line);
  border-radius: 999px;
  padding: .3rem .8rem;
}

.footer-bottom {
  margin-top: clamp(2.5rem, 1.6rem + 2.5vw, 3.5rem);
  border-top: 1px solid var(--night-line);
  padding-block: 1.4rem 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: .84rem;
  color: var(--night-mute);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.1rem; list-style: none; margin: 0; padding: 0; }
.footer-bottom li { margin: 0; }
.footer-bottom a { color: var(--night-mute); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-bright); }

/* --------------------------------------------------------------------------
   15. Rechtstexte
   -------------------------------------------------------------------------- */
.legal { max-width: 70ch; }
.legal h2 { font-size: 1.35rem; margin-top: 2.6rem; text-transform: none; letter-spacing: 0; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.05rem; margin-top: 1.8rem; }
.legal address { font-style: normal; line-height: 1.8; }

/* --------------------------------------------------------------------------
   16. Sonstiges
   -------------------------------------------------------------------------- */
.icon { display: inline-block; width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; }
.icon--filled { fill: currentColor; stroke: none; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sprite { display: none; }
