@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  background: #f9f7f4;
  font-family: "DM Sans", system-ui, sans-serif;
  color: #1c1914;
  line-height: 1.6;
}

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

a {
  color: #0011aa;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover {
  color: #000d88;
}

.geschichte-content h2, .page-content h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1c1914;
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e6e2da;
}
.geschichte-content h3, .page-content h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #0011aa;
  margin: 28px 0 10px;
}
.geschichte-content p, .page-content p {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 15px;
  line-height: 1.85;
  color: #5a5450;
  margin-bottom: 18px;
}
.geschichte-content p strong, .page-content p strong {
  color: #1c1914;
  font-weight: 700;
}
.geschichte-content blockquote, .page-content blockquote {
  border-left: 3px solid #0011aa;
  padding: 12px 24px;
  margin: 24px 0;
  background: #f3f1ed;
  font-style: italic;
  color: #5a5450;
}
.geschichte-content img, .page-content img {
  max-width: 100%;
  height: auto;
  margin: 16px 0;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e6e2da;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.site-logo-schild {
  height: 38px;
  width: auto;
  display: block;
}
.site-logo-sub {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9490;
}

.site-nav {
  display: flex;
  list-style: none;
  gap: 2px;
  margin-left: auto;
}
.site-nav li {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.site-nav a {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: 36px;
  color: #666;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.site-nav a:hover {
  background: #f3f1ed;
  color: #0011aa;
}
.site-nav a.active {
  background: #0011aa;
  color: #fff;
}

.has-dropdown.is-open > .nav-dropdown {
  display: block;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 44px;
  left: 0;
  background: #fff;
  border: 1px solid #e6e2da;
  border-top: 2px solid #0011aa;
  min-width: 0;
  width: max-content;
  z-index: 200;
  list-style: none;
}
.nav-dropdown a {
  display: block;
  height: auto;
  line-height: 1.4;
  padding: 10px 16px;
  border: none;
  border-bottom: 1px solid #e6e2da;
  font-size: 12px;
  color: #1c1914;
}
.nav-dropdown a:hover {
  background: #f3f1ed;
  color: #0011aa;
}
.nav-dropdown li:last-child a {
  border-bottom: none;
}

.dropdown-arrow {
  font-size: 10px;
  opacity: 0.5;
  transition: transform 0.2s;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #1c1914;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.home-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  background: #fff;
  border-bottom: 1px solid #e6e2da;
  max-width: 1140px;
  margin: 0 auto;
}

.home-feature {
  padding: 64px 56px;
  border-right: 1px solid #e6e2da;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  background-color: #fff;
  background-image: linear-gradient(to right, rgba(249, 247, 244, 0.97) 50%, rgba(249, 247, 244, 0.72) 100%);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.feature-tag {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #0011aa;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.feature-tag::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #0011aa;
}

.home-h1 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1;
  letter-spacing: -0.01em;
}

.home-h1-sub {
  display: block;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  font-style: normal;
  color: #9a9490;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.home-h1-main {
  display: block;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 900;
  font-style: normal;
  color: #0011aa;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.home-intro {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 15px;
  line-height: 1.8;
  color: #5a5450;
  font-style: italic;
  margin-top: 28px;
  max-width: 500px;
}

.home-stats {
  display: flex;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid #e6e2da;
  padding-top: 24px;
}

.home-stat {
  padding-right: 28px;
  border-right: 1px solid #e6e2da;
  margin-right: 28px;
}
.home-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.home-stat--countdown .home-stat-n {
  transition: opacity 0.3s;
}
.home-stat-n {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #0011aa;
  line-height: 1;
}
.home-stat-l {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1c1914;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 4px;
}

.home-termine {
  background: #0011aa;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.termine-head {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.1;
}
.termine-sub {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}
.termine-list {
  list-style: none;
  flex: 1;
}
.termine-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.termine-item:last-child {
  border-bottom: none;
}
.termine-date {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}
.termine-label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

.home-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #e6e2da;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  background: #fff;
}

.home-card {
  padding: 32px 40px;
  border-right: 1px solid #e6e2da;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.2s;
}
.home-card:last-child {
  border-right: none;
}
.home-card:hover {
  background: #f0f0ff;
}
.home-card:hover .home-card-title {
  color: #0011aa;
}
.home-card:hover .home-card-link {
  opacity: 1;
}
.home-card-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  color: #0011aa;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}
.home-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #1c1914;
  line-height: 1.15;
  transition: color 0.2s;
  margin-bottom: 10px;
}
.home-card-desc {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.65;
  color: #666;
}
.home-card-link {
  display: inline-block;
  margin-top: 16px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0011aa;
  opacity: 0;
  transition: opacity 0.2s;
}

.home-video-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-bottom: 1px solid #e6e2da;
  background: #fff;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.home-video-cell {
  padding: 40px 48px;
  border-right: 1px solid #e6e2da;
}
.home-video-cell video,
.home-video-cell iframe {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #e6e2da;
}

.home-video-label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #0011aa;
  margin-bottom: 12px;
}

.home-dappes-cell {
  padding: 40px 36px;
}
.home-dappes-cell-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1c1914;
  margin-bottom: 10px;
}

.home-dappes-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1c1914;
  margin-bottom: 10px;
}

.home-dappes-text {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 14px;
  font-style: italic;
  color: #5a5450;
  line-height: 1.7;
}

.home-sub-section {
  background: #f3f1ed;
  border-bottom: 1px solid #e6e2da;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.sub-section-label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a5450;
  padding: 16px 40px 0;
}

.sub-section-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e6e2da;
  margin-top: 12px;
}

.sub-card {
  padding: 20px 28px;
  border-right: 1px solid #e6e2da;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.sub-card:last-child {
  border-right: none;
}
.sub-card:hover {
  background: #fff;
}
.sub-card:hover .sub-card-title {
  color: #0011aa;
}
.sub-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #1c1914;
  margin-bottom: 6px;
  transition: color 0.15s;
}
.sub-card-desc {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1c1914;
  line-height: 1.5;
}

.home-zitat {
  background: #00083d;
  border-bottom: none;
  padding: 0;
}
.home-zitat-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 80px;
  border-left: none;
  position: relative;
}
.home-zitat-inner::before {
  content: "„";
  position: absolute;
  top: 28px;
  left: 56px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 180px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
}

.zitat-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.45;
  max-width: 900px;
  position: relative;
}

.zitat-source {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-block;
}

.home-hero {
  background: #0011aa;
  overflow: hidden;
}
.home-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 56px 52px;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  align-items: center;
  position: relative;
}
.home-hero-text {
  position: relative;
  z-index: 1;
}
.home-hero .home-h1 {
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.home-hero .home-h1-sub {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.home-hero .home-h1-main {
  display: block;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.home-hero .home-intro {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 520px;
  margin-top: 24px;
}
.home-hero-countdown {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 3px solid rgba(255, 255, 255, 0.6);
  padding: 28px 28px 24px;
  text-align: center;
}

.hero-cd-label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.hero-cd-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-cd-unit {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

.hero-cd-date {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.06em;
}

.home-section-label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a9490;
  display: block;
  max-width: 1140px;
  margin: 0 auto 16px;
  padding: 0 56px;
}

.home-section-termine {
  background: #f3f1ed;
  padding: 40px 0;
  border-top: 3px solid #0011aa;
  border-bottom: 1px solid #e6e2da;
}

.home-termine-inner {
  display: grid;
  grid-template-columns: auto repeat(6, 1fr);
  background: #fff;
  border: 1px solid #e6e2da;
  max-width: calc(1140px - 112px);
  margin: 0 auto;
}

.home-termine-head {
  background: #0011aa;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-termine-head span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.home-termine-head small {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
}

.home-termin-col {
  padding: 16px 14px;
  border-left: 1px solid #e6e2da;
}

.home-termin-d {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #0011aa;
  letter-spacing: 0.04em;
}

.home-termin-l {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1c1914;
  margin-top: 4px;
}

.home-content-section {
  background: #fff;
  padding: 56px 0;
  border-bottom: 1px solid #e6e2da;
}

.home-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e6e2da;
  border-left: 4px solid #0011aa;
  max-width: 1140px;
  margin: 0 auto;
}

.home-content-card {
  border-right: 1px solid #e6e2da;
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
  transition: background 0.2s;
}
.home-content-card:last-child {
  border-right: none;
}
.home-content-card:hover {
  background: #f8f8ff;
}
.home-content-card:hover .home-content-card-title {
  color: #0011aa;
}
.home-content-card:hover .home-content-card-img img {
  transform: scale(1.04);
  filter: saturate(1);
}
.home-content-card-img {
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid #e6e2da;
}
.home-content-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
  filter: saturate(0.85);
}
.home-content-card-body {
  padding: 28px 32px;
}
.home-content-card-tag {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0011aa;
  margin-bottom: 8px;
}
.home-content-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1c1914;
  margin-bottom: 10px;
  line-height: 1.15;
  transition: color 0.2s;
}
.home-content-card-desc {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.7;
  color: #5a5450;
}
.home-content-card-link {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0011aa;
  display: inline-block;
  margin-top: 14px;
}

.home-geschichte-section {
  background: #f3f1ed;
  padding: 56px 0;
  border-bottom: 1px solid #e6e2da;
}

.home-gs-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e6e2da;
  max-width: 1140px;
  margin: 0 auto;
  border: 1px solid #e6e2da;
}

.home-gs-card {
  position: relative;
  aspect-ratio: 4/5;
  background: #1c1914;
  color: #fff;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.home-gs-card .home-gs-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.3s;
  filter: saturate(0.92) brightness(0.95);
}
.home-gs-card:hover .home-gs-img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
}
.home-gs-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.85) 100%);
}

.home-gs-num {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.14em;
  z-index: 2;
}

.home-gs-meta {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.home-gs-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
}

.home-gs-desc {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.home-video-neu {
  background: #fff;
  padding: 56px 0;
  border-bottom: 1px solid #e6e2da;
}

.home-video-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e6e2da;
  max-width: 1140px;
  margin: 0 auto;
}

.home-video-cell-neu {
  padding: 36px 40px;
  background: #fff;
  border-right: 1px solid #e6e2da;
}
.home-video-cell-neu video {
  width: 100%;
  display: block;
  border: 1px solid #e6e2da;
}

.home-video-cell-label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0011aa;
  margin-bottom: 14px;
}

.home-video-caption {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  color: #9a9490;
  font-style: italic;
  margin-top: 12px;
}

.home-dappes-cell-neu {
  padding: 36px 40px;
  background: #f3f1ed;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-dappes-title-neu {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #1c1914;
  margin-bottom: 14px;
  line-height: 1.15;
  margin-top: 8px;
}

.home-dappes-link-neu {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0011aa;
  display: inline-block;
  margin-top: 24px;
  border-bottom: 1px solid #0011aa;
  padding-bottom: 4px;
  text-decoration: none;
}

.page-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
}

.page-header {
  background: #0011aa;
}

.page-header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-header-kicker {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.page-header-kicker a {
  color: rgba(255, 255, 255, 0.5);
}
.page-header-kicker a:hover {
  color: #fff;
}

.page-header h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.page-header h1 em {
  font-style: italic;
  font-weight: 400;
}

.page-content {
  background: #fff;
  padding: 56px;
  max-width: 1140px;
  margin: 0 auto;
}

.geschichte-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: start;
  background: linear-gradient(to right, #f3f1ed 240px, #fff 240px);
  border-top: 1px solid #e6e2da;
  max-width: 1140px;
  margin: 0 auto;
  min-height: 600px;
}

.geschichte-sidebar {
  border-right: 3px solid #0011aa;
  background: #f3f1ed;
  padding: 0;
  position: sticky;
  top: 68px;
  height: fit-content;
  align-self: flex-start;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}

.sidebar-toggle-cb {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.sidebar-section-head {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9490;
  padding: 20px 20px 8px;
  border-bottom: 1px solid #e6e2da;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: default;
}

.sidebar-toggle-arrow {
  display: none;
  font-size: 12px;
  transition: transform 0.2s;
}

.sidebar-nav {
  list-style: none;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #5a5450;
  border-bottom: 1px solid #e6e2da;
  text-decoration: none;
  transition: all 0.15s;
}
.sidebar-nav a:hover {
  background: #fff;
  color: #0011aa;
}
.sidebar-nav a.active {
  background: #0011aa;
  color: #fff;
  border-color: #0011aa;
}
.sidebar-nav a .arrow {
  font-size: 14px;
  opacity: 0.4;
}
.sidebar-nav a.active .arrow, .sidebar-nav a:hover .arrow {
  opacity: 1;
}

.geschichte-content {
  padding: 48px 56px;
}
.geschichte-content h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #1c1914;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.geschichte-content .content-kicker {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0011aa;
  font-weight: 600;
  margin-bottom: 24px;
  display: block;
}

.fotos-timeline {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
}

.foto-year-group {
  border-bottom: 1px solid #e6e2da;
}

.foto-year-head {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 900;
  color: #0011aa;
  padding: 24px 48px 0;
  letter-spacing: -0.02em;
}

.foto-year-content {
  padding: 16px 48px 32px;
}
.foto-year-content img {
  max-width: 100%;
}

.foto-caption {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: #9a9490;
  margin-top: 10px;
  line-height: 1.5;
}

.grenzgang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e6e2da;
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
}

.grenzgang-card {
  padding: 40px 48px;
  border-right: 1px solid #e6e2da;
  text-decoration: none;
  display: block;
  color: inherit;
  transition: background 0.2s;
}
.grenzgang-card:last-child {
  border-right: none;
}
.grenzgang-card:hover {
  background: #f0f0ff;
}
.grenzgang-card:hover .grenzgang-card-title {
  color: #0011aa;
}
.grenzgang-card-label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #0011aa;
  margin-bottom: 14px;
}
.grenzgang-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #1c1914;
  margin-bottom: 12px;
  line-height: 1.15;
  transition: color 0.2s;
}
.grenzgang-card-desc {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 14px;
  font-style: italic;
  color: #5a5450;
  line-height: 1.7;
}
.grenzgang-card-arrow {
  display: block;
  margin-top: 20px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0011aa;
}

.wuerden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  max-width: 1140px;
  margin: 0 auto;
}

.wuerden-group {
  padding: 32px 36px;
  border-right: 1px solid #e6e2da;
  border-bottom: 1px solid #e6e2da;
}
.wuerden-group:nth-child(3n) {
  border-right: none;
}
.wuerden-group-title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #0011aa;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0011aa;
}

.wuerden-list {
  list-style: none;
}
.wuerden-list li {
  padding: 7px 0;
  border-bottom: 1px solid #e6e2da;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  color: #1c1914;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.wuerden-list li:last-child {
  border-bottom: none;
}
.wuerden-list .role {
  font-size: 11px;
  color: #9a9490;
  font-weight: 400;
}
.wuerden-list .name {
  font-weight: 500;
}
.wuerden-list .note {
  font-size: 11px;
  color: #9a9490;
  font-style: italic;
  margin-top: 2px;
  display: block;
}

.galerie-section {
  background: #fff;
  border-bottom: 1px solid #e6e2da;
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px 0 40px;
}
.galerie-section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 56px 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e2da;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  background: #fff;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 56px;
}

.galerie-item {
  overflow: hidden;
  border-right: 1px solid #e6e2da;
  border-bottom: 1px solid #e6e2da;
}
.galerie-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s;
}
.galerie-item:hover img {
  transform: scale(1.04);
}

.galerie-caption {
  padding: 12px 16px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  color: #9a9490;
}

.gl-main-image {
  margin-top: 36px;
}
.gl-main-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #e6e2da;
}

.gl-image-caption {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  color: #9a9490;
  font-style: italic;
  padding: 8px 0 0;
  letter-spacing: 0.04em;
}

.gl-image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.gl-strip-item {
  overflow: hidden;
}
.gl-strip-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border: 1px solid #e6e2da;
  transition: transform 0.3s;
}
.gl-strip-item:hover img {
  transform: scale(1.04);
}
.gl-strip-item figcaption {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  color: #9a9490;
  font-style: italic;
  padding: 6px 0 0;
}

.verlauf-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 40px;
  padding: 20px;
  background: #f3f1ed;
  border-left: 3px solid #0011aa;
}
.verlauf-jumps a {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #0011aa;
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid #e6e2da;
  background: #fff;
  transition: all 0.15s;
  white-space: nowrap;
}
.verlauf-jumps a:hover {
  background: #0011aa;
  color: #fff;
  border-color: #0011aa;
}

.geschichte-content h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1c1914;
  margin: 48px 0 16px;
  padding: 16px 0 12px;
  border-top: 2px solid #e6e2da;
  border-bottom: 1px solid #e6e2da;
  scroll-margin-top: 88px;
}
.geschichte-content h2:first-of-type {
  margin-top: 32px;
}

.fahne-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  margin: 20px 0;
}
.fahne-grid a {
  display: block;
  overflow: hidden;
}
.fahne-grid .fahne-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border: 1px solid #e6e2da;
  transition: transform 0.3s, opacity 0.2s;
}
.fahne-grid a:hover .fahne-img {
  transform: scale(1.05);
  opacity: 0.9;
}

.geschichte-content .fahne-img {
  max-width: 200px;
  height: auto;
  border: 1px solid #e6e2da;
  float: right;
  margin: 0 0 16px 20px;
}

.geschichte-content .geschichte-img {
  height: auto;
  max-width: 100%;
  border: 1px solid #e6e2da;
  display: block;
}

.geschichte-content a.glightbox {
  display: block;
  margin-bottom: 24px;
}
.geschichte-content .img-grid a.glightbox {
  display: inline-block;
  margin-bottom: 0;
}

.echo-index {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
  padding: 0 56px;
}

.echo-intro {
  padding: 32px 0;
  border-bottom: 1px solid #e6e2da;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 15px;
  line-height: 1.8;
  color: #5a5450;
  font-style: italic;
}

.echo-empty {
  padding: 56px 0;
  color: #9a9490;
  font-family: "DM Sans", system-ui, sans-serif;
  font-style: italic;
}

.echo-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid #e6e2da;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.echo-card:hover {
  background: #f8f8ff;
}
.echo-card:hover .echo-card-title {
  color: #0011aa;
}
.echo-card:hover .echo-card-img img {
  transform: scale(1.04);
}
.echo-card-img {
  height: 200px;
  overflow: hidden;
  border-right: 1px solid #e6e2da;
}
.echo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.echo-card-img--placeholder {
  background: #f3f1ed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.echo-card-img--placeholder span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 13px;
  color: #9a9490;
  letter-spacing: 0.06em;
}
.echo-card-body {
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.echo-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.echo-card-date {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #0011aa;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.echo-card-num {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  color: #9a9490;
}
.echo-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1c1914;
  line-height: 1.2;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.echo-card-teaser {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.7;
  color: #5a5450;
}
.echo-card-arrow {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0011aa;
  margin-top: 16px;
}

.echo-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 56px 80px;
  background: #fff;
  border-left: 1px solid #e6e2da;
  border-right: 1px solid #e6e2da;
  min-height: 600px;
}
.echo-article h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #1c1914;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.echo-article p {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 15px;
  line-height: 1.85;
  color: #5a5450;
  margin-bottom: 20px;
}
.echo-article strong {
  color: #1c1914;
  font-weight: 700;
}

.echo-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0011aa;
  text-decoration: none;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6e2da;
  width: 100%;
}
.echo-back svg {
  transition: transform 0.2s;
}
.echo-back:hover {
  color: #000d88;
}
.echo-back:hover svg {
  transform: translateX(-3px);
}

.echo-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.echo-meta-date {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #0011aa;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.echo-meta-num {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  color: #9a9490;
}

.echo-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 6px;
  margin: 32px 0;
}
.echo-gallery--1 {
  grid-template-columns: 1fr;
  grid-template-rows: 360px;
}
.echo-gallery-main {
  grid-row: 1/3;
  overflow: hidden;
  display: block;
}
.echo-gallery--1 .echo-gallery-main {
  grid-row: 1;
}
.echo-gallery-main:hover img {
  transform: scale(1.03);
}
.echo-gallery-thumb {
  overflow: hidden;
  display: block;
}
.echo-gallery-thumb:hover img {
  transform: scale(1.05);
}
.echo-gallery-main img, .echo-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #e6e2da;
  display: block;
  transition: transform 0.3s;
}
.echo-gallery-caption {
  grid-column: 1/3;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  color: #9a9490;
  font-style: italic;
  padding-top: 4px;
}

.echo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 2px solid #e6e2da;
}

.echo-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0011aa;
  text-decoration: none;
  transition: gap 0.2s;
}
.echo-nav-link:hover {
  gap: 12px;
  color: #000d88;
}
.echo-nav-link.disabled {
  color: #9a9490;
  pointer-events: none;
}

.echo-gallery-hidden {
  display: none;
}

.gal-index {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
}

.gal-intro {
  padding: 32px 56px;
  border-bottom: 1px solid #e6e2da;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 15px;
  line-height: 1.8;
  color: #5a5450;
  font-style: italic;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e6e2da;
}

.gal-card {
  text-decoration: none;
  color: inherit;
  display: block;
  border-right: 1px solid #e6e2da;
  border-bottom: 1px solid #e6e2da;
  transition: background 0.2s;
}
.gal-card:nth-child(3n) {
  border-right: none;
}
.gal-card:hover {
  background: #f8f8ff;
}
.gal-card:hover .gal-card-title {
  color: #0011aa;
}
.gal-card:hover .gal-card-img img {
  transform: scale(1.04);
}
.gal-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-bottom: 1px solid #e6e2da;
}
.gal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gal-card-placeholder {
  width: 100%;
  height: 100%;
  background: #f3f1ed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal-card-placeholder span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
  color: #9a9490;
  letter-spacing: 0.06em;
}
.gal-card-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 3px 10px;
}
.gal-card-body {
  padding: 24px 28px;
}
.gal-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #1c1914;
  margin-bottom: 8px;
  line-height: 1.2;
  transition: color 0.2s;
}
.gal-card-teaser {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.65;
  color: #5a5450;
  margin-bottom: 12px;
}
.gal-card-link {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0011aa;
}

.gal-sammlung {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 56px 80px;
  background: #fff;
  border-left: 1px solid #e6e2da;
  border-right: 1px solid #e6e2da;
  min-height: 400px;
}

.gal-sammlung-teaser {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.8;
  color: #5a5450;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e6e2da;
}

.gal-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 6px;
}

.gal-photo-item {
  display: block;
  overflow: hidden;
}
.gal-photo-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s, opacity 0.2s;
  border: 1px solid #e6e2da;
}
.gal-photo-item:hover img {
  transform: scale(1.04);
  opacity: 0.92;
}

.gal-empty {
  padding: 56px 0;
  color: #9a9490;
  font-family: "DM Sans", system-ui, sans-serif;
  font-style: italic;
}

.gal-sammlung-content {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e6e2da;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 15px;
  line-height: 1.85;
  color: #5a5450;
}

.site-footer {
  background: #fff;
  border-top: 1px solid #e6e2da;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.footer-copy {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  color: #5a5450;
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  color: #5a5450;
  text-decoration: none;
  letter-spacing: 0.06em;
}
.footer-links a:hover {
  color: #0011aa;
}

.impressum-content {
  max-width: 760px;
  padding: 56px;
  background: #fff;
  margin: 0 auto;
}
.impressum-content h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #0011aa;
  margin: 32px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e6e2da;
}
.impressum-content h2:first-child {
  margin-top: 0;
}
.impressum-content p,
.impressum-content address {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #5a5450;
  font-style: normal;
  margin-bottom: 12px;
}

/* ── Jump-to-top Button ──────────────────────────────────────── */
.jump-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: #0011aa;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.15s;
  z-index: 500;
}
.jump-to-top:hover {
  background: #000d88;
}
.jump-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 560px) {
  .jump-to-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    padding: 0 20px;
  }
  .nav-toggle {
    display: flex;
  }
  #site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #0011aa;
    border-bottom: 1px solid #e6e2da;
    z-index: 150;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  #site-nav.is-open {
    display: block;
  }
  .site-nav {
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    padding: 8px 0;
  }
  .site-nav li {
    width: 100%;
    display: block;
    align-self: auto;
  }
  .site-nav a {
    height: auto;
    line-height: 1.4;
    padding: 13px 24px;
    border-radius: 0;
    border-bottom: 1px solid #e6e2da;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
  }
  .site-nav a:hover {
    background: #f3f1ed;
    color: #0011aa;
  }
  .site-nav a.active {
    background: #f3f1ed;
    color: #0011aa;
    border-left: 3px solid #0011aa;
    padding-left: 21px;
  }
  .site-nav li:last-child > a {
    border-bottom: none;
  }
  .has-dropdown.is-open > a .dropdown-arrow {
    transform: rotate(180deg);
  }
  .nav-dropdown {
    display: none;
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    border: none;
    box-shadow: none;
    background: #f3f1ed;
  }
  .nav-dropdown a {
    padding: 11px 24px 11px 40px;
    font-size: 12px;
    color: #5a5450;
    border-radius: 0;
    border-bottom: 1px solid #e6e2da;
    height: auto;
    line-height: 1.4;
  }
  .nav-dropdown a:hover {
    color: #0011aa;
    background: #ebe8e2;
  }
  .nav-dropdown li:last-child a {
    border-bottom: none;
  }
  .has-dropdown.is-open > .nav-dropdown {
    display: block;
  }
  .home-grid {
    grid-template-columns: 1fr;
  }
  .home-termine {
    border-top: 1px solid #e6e2da;
  }
  .home-cards {
    grid-template-columns: 1fr 1fr;
  }
  .home-video-section {
    grid-template-columns: 1fr;
  }
  .home-dappes-cell {
    border-top: 1px solid #e6e2da;
  }
  .sub-section-cards {
    grid-template-columns: 1fr 1fr;
  }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-card:nth-child(3n) {
    border-right: 1px solid #e6e2da;
  }
  .gal-card:nth-child(2n) {
    border-right: none;
  }
  .gal-sammlung {
    padding: 32px 24px 56px;
  }
  .gal-intro {
    padding: 24px;
  }
  .home-hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px 32px;
    gap: 32px;
  }
  .home-hero-countdown {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    text-align: left;
    padding: 22px 28px;
  }
  .hero-cd-label {
    margin-bottom: 0;
    text-align: right;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }
  .hero-cd-num {
    font-size: clamp(64px, 9vw, 96px);
    text-align: center;
  }
  .hero-cd-date {
    margin-top: 0;
    padding-top: 0;
    padding-left: 24px;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    text-align: left;
  }
  .home-section-label {
    padding: 0 24px;
  }
  .home-termine-inner {
    margin: 0 24px;
    display: flex;
    flex-wrap: wrap;
  }
  .home-termine-head {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
  }
  .home-termin-col {
    flex: 1 1 calc(33.333% - 1px);
    border-left: none;
    border-top: 1px solid #e6e2da;
  }
  .home-content-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }
  .home-content-card {
    border-right: none;
    border-bottom: 1px solid #e6e2da;
  }
  .home-gs-strip {
    grid-template-columns: 1fr 1fr;
  }
  .home-video-inner {
    grid-template-columns: 1fr;
  }
  .home-video-cell-neu {
    border-right: none;
    border-bottom: 1px solid #e6e2da;
  }
  .grenzgang-grid {
    grid-template-columns: 1fr;
  }
  .wuerden-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
  }
  .echo-index {
    padding: 0 24px;
  }
  .echo-card {
    grid-template-columns: 1fr;
  }
  .echo-card-img {
    border-right: none;
    border-bottom: 1px solid #e6e2da;
    height: auto;
    aspect-ratio: 16/10;
  }
  .echo-card-body {
    padding: 24px 24px 28px;
  }
  .galerie-grid {
    padding: 0 24px;
  }
  .galerie-section {
    padding: 24px 0 32px;
  }
  .galerie-section-title {
    margin: 0 24px 20px;
  }
  .geschichte-layout {
    grid-template-columns: 1fr;
    background: #fff;
  }
  .geschichte-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
    border-right: none;
    border-bottom: 3px solid #0011aa;
    background: #f3f1ed;
  }
  .sidebar-section-head {
    cursor: pointer;
    padding: 18px 24px;
    min-height: 52px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: #0011aa;
    background: #fff;
    transition: background 0.15s;
  }
  .sidebar-section-head:hover, .sidebar-section-head:active {
    background: rgba(0, 17, 170, 0.04);
  }
  .sidebar-toggle-arrow {
    display: inline-block;
    font-size: 14px;
    color: #0011aa;
    transition: transform 0.2s;
  }
  .sidebar-toggle-cb:not(:checked) ~ .sidebar-nav {
    display: none;
  }
  .sidebar-toggle-cb:checked ~ .sidebar-section-head .sidebar-toggle-arrow {
    transform: rotate(180deg);
  }
  .sidebar-toggle-cb:checked ~ .sidebar-section-head {
    border-bottom-color: #0011aa;
    background: rgba(0, 17, 170, 0.04);
  }
  .home-feature {
    padding: 40px 24px;
  }
  .page-header-inner {
    padding: 28px 24px;
  }
  .geschichte-content {
    padding: 32px 24px;
  }
  .page-content {
    padding: 32px 24px;
  }
  .site-footer {
    padding: 16px 20px;
  }
  .home-zitat-inner {
    padding: 64px 32px;
  }
  .home-zitat-inner::before {
    left: 24px;
    font-size: 120px;
  }
}
@media (max-width: 560px) {
  .home-cards {
    grid-template-columns: 1fr;
  }
  .gal-grid {
    grid-template-columns: 1fr;
  }
  .gal-card {
    border-right: none !important;
  }
  .gal-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-photo-item img {
    height: 160px;
  }
  .home-gs-strip {
    grid-template-columns: 1fr;
  }
  .home-gs-card {
    aspect-ratio: 16/10;
  }
  .home-termine-inner {
    margin: 0 16px;
  }
  .home-termin-col {
    flex: 1 1 calc(50% - 1px);
  }
  .home-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .home-stat {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }
  .wuerden-grid {
    grid-template-columns: 1fr;
  }
  .sub-section-cards {
    grid-template-columns: 1fr;
  }
  .home-h1 {
    font-size: 36px;
  }
  .echo-card-body {
    padding: 20px 20px 24px;
  }
  .echo-card-title {
    font-size: 19px;
  }
  .home-hero-countdown {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8px;
    padding: 28px 28px 24px;
  }
  .hero-cd-label {
    text-align: center;
    padding-right: 0;
    border-right: none;
    margin-bottom: 10px;
  }
  .hero-cd-num {
    font-size: 72px;
  }
  .hero-cd-date {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 14px;
    margin-top: 18px;
    text-align: center;
  }
  .foto-year-head {
    padding: 20px 24px 0;
  }
  .foto-year-content {
    padding: 12px 24px 24px;
  }
}
@media (max-width: 900px) {
  .gl-image-strip {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .gl-main-image img {
    height: 220px;
  }
  .gl-image-strip {
    grid-template-columns: 1fr;
  }
}
