/* Oase des Weltfriedens — shared styles */
:root {
  --cream: #FFFFFF;
  --cream-2: #FFFFFF;
  --sand: #EADFB8;
  --navy: #0F2A4A;
  --navy-2: #1B365B;
  --gold: #C49A3F;
  --gold-soft: #D9B25E;
  --ink: #2A2A2A;
  --muted: #6E6E6E;
  --border: #E2D9BE;
  --max: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: "Mulish", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Media never overflows its container on small screens */
img, svg, video { max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  overflow-wrap: break-word;
}

.serif-italic { font-style: italic; color: var(--gold); font-weight: 500; }

.reg {
  font-size: 0.42em;
  vertical-align: super;
  font-weight: 400;
  margin-left: 0.08em;
  color: inherit;
  line-height: 0;
  font-family: "Mulish", sans-serif;
  font-style: normal;
}

p .reg,
.footer .reg,
.meta .reg {
  font-size: 0.7em;
  font-weight: 700;
  margin-left: 0.1em;
}

.eyebrow {
  font-family: "Mulish", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.mono { font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace; }

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(15, 42, 74, 0.08);
}
.site-header .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 32px 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 28px;
}
@media (max-width: 720px) {
  .site-header .inner { padding: 10px 16px; }
}
.brand-banner {
  position: relative;
  flex: 1 1 100%;
  width: 100%;
  max-width: none;
  display: block;
}
.brand-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.brand-banner-home {
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
  height: 100%;
}

.row-break { flex-basis: 100%; height: 0; }

.logo-mark {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 4px 14px 4px 4px;
  border-radius: 14px;
  border: 1px dashed rgba(15,42,74,0.25);
  background: rgba(255,255,255,0.4);
}
.logo-tile {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--cream-2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-tile svg { width: 36px; height: 36px; }
.logo-words { display: flex; flex-direction: column; line-height: 1.1; }
.logo-words strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
}
.logo-words em {
  font-family: "JetBrains Mono", monospace;
  font-style: normal;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
@media (max-width: 1100px) { .logo-words { display: none; } }
@media (max-width: 720px) { .logo-mark { display: none; } }

/* Hero logo placeholder */
.hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px; height: 120px;
  border-radius: 24px;
  background: var(--cream-2);
  border: 1px dashed rgba(15,42,74,0.3);
  margin: 0 auto 32px;
}
.hero-logo svg { width: 84px; height: 84px; }
.hero-logo + h1 { margin-top: 0; }
.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav a {
  font-family: "Mulish", system-ui, sans-serif;
  font-weight: 600;
  font-size: 17.5px;
  color: var(--navy);
  padding: 10px 2px 12px;
  position: relative;
  letter-spacing: 0.02em;
  transition: color .25s ease;
}
.nav a:before {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: left .35s cubic-bezier(.25,.46,.45,.94),
              right .35s cubic-bezier(.25,.46,.45,.94);
}
.nav a:hover {
  color: var(--gold);
}
.nav a:hover:before {
  left: 0;
  right: 0;
}
.nav a.active {
  color: var(--gold);
}
.nav a.active:before {
  left: 0;
  right: 0;
}
.nav a.active:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}
.spacer { flex: 1; }

/* Page wrap */
.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 32px;
}

/* Section header */
.section-eyebrow {
  margin-bottom: 28px;
  font-size: 19px;
  letter-spacing: 0.2em;
}
.section-eyebrow .num { color: var(--gold); }
.section-eyebrow .num:after { content: " · "; }
.page-title {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.05;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.page-quote {
  font-family: "Cormorant Garamond", "Garamond", serif;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.2;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 40px;
  padding: 0;
  text-wrap: balance;
  max-width: 980px;
}
.page-quote .serif-italic {
  font-style: italic;
  color: var(--gold);
}
.page-quote cite {
  display: block;
  margin-top: 26px;
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* Two-col layout */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}
.two-col p { font-size: 18px; }
.two-col p + p { margin-top: 18px; }
.two-col em { font-style: italic; color: var(--navy); }
.two-col-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -32px rgba(15, 42, 74, 0.35);
  object-fit: cover;
}

.peace-section {
  margin-top: -120px;
  max-width: 820px;
}
.two-col + .peace-section { margin-top: -120px; }
.two-col > div > p:last-child { margin-bottom: 0; }
.peace-heading {
  font-family: "Cormorant Garamond", "Garamond", serif;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--navy);
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 18px;
  font-weight: 600;
}
.peace-heading:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.peace-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.peace-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Mulish", sans-serif;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.4;
}
.peace-bullet {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 6px;
}

/* Image placeholder */
.img-ph {
  position: relative;
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  background:
    repeating-linear-gradient(135deg,
      rgba(196,154,63,0.06) 0 12px,
      rgba(15,42,74,0.04) 12px 24px),
    linear-gradient(135deg, #E8E8EE 0%, #F2E8C9 100%);
  overflow: hidden;
}
.img-ph.tall { aspect-ratio: 4 / 5; }
.img-ph.wide { aspect-ratio: 16 / 10; }
.img-ph.square { aspect-ratio: 1 / 1; }
.img-ph .ph-label {
  position: absolute;
  left: 22px; bottom: 18px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  color: rgba(15,42,74,0.55);
  letter-spacing: 0.02em;
}

/* Cards row */
.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.card {
  background: #FBF3D8;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px 24px;
  display: flex; flex-direction: column;
  gap: 12px;
  min-height: 280px;
  min-width: 0; /* allow grid items to shrink so long words don't overflow */
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.card h3 { overflow-wrap: break-word; hyphens: auto; }
.card:hover {
  background: #F2DD96;
  transform: translateY(-2px);
  border-color: var(--gold-soft);
  box-shadow: 0 14px 30px -20px rgba(15,42,74,0.25);
}
.card .icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: linear-gradient(160deg, var(--gold-soft), var(--gold));
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  margin-bottom: 6px;
  box-shadow: 0 8px 20px -8px rgba(196,154,63,0.6);
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 28px; }
.card p { color: var(--ink); font-size: 14.5px; line-height: 1.5; margin: 0; flex: 1; }
.card .more {
  margin-top: 8px;
  align-self: flex-start;
  background: var(--navy);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: "Mulish", sans-serif;
  font-weight: 600; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
}
.card .more:hover { background: var(--navy-2); }

/* Quote band */
.quote-band {
  background: linear-gradient(180deg, #14315A 0%, #0F2A4A 100%);
  color: var(--cream);
  padding: 120px 32px;
  text-align: center;
  border-top: 4px solid var(--gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 1000px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.2;
  font-weight: 400;
}
.quote-band cite {
  display: block;
  margin-top: 36px;
  font-style: normal;
  font-family: "Mulish", sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
  font-weight: 600;
}

/* Tinted band */
.tint-band {
  background: var(--cream-2);
  padding: 96px 0;
}
.tint-band .page { padding: 0 32px; }

/* Footer */
.footer {
  background: var(--cream);
  border-top: 4px solid var(--gold);
  box-shadow: inset 0 1px 0 rgba(15, 42, 74, 0.08);
  padding: 80px 32px 32px;
}
.footer .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(15,42,74,0.08);
}
.footer h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  margin-bottom: 18px;
}
.footer .brand-row { display: flex; gap: 18px; align-items: center; margin-bottom: 18px; }
.footer .brand-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 28px 36px;
  border: 4px solid var(--gold);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(15, 42, 74, 0.08);
  background: var(--cream);
  transition: opacity .2s, transform .2s;
}
.footer .brand-logo img {
  height: 160px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer .brand-logo:hover { opacity: 0.85; transform: translateY(-2px); }
@media (max-width: 720px) {
  .footer .brand-logo { padding: 20px 24px; }
  .footer .brand-logo img { height: 110px; }
}
.footer p { color: var(--muted); font-size: 14.5px; margin: 0 0 14px; }

.footer .footer-col h4 {
  font-size: 44px;
  line-height: 1.05;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 18px;
  letter-spacing: -0.01em;
}
.footer .footer-col h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.footer-links li {
  border-bottom: 1px solid rgba(15, 42, 74, 0.06);
}
.footer-links li:last-child {
  border-bottom: none;
}
.footer-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 4px 13px 0;
  font-family: "Mulish", system-ui, sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  transition: color .2s, padding-left .2s, background .2s;
}
.footer-links a .arrow {
  font-size: 22px;
  line-height: 1;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s, transform .25s;
  font-family: "Mulish", sans-serif;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 10px;
}
.footer-links a:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}
.footer-legal {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 42, 74, 0.08);
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: "Mulish", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-legal a {
  color: var(--muted);
  font-weight: 600;
  transition: color .2s;
}
.footer-legal a:hover {
  color: var(--gold);
}
.footer-legal .dot {
  color: var(--border);
}
.footer .meta {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

/* Timeline (Historie) */
.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 56px;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 6px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--gold-soft);
  opacity: 0.6;
}
.tl-item { position: relative; padding-bottom: 56px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item:before {
  content: "";
  position: absolute;
  left: -32px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
}
.tl-meta {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.tl-item h3 { font-size: 30px; margin-bottom: 10px; }
.tl-item p { margin: 0; color: var(--ink); font-size: 18px; line-height: 1.6; }
.tl-item p + p, .tl-item .dash-list + p { margin-top: 14px; }
.tl-item p + .dash-list { margin-top: 14px; }

/* Image comparison slider (Plan vs Modell) */
.image-slider {
  --pos: 50%;
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  background: var(--cream);
  box-shadow: 0 18px 40px -24px rgba(15, 42, 74, 0.3);
}
.image-slider .slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}
.image-slider .slider-img-top {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.image-slider .slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.image-slider .slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--cream);
  box-shadow: 0 0 0 1px rgba(15, 42, 74, 0.25);
}
.image-slider .slider-knob {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px -4px rgba(15, 42, 74, 0.45),
              0 0 0 2px var(--gold);
  transition: transform .15s ease, box-shadow .15s ease;
}
.image-slider:hover .slider-knob {
  transform: scale(1.06);
  box-shadow: 0 8px 22px -4px rgba(15, 42, 74, 0.55),
              0 0 0 3px var(--gold);
}
.image-slider .slider-knob svg {
  width: 22px;
  height: 22px;
}
.image-slider .slider-label {
  position: absolute;
  top: 16px;
  font-family: "Mulish", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: 2;
}
.image-slider .slider-label-left { left: 16px; }
.image-slider .slider-label-right { right: 16px; }

.slider-caption {
  max-width: 560px;
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.slider-caption strong {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.slider-caption .slider-hint {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* Modell — diagram + legend */
.modell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  margin-top: 40px;
}
.legend { display: flex; flex-direction: column; gap: 22px; }
.legend-item { display: grid; grid-template-columns: 32px 1fr; gap: 16px; align-items: start; padding: 12px 14px; border-radius: 12px; }
.legend-item.active { background: var(--cream-2); }
.legend-num {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  font-size: 12px;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.legend-num.star { background: var(--gold); }
.legend-item h4 { font-size: 24px; margin-bottom: 4px; color: var(--navy); }
.legend-item p { margin: 0; color: var(--muted); font-size: 17px; }

.dash-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.dash-list li { padding-left: 22px; position: relative; font-size: 18px; color: var(--ink); }
.dash-list li:before { content: "–"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.year-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.year-list li { display: flex; gap: 18px; align-items: flex-start; }
.year-list .year { flex-shrink: 0; min-width: 40px; font-weight: 700; color: var(--navy); font-size: 19px; }
.year-list .year-content { flex: 1 1 auto; min-width: 0; font-size: 19px; line-height: 1.5; color: var(--ink); }
.year-list .year-sub { display: block; margin-top: 2px; font-size: 16px; color: var(--muted); font-weight: 400; }
.tl-item p + .year-list { margin-top: 24px; }

/* Exhibits list */
.exhibits {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}
.exhibit {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.exhibits .exhibit:first-child { padding-top: 0; }
.exhibits .exhibit:last-child { border-bottom: none; }
.exhibit .exhibit-text { display: flex; flex-direction: column; gap: 16px; }
.exhibit .img-ph { aspect-ratio: 16 / 11; }
.exhibit .img-ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section-subtitle { margin: 56px 0 0; }
.section-subtitle + .exhibits { margin-top: 16px; }
.exhibit-stub { padding: 48px 0; border-bottom: 1px solid var(--border); }
.exhibits .exhibit-stub:last-child { border-bottom: none; }
.exhibit .img-ph .pill {
  position: absolute;
  left: 16px; bottom: 14px;
  background: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--navy);
  border: 1px solid var(--border);
}
.exhibit .meta {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.exhibit h3 { font-size: 32px; line-height: 1.2; }
.exhibit p { margin: 0; color: var(--ink); font-size: 18px; line-height: 1.6; }
.section-subtitle { font-size: 28px; font-weight: 700; }
.exhibit-stub h3 { font-size: 32px; line-height: 1.2; }

/* Reference letter card */
.reference-card {
  position: relative;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 64px 40px 96px;
  margin-top: 24px;
  max-width: 1040px;
}
.reference-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 320px;
  line-height: 1;
  color: var(--gold-soft);
  opacity: 0.35;
  position: absolute;
  top: -120px;
  left: -20px;
  z-index: 0;
  pointer-events: none;
}
.reference-card .eyebrow { position: relative; z-index: 1; display: block; margin-bottom: 28px; }
.reference-body {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  line-height: 1.55;
  color: var(--navy);
}
.reference-body p { margin: 0 0 20px; }
.reference-body p:last-child { margin-bottom: 0; }
.reference-attribution {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.reference-attribution strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
}
.reference-attribution span {
  display: block;
  margin-top: 2px;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  color: var(--muted);
}
.reference-meta {
  margin-top: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}
.reference-meta a { color: var(--gold); overflow-wrap: anywhere; }
@media (max-width: 720px) {
  .reference-card { padding: 48px 28px 32px; }
  .reference-mark { display: none; }
}

/* Legal pages (Impressum, Datenschutz) */
.legal-text { max-width: 760px; margin-top: 16px; }
.legal-text h2 { font-size: 26px; margin-top: 48px; margin-bottom: 14px; }
.legal-text h2:first-child { margin-top: 0; }
.legal-text h3 { font-size: 21px; margin-top: 32px; margin-bottom: 10px; }
.legal-text h4 { font-family: "Mulish", sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-top: 22px; margin-bottom: 8px; }
.legal-text p { font-size: 17px; line-height: 1.65; margin: 0 0 14px; color: var(--ink); }
.legal-text a { color: var(--gold); overflow-wrap: anywhere; }
.legal-text .dash-list { margin-bottom: 14px; }
.legal-text .legal-source { margin-top: 32px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }

/* Slideshow */
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 80vh;
  overflow: hidden;
  background: var(--navy);
}
.slideshow .slides {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1200ms ease, visibility 0s linear 1200ms;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1200ms ease, visibility 0s;
  animation: kenburns 8s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,42,74,0.15) 0%, rgba(15,42,74,0) 30%, rgba(15,42,74,0.85) 100%);
  pointer-events: none;
}
.slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px 64px;
  color: var(--cream);
  transform: translateY(16px);
  opacity: 0;
  transition: transform 900ms ease, opacity 900ms ease;
  transition-delay: 200ms;
}
.slide.is-active .slide-caption {
  transform: translateY(0);
  opacity: 1;
}
.slide-caption .eyebrow {
  color: var(--gold-soft);
  display: inline-block;
  margin-bottom: 14px;
}
.slide-caption h2 {
  color: var(--cream);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 600;
  text-wrap: balance;
  max-width: 760px;
  margin-bottom: 14px;
}
.slide-caption .serif-italic { color: var(--gold-soft); }
.slide-caption p {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.slide-caption .slide-cite {
  font-family: "Mulish", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-top: 18px;
}
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(15,42,74,0.35);
  backdrop-filter: blur(6px);
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
  z-index: 2;
}
.slide-nav:hover {
  background: rgba(196,154,63,0.85);
  border-color: var(--gold);
}
.slide-nav svg { width: 22px; height: 22px; }
.slide-prev { left: 24px; }
.slide-next { right: 24px; }
.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.slide-dot {
  width: 28px; height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background .25s, width .25s;
}
.slide-dot:hover { background: rgba(255,255,255,0.7); }
.slide-dot.is-active {
  background: var(--gold);
  width: 44px;
}
@media (max-width: 720px) {
  .slideshow { aspect-ratio: 4 / 5; }
  .slide-caption { padding: 0 20px 56px; }
  .slide-nav { width: 40px; height: 40px; }
  .slide-prev { left: 12px; }
  .slide-next { right: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .slide.is-active { animation: none; transform: scale(1); }
  .slide { transition: opacity 200ms linear; }
  .slide-caption { transition: none; }
}

/* Hero */
.hero {
  padding: 120px 32px 64px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: clamp(44px, 5.5vw, 78px);
  line-height: 1.08;
  text-wrap: balance;
}
.hero .lead {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.55;
}
.hero .rule {
  width: 64px; height: 3px;
  background: var(--gold);
  margin: 36px auto 0;
  border-radius: 2px;
}

/* Hero image strip */
.hero-image {
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 0 32px;
}
.hero-image .img-ph { aspect-ratio: 21 / 9; }
.hero-image-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% calc(50% - 3mm);
  display: block;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -32px rgba(15, 42, 74, 0.35);
}

/* Hero attribution block (under image) */
.hero-attrib {
  max-width: var(--max);
  margin: 56px auto 0;
  padding: 0 32px;
  text-align: center;
}
.hero-attrib h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-attrib-mark {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
}
.hero-attrib-mark img {
  height: 180px;
  width: auto;
  display: block;
  border-radius: 12px;
}
.hero-attrib p {
  font-family: "Mulish", sans-serif;
  font-size: 17px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0;
}
@media (max-width: 720px) {
  .hero-attrib { padding: 0 20px; margin-top: 40px; }
  .hero-attrib-mark img { height: 130px; }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
}
.contact-card h3 { font-size: 28px; margin-bottom: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; text-transform: uppercase; }
.field input, .field textarea {
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--gold-soft); border-color: var(--gold); }
.field textarea { min-height: 140px; resize: vertical; }
.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  font-size: 15px;
}
.btn-primary:hover { background: var(--navy-2); }

.info-row { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(15,42,74,0.08); }
.info-row:last-child { border: 0; }
.info-row .ic {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.info-row .ic svg { width: 18px; height: 18px; }
.info-row strong { display: block; color: var(--navy); font-family: "Cormorant Garamond", serif; font-size: 19px; }
.info-row span { color: var(--ink); font-size: 14.5px; }

/* Hamburger / mobile nav */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--navy);
  border-radius: 8px;
  margin-left: 4px;
}
.hamburger:hover { background: var(--cream-2); }
.hamburger svg { width: 24px; height: 24px; display: block; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(15,42,74,0.08);
}
.mobile-nav a {
  font-family: "Mulish", system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  padding: 10px 12px;
  border-radius: 10px;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover { background: var(--cream-2); }
.mobile-nav a.active { color: var(--gold); }

.site-header.nav-open .mobile-nav { display: flex; }

/* Responsive */
@media (max-width: 960px) {
  .nav { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; }
  .mobile-nav { display: none; }
  .site-header.nav-open .mobile-nav { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .modell-grid { grid-template-columns: 1fr; padding: 24px; }
  .exhibit { grid-template-columns: 1fr; gap: 24px; }
  .footer .inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .page { padding: 64px 20px; }
  .hero { padding: 80px 20px 48px; }
  .hero-image { padding: 0 20px; }
  .quote-band { padding: 80px 20px; }
  .footer { padding: 60px 20px 24px; }
  .footer .meta { flex-direction: column; gap: 4px; }
  /* Stacked layout: the negative pull used beside the desktop image
     would otherwise overlap the now-stacked content above it. */
  .peace-section,
  .two-col + .peace-section { margin-top: 40px; }
  .footer .footer-col h4 { font-size: 36px; }
}

/* Small phones */
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
  .card { min-height: 0; padding: 24px 20px; }
  .card h3 { font-size: 26px; }
  .page { padding: 56px 18px; }
  .hero { padding: 64px 18px 40px; }
  .hero-image { padding: 0 18px; }
  .hero .lead { font-size: 17px; }
  .page-quote { font-size: clamp(24px, 7vw, 32px); }
  .quote-band { padding: 64px 18px; }
  .quote-band blockquote { font-size: clamp(24px, 7vw, 34px); }
  .section-subtitle,
  .exhibit-stub h3,
  .exhibit h3 { font-size: 26px; }
  .footer { padding: 48px 18px 24px; }
  .footer .footer-col h4 { font-size: 30px; }
  /* Image-comparison slider: let the page scroll vertically while still
     allowing horizontal drags on the handle. */
  .slider-caption { flex-wrap: wrap; justify-content: center; gap: 6px 16px; }
  .timeline { padding-left: 26px; }
  .tl-item:before { left: -26px; }
}

/* Touch devices: hover-only affordances shouldn't get stuck "on" */
@media (hover: none) {
  .footer-links a .arrow { opacity: 1; transform: translateX(0); }
}
