:root {
  --concrete: #6b7280;
  --rust: #c41e1e;
  --caution: #d4a012;
  --night: #111827;
  --paper: #ffffff;
  --paper-alt: #f3f4f6;
  --ink: #1f2937;
  --ink-muted: #4b5563;
  --line: #e5e7eb;
  --blood: #991b1b;
  --scholz-grey: #374151;
  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --font-serif: "Georgia", "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper-alt);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1rem;
}

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

a {
  color: var(--blood);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--rust);
}

.container {
  width: min(1200px, 94vw);
  margin-inline: auto;
}

.container-wide {
  width: min(1280px, 96vw);
  margin-inline: auto;
}

/* Top bar */
.top-bar {
  background: var(--night);
  color: #9ca3af;
  font-size: 0.78rem;
  border-bottom: 1px solid #374151;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  flex-wrap: wrap;
}

.top-date {
  font-family: var(--font-mono);
  white-space: nowrap;
}

.ticker {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.ticker-inner {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}

.ticker-inner span {
  color: var(--caution);
  font-weight: 700;
  margin-right: 0.5rem;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 4px solid var(--rust);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding-top: env(safe-area-inset-top, 0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--night);
  text-decoration: none;
  line-height: 1;
}

.logo span {
  color: var(--rust);
}

.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-top: 0.15rem;
}

.nav-list {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-list a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.75rem;
  border-radius: 2px;
}

.nav-list a:hover,
.nav-list a.active {
  background: var(--night);
  color: #fff;
}

/* Flat hero banner */
.hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-banner {
  position: relative;
  height: clamp(140px, 22vw, 200px);
  overflow: hidden;
  background: var(--night);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.88;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.55) 55%, rgba(17, 24, 39, 0.25) 100%);
}

.hero-content {
  position: relative;
  margin-top: -4.5rem;
  padding-bottom: 1.25rem;
  z-index: 2;
}

.hero-text {
  max-width: 680px;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.97);
  border-left: 5px solid var(--rust);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.95;
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--night);
}

.hero .tagline {
  font-size: 1rem;
  color: var(--ink-muted);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.hero .scholz-blame {
  display: inline-block;
  background: var(--blood);
  color: #fff;
  padding: 0.3rem 0.7rem;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Page layout */
.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0 3rem;
}

@media (min-width: 960px) {
  .page-layout {
    grid-template-columns: 1fr 300px;
  }
}

.main-col {
  min-width: 0;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-box {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1rem;
}

.sidebar-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--night);
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--rust);
}

.sidebar-thumb {
  margin-bottom: 0.75rem;
  border: 1px solid var(--line);
}

.sidebar-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.sidebar-thumb figcaption {
  font-size: 0.8rem;
  color: var(--ink-muted);
  padding: 0.4rem 0;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.sidebar-list a:hover {
  color: var(--rust);
}

/* Counter */
.counter-section {
  padding: 0;
}

.counter-box {
  border: 2px solid var(--rust);
  background: var(--night);
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.counter-box::before {
  content: "BAUSTOPP";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 7rem);
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  letter-spacing: 0.2em;
}

.counter-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.counter-value {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--caution);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.counter-rate {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: #f87171;
  margin-top: 0.4rem;
}

.counter-explanation {
  margin-top: 1.5rem;
  text-align: left;
}

.counter-explanation h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--night);
  margin-top: 0;
}

.counter-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.breakdown-item {
  background: var(--paper-alt);
  border-left: 3px solid var(--rust);
  padding: 0.75rem;
}

.breakdown-item strong {
  display: block;
  font-family: var(--font-mono);
  color: var(--blood);
  font-size: 1rem;
}

.breakdown-item span {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--rust);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--night);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-top: 0.35rem;
}

/* Article blocks */
.article-block {
  background: var(--paper);
  border: 1px solid var(--line);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.article-block-header {
  padding: 1rem 1.25rem 0;
}

.article-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  color: var(--night);
}

.section-intro {
  color: var(--ink-muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.article-with-image {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .article-with-image {
    grid-template-columns: 280px 1fr;
  }

  .article-with-image.image-right {
    grid-template-columns: 1fr 280px;
  }

  .article-with-image.image-right .article-image {
    order: 2;
  }
}

.article-image {
  position: relative;
  min-height: 180px;
}

.article-image img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.article-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.35rem 0.6rem;
}

.article-body {
  padding: 1.25rem;
}

.article-body p {
  margin: 0 0 1rem;
  color: var(--ink);
}

.article-body p:last-child {
  margin-bottom: 0;
}

/* Scholz */
.scholz-portrait {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .scholz-portrait {
    grid-template-columns: 220px 1fr;
  }
}

.scholz-card {
  background: var(--night);
  color: #fff;
  padding: 1.5rem;
  text-align: center;
}

.scholz-card .height {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--caution);
  line-height: 1;
}

.scholz-card .height-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-top: 0.5rem;
}

/* News */
.news-grid {
  display: grid;
  gap: 1rem;
}

.news-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.news-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (min-width: 600px) {
  .news-card.has-image {
    grid-template-columns: 220px 1fr;
  }

  .news-card.featured.has-image {
    grid-template-columns: 340px 1fr;
  }
}

.news-card-image img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.news-card-body {
  padding: 1rem 1.15rem;
}

.news-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--rust);
}

.news-card h3 {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.1rem;
  font-family: var(--font-serif);
  line-height: 1.3;
  color: var(--night);
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
}

.news-card h3 a:hover {
  color: var(--rust);
}

.news-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.news-source {
  font-size: 0.75rem;
  color: var(--concrete);
  margin-top: 0.6rem;
}

.news-tag {
  display: inline-block;
  background: var(--rust);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.15rem 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.news-card.featured {
  border-color: var(--rust);
  border-width: 2px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  padding: 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.gallery-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-item.featured {
  grid-column: span 2;
}

@media (max-width: 600px) {
  .gallery-item.featured {
    grid-column: span 1;
  }
}

.gallery-caption {
  padding: 0.75rem;
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}

.gallery-caption strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-serif);
}

.gallery-caption span {
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.gallery-credit {
  font-size: 0.7rem;
  color: var(--concrete);
  margin-top: 0.25rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  border-left: 3px solid var(--line);
  margin-left: 0.5rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--caution);
  border: 3px solid var(--paper);
  outline: 2px solid var(--line);
  border-radius: 50%;
}

.timeline-item.scholz::before {
  background: var(--rust);
}

.timeline-media {
  margin-bottom: 0.75rem;
  border: 1px solid var(--line);
}

.timeline-media img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--rust);
  font-weight: 600;
}

.timeline-item h3 {
  margin: 0.2rem 0 0.5rem;
  font-size: 1.1rem;
  font-family: var(--font-serif);
}

.timeline-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.scholz-tag {
  display: inline-block;
  background: var(--scholz-grey);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.12rem 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* Page hero */
.page-hero {
  background: var(--paper);
  border-bottom: 3px solid var(--rust);
  padding: 0;
}

.page-hero-banner {
  height: 120px;
  overflow: hidden;
}

.page-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(30%);
}

.page-hero-text {
  padding: 1.25rem 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  color: var(--night);
}

.page-hero p {
  margin: 0.5rem 0 0;
  color: var(--ink-muted);
  max-width: 65ch;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-height: 85vh;
  max-width: 90vw;
  border: 3px solid #fff;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--rust);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-family: var(--font-display);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 1.5rem;
  border-top: 4px solid var(--night);
  background: var(--night);
  color: #9ca3af;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-grid h4 {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 0.75rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.35rem;
}

.footer-grid a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-grid a:hover {
  color: #fff;
}

.disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #374151;
  font-size: 0.78rem;
  color: #6b7280;
  max-width: 80ch;
}

.copyright {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: #4b5563;
}

.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rust);
  margin-bottom: 0.25rem;
}

.hero-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rust);
  margin: 0 0 0.35rem;
}

.breadcrumb {
  padding: 0.65rem 0 0;
  font-size: 0.82rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--ink-muted);
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.35rem;
  color: var(--concrete);
}

.breadcrumb a {
  color: var(--ink-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--rust);
}

.breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.faq-section {
  padding-bottom: 2rem;
}

.faq-list {
  padding: 0 1.25rem 1.25rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
}

.faq-item summary {
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--night);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "+ ";
  color: var(--rust);
  font-family: var(--font-mono);
}

.faq-item[open] summary::before {
  content: "− ";
}

.faq-item p {
  margin: 0.5rem 0 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

/* ── Smartphone-Optimierung ── */

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.container,
.container-wide {
  width: min(1200px, calc(100vw - 1.25rem));
  padding-inline: 0.25rem;
}

@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }

  .container,
  .container-wide {
    width: calc(100vw - 1rem);
    padding-inline: 0;
  }

  /* Top-Bar: Datum ausblenden, Ticker volle Breite */
  .top-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.35rem 0;
  }

  .top-date {
    display: none;
  }

  .ticker {
    width: 100%;
  }

  .ticker-inner {
    font-size: 0.72rem;
  }

  /* Header */
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0.65rem 0;
    gap: 0.65rem;
  }

  .logo {
    font-size: 1.65rem;
    text-align: center;
  }

  .logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .nav-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
    width: 100%;
  }

  .nav-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.5rem 0.35rem;
    font-size: 0.75rem;
    text-align: center;
    background: var(--paper-alt);
    border: 1px solid var(--line);
  }

  .nav-list a:hover,
  .nav-list a.active {
    background: var(--night);
    border-color: var(--night);
  }

  /* Hero */
  .hero-banner {
    height: clamp(110px, 32vw, 160px);
  }

  .hero-content {
    margin-top: 0;
    padding: 0.75rem 0 1rem;
  }

  .hero-text {
    max-width: none;
    padding: 0.85rem 1rem;
    border-left-width: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  .hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
  }

  .hero .tagline {
    font-size: 0.9rem;
  }

  .hero .scholz-blame {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  /* Layout */
  .page-layout {
    padding: 1rem 0 2rem;
    gap: 1.25rem;
  }

  .article-block {
    margin-bottom: 1rem;
  }

  .article-block-header,
  .article-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .article-block-header {
    padding-top: 0.85rem;
  }

  .article-block h2 {
    font-size: 1.45rem;
  }

  .article-with-image .article-image {
    min-height: 200px;
  }

  .article-with-image .article-image img {
    min-height: 200px;
  }

  /* Counter */
  .counter-box {
    padding: 1rem 0.75rem;
  }

  .counter-value {
    font-size: clamp(1.4rem, 7vw, 2rem);
    word-break: break-word;
  }

  .counter-rate {
    font-size: 0.75rem;
    line-height: 1.45;
    padding: 0 0.25rem;
  }

  .counter-breakdown {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-value {
    font-size: 1.5rem;
  }

  /* News */
  .news-card.has-image,
  .news-card.featured.has-image {
    grid-template-columns: 1fr;
  }

  .news-card-image img {
    min-height: 180px;
    max-height: 220px;
  }

  .news-card h3 {
    font-size: 1rem;
  }

  .news-card-body {
    padding: 0.85rem 1rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 0.85rem;
  }

  .gallery-item.featured {
    grid-column: span 1;
  }

  .gallery-item:hover {
    transform: none;
  }

  /* Timeline */
  .timeline {
    padding: 1rem 0.75rem 1rem 1.75rem;
    margin-left: 0.25rem;
  }

  .timeline-item::before {
    left: -2.1rem;
    width: 10px;
    height: 10px;
  }

  .timeline-item h3 {
    font-size: 1rem;
  }

  .scholz-tag {
    display: block;
    margin: 0.35rem 0 0;
    width: fit-content;
  }

  /* Page hero */
  .page-hero-banner {
    height: 100px;
  }

  .page-hero-text {
    padding: 1rem 0 1.25rem;
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  /* Sidebar nach unten, volle Breite */
  .sidebar {
    order: 2;
  }

  .main-col {
    order: 1;
  }

  /* Footer */
  .site-footer {
    padding: 2rem 0 1.25rem;
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0));
  }

  .footer-grid {
    gap: 1.25rem;
  }

  /* Lightbox */
  .lightbox {
    padding: 1rem;
    padding-top: calc(1rem + env(safe-area-inset-top, 0));
  }

  .lightbox-close {
    top: calc(0.75rem + env(safe-area-inset-top, 0));
    right: 0.75rem;
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
  }

  .lightbox img {
    max-height: 80vh;
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .nav-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .stat-label {
    font-size: 0.65rem;
  }
}

/* Touch-Geräte: größere Klickflächen */
@media (hover: none) and (pointer: coarse) {
  .gallery-item {
    cursor: default;
  }

  .read-more {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.25rem 0;
  }

  .sidebar-list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.15rem 0;
  }

  .share-bar-container--sidebar .share-btn {
    min-height: 2rem;
    height: 2rem;
  }
}

/* Share bar — Sidebar, dauerhaft sichtbar */
.share-bar-container {
  margin: 0;
}

.share-bar-container--sidebar .share-bar {
  border: none;
  padding: 0;
  background: transparent;
}

.sidebar-box--share {
  padding: 1rem;
  width: 100%;
}

@media (min-width: 960px) {
  .sidebar-box--share {
    position: sticky;
    top: 1rem;
    z-index: 20;
    align-self: start;
  }
}

@media (max-width: 959px) {
  .sidebar-box--share {
    position: fixed;
    right: 0.65rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0));
    z-index: 100;
    width: min(300px, calc(100vw - 1.3rem));
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }
}

.share-bar {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1rem 1.25rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.share-bar-container--sidebar .share-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.3rem;
  width: 100%;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--paper-alt);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  border-radius: 2px;
}

.share-bar-container--sidebar .share-btn {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  height: 2rem;
  min-height: 2rem;
  padding: 0;
  font-size: 0;
  justify-content: center;
  gap: 0;
}

.share-bar-container--sidebar .share-btn__icon svg {
  width: 14px;
  height: 14px;
}

.share-bar-container--sidebar .share-btn__text {
  display: none;
}

.share-btn:hover,
.share-btn:focus-visible {
  background: var(--share-color, var(--blood));
  border-color: var(--share-color, var(--blood));
  color: #fff;
  outline: none;
}

.share-btn__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.share-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: var(--night);
  color: #fff;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 2px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.share-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 959px) {
  .share-toast {
    bottom: calc(12rem + env(safe-area-inset-bottom, 0));
  }
}