:root {
  --ink: #141414;
  --text: #2A2A2A;
  --muted: #6B6B6B;
  --line: #E2E2E2;
  --orange: #F28C00;
  --sans: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; overflow-x: hidden; background: #fff; color: var(--text); font-family: var(--sans); font-size: 1.0625rem; line-height: 1.6; }

[data-lang="de"] [lang="en"], [data-lang="en"] [lang="de"] { display: none; }

a { color: var(--ink); text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--orange); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { color: var(--ink); margin: 0; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; max-width: 40em; }

.top { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line); }
.brand img { height: 2rem; width: auto; }
.top nav { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; min-width: 0; }
.top nav a { text-decoration: none; font-size: .95rem; }
.lang { display: flex; gap: .4rem; margin-left: auto; }
.lang button { font: inherit; font-size: .8rem; padding: .2rem .55rem; background: none; border: 1px solid var(--line); border-radius: 3px; color: var(--muted); cursor: pointer; }
.lang button[aria-pressed="true"] { border-color: var(--ink); color: var(--ink); }

main { padding: 0 1.5rem 3rem; max-width: 62rem; margin: 0 auto; }
section { padding: 3rem 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: none; }

/* Hero */
.hero { background: var(--orange); color: #141414; margin: 0 -1.5rem; padding: 3.5rem 1.5rem; border-bottom: none; }
.hero-inner { max-width: 56rem; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; align-items: center; }
.kicker { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; color: #141414; opacity: .8; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.02; max-width: 12em; color: #141414; }
.hero-sub { margin-top: 1.5rem; font-size: 1.1rem; max-width: 28em; color: #141414; }
.hero-art { width: 12rem; height: auto; justify-self: start; }
.dot { color: var(--orange); }
.top { background: #fff; }

/* Zweispaltige Abschnitte */
.split { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; align-items: start; min-width: 0; }
.split figure { margin: 0; }
.split img { border-radius: 4px; width: 100%; }
figcaption { font-size: .85rem; color: var(--muted); margin-top: .5rem; }

h2 { font-size: 1.1rem; margin-bottom: 1.5rem; }
h2::before { content: ""; display: inline-block; width: 1.5rem; height: 3px; background: var(--orange); vertical-align: middle; margin-right: .75rem; }
.who { border-left: 3px solid var(--orange); padding-left: 1rem; margin-top: 1.5rem; }

.theme { display: grid; grid-template-columns: 5rem minmax(0, 1fr); gap: .5rem 1.5rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.theme:first-of-type { border-top: none; }
.theme-art { width: 5rem; height: 5rem; grid-row: span 3; }
.theme h3 { font-size: 1.6rem; margin-bottom: .75rem; }
.theme div { grid-column: 2; }
.theme p { font-size: 1.05rem; }

.list { list-style: none; padding: 0; margin: 0; }
.list li { display: grid; grid-template-columns: 4rem minmax(0, 1fr); gap: .5rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.when { color: var(--muted); font-size: .9rem; padding-top: .15rem; }
.more { margin-top: 1rem; }

/* Archivseite */
.entry { padding: 2.5rem 0; border-bottom: 1px solid var(--line); }
.entry h3 { font-size: 1.4rem; margin-bottom: .25rem; }
.entry .meta { color: var(--muted); font-size: .95rem; margin-bottom: 1.25rem; }
.entry dl { display: grid; grid-template-columns: 9rem minmax(0, 1fr); gap: .3rem 1rem; margin: 0 0 1.25rem; font-size: .95rem; }
.entry dt { color: var(--muted); }
.entry dd { margin: 0; }
.entry h4 { font-size: 1rem; margin: 1.25rem 0 .4rem; color: var(--ink); }
.entry ul { max-width: 40em; }
blockquote { margin: 1rem 0; padding-left: 1rem; border-left: 3px solid var(--orange); color: var(--muted); font-style: italic; max-width: 38em; }

.contact { border-bottom: none; }
.contact p { font-size: 1.3rem; }

footer { background: #141414; color: #bbb; padding: 2rem 1.5rem; font-size: .9rem; }
footer a { color: #fff; }
footer summary { cursor: pointer; color: #fff; }
footer p { max-width: 44em; margin: 1rem auto 0; }
footer details, .copy { max-width: 62rem; margin-left: auto; margin-right: auto; }
.copy { margin-top: 1.5rem; }

@media (min-width: 48rem) {
  .top { padding: 1.5rem 3rem; }
  main { padding-left: 3rem; padding-right: 3rem; }
  footer { padding: 2.5rem 3rem; }
  .hero { margin: 0 -3rem; padding: 5rem 3rem; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) 14rem; }
  .hero-art { width: 14rem; justify-self: end; }
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
  #archiv-teaser.split { grid-template-columns: 1fr 1fr; }
  .theme { grid-template-columns: 8rem minmax(0, 1fr); gap: .5rem 2.5rem; padding: 3rem 0; }
  .theme-art { width: 8rem; height: 8rem; }
}

.entry-img { max-width: 22rem; border-radius: 4px; margin: 0 0 1.25rem; }
@media (min-width: 48rem) { .entry-img { float: right; margin: 0 0 1rem 2rem; max-width: 18rem; } .entry::after { content: ""; display: block; clear: both; } }

.jump { font-size: 1rem; }
.jump a { color: #141414; }
