/* Design-Tokens: zentrale Farben, Abstände und Radien. */
:root {
  --paper:#f3eee4;
  --paper-deep:#ffffff;
  --ink:#172128;
  --muted:#4f5b62;
  --line:#b9b5ac;
  --accent:#25634f;
  --accent-soft:#d2e7dd;
  --focus:#a83d0c;
  --link-hover:#b44616;
  --hero-bg:#17252d;
  --hero-ink:#fffaf0;
  --hero-muted:#dce5e4;
  --music-bg:#243f52;
  --music-ink:#f7fbfd;
  --panel-shadow:0 24px 55px -38px rgba(23,33,40,.55);
  --radius:18px;
  --card-text:#111820;
  --card-humor:#dceef8;
  --card-humor-hover:#df994a;
  --card-puzzle:#fbe2cb;
  --card-puzzle-hover:#f7adad;
  --card-discovery:#fff0b8;
  --card-discovery-hover:#ef4e0a;
}
:root[data-theme="dark"] {
  --paper:#101416;
  --paper-deep:#1d2326;
  --ink:#f5f1e9;
  --muted:#bdc5c8;
  --line:#50585c;
  --accent:#8bd0b1;
  --accent-soft:#263d35;
  --focus:#ffb276;
  --link-hover:#ffad72;
  --hero-bg:#090d0f;
  --hero-ink:#fffaf0;
  --hero-muted:#cbd5d7;
  --music-bg:#173243;
  --music-ink:#f7fbfd;
  --panel-shadow:0 26px 60px -38px rgba(0,0,0,.9);
}

/* Basis und globale Layout-Regeln. */
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
}
body {
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:system-ui,-apple-system,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
  transition:background .25s ease, color .25s ease;
}
a {
  color:inherit;
}
.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.external-link-icon {
  margin-left:.28em;
  font-family:system-ui,-apple-system,"Segoe UI",sans-serif;
  font-size:.72em;
  font-weight:700;
  vertical-align:.18em;
}
.skip-link {
  position:fixed;
  top:12px;
  left:12px;
  z-index:1000;
  padding:10px 16px;
  border-radius:8px;
  color:#fff;
  background:var(--focus);
  font-weight:700;
  text-decoration:none;
  transform:translateY(-200%);
}
.skip-link:focus {
  transform:translateY(0);
  outline:3px solid var(--ink);
  outline-offset:3px;
}
.site-header, main, .site-footer {
  width:min(1120px, calc(100% - 48px));
  margin-inline:auto;
}

/* Kopfbereich und Navigation. */
.site-header {
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border-bottom:2px solid var(--line);
}
.brand {
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
  letter-spacing:-.03em;
  text-decoration:none;
}
.brand span {
  color:var(--accent);
}
nav {
  display:flex;
  gap:24px;
}
nav a {
  color:var(--muted);
  font-size:14px;
  font-weight:500;
  text-decoration:none;
}
nav a:hover, nav a:focus-visible {
  color:var(--accent);
}
.header-right {
  display:flex;
  align-items:center;
  gap:24px;
}
.theme-toggle {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  padding:0;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--paper-deep);
  color:var(--ink);
  cursor:pointer;
  transition:background .18s ease, border-color .18s ease;
}
.theme-toggle:hover {
  border-color:var(--accent);
}
.theme-toggle:focus-visible,
.link-card:focus-visible,
.button:focus-visible,
.editorial-item a:focus-visible,
.highlight-item a:focus-visible,
nav a:focus-visible,
.site-footer a:focus-visible {
  outline:3px solid var(--focus);
  outline-offset:3px;
}
.theme-toggle svg {
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.theme-toggle .icon-moon {
  display:none;
}
:root[data-theme="dark"] .theme-toggle .icon-sun {
  display:none;
}
:root[data-theme="dark"] .theme-toggle .icon-moon {
  display:block;
}

/* Hero-Bereich. */
.hero {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:clamp(36px,7vw,92px);
  align-items:center;
  margin:32px 0 72px;
  padding:clamp(40px,7vw,80px);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  color:var(--hero-ink);
  background:var(--hero-bg);
  box-shadow:var(--panel-shadow);
}
.eyebrow, .section-label {
  margin:0 0 16px;
  color:var(--accent);
  font-size:12px;
  font-weight:600;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.eyebrow {
  text-transform:none;
}
h1, h2 {
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  letter-spacing:-.045em;
}
h1 {
  max-width:9ch;
  margin:0 0 24px;
  font-size:clamp(52px,7vw,88px);
  line-height:.96;
}
.intro {
  max-width:48ch;
  margin:0 0 30px;
  color:var(--muted);
  font-size:clamp(20px,2vw,23px);
  line-height:1.55;
}
.accent-text {
  color:var(--accent);
}
:root[data-theme="dark"] .intro {
  color:#f2f0eb;
}
:root[data-theme="dark"] .intro .accent-text {
  color:#91d4b7;
}
.hero .eyebrow {
  color:#9bd6bd;
}
.hero .intro {
  color:var(--hero-muted);
}
.hero .button {
  border-color:rgba(255,250,240,.72);
  color:var(--hero-ink);
}
.hero .button:hover {
  background:rgba(255,255,255,.1);
}
.hero .button-primary {
  border-color:#78b99c;
  color:#102019;
  background:#9bd6bd;
}
.actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border:1px solid var(--ink);
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  transition:transform .18s ease, background .18s ease;
}
.button:hover {
  transform:translateY(-2px);
}
.button-primary {
  color:white;
  background:var(--accent);
  border-color:var(--accent);
}
.portrait {
  position:relative;
  aspect-ratio:4/4.7;
  overflow:hidden;
  border-radius:var(--radius);
  border:2px solid rgba(255,250,240,.78);
  background:#25353d;
}
.portrait img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  filter:saturate(.92) contrast(1.03);
}
.portrait::after {
  content:"";
  position:absolute;
  inset:0;
  border:1px solid rgba(32,45,53,.1);
  border-radius:inherit;
  pointer-events:none;
}
.legal-note {
  margin-bottom:48px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

/* Entdecken-Bereich und Link-Karten. */
.explore {
  margin:0 0 32px;
  padding:clamp(30px,5vw,56px);
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--paper-deep);
  box-shadow:var(--panel-shadow);
}
.explore-head {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:26px;
}
.focus-label {
  margin:0 0 12px;
  color:var(--accent);
  font-family:Georgia,"Times New Roman",serif;
  font-size:20px;
  font-weight:600;
  letter-spacing:-.01em;
  text-transform:none;
}
h2 {
  margin:0;
  font-size:clamp(32px,4vw,48px);
  line-height:1;
}
.link-grid {
  display:grid;
  clear:both;
  width:100%;
  grid-template-columns:repeat(3,minmax(0,1fr));
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}
.link-card {
  --card-background:var(--paper-deep);
  --card-background-hover:var(--accent-soft);
  min-height:205px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:24px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  color:var(--card-text);
  background:var(--card-background);
  text-decoration:none;
  transition:background .18s ease;
}
.link-card:hover, .link-card:focus-visible {
  background:var(--card-background-hover);
}
.link-card--humor {
  --card-background:var(--card-humor);
  --card-background-hover:var(--card-humor-hover);
}
.link-card--puzzle {
  --card-background:var(--card-puzzle);
  --card-background-hover:var(--card-puzzle-hover);
}
.link-card--discovery {
  --card-background:var(--card-discovery);
  --card-background-hover:var(--card-discovery-hover);
}
.link-card .link-type, .link-card .arrow {
  color:var(--card-text);
}
.link-type {
  font-size:12px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.link-title {
  max-width:14ch;
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  line-height:1.06;
  letter-spacing:-.03em;
}
.arrow {
  color:var(--accent);
  font-size:22px;
}

/* Große Inhaltsmodule. */
.feature-panel {
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
  align-items:center;
  padding:clamp(28px,5vw,48px);
  border-radius:var(--radius);
  box-shadow:var(--panel-shadow);
}
.feature-panel h2 {
  font-size:clamp(38px,5vw,58px);
}
.music-feature {
  margin:0 0 32px;
  color:var(--music-ink);
  background:var(--music-bg);
}
.music-feature .section-label {
  color:#9bd6bd;
}
.music-copy {
  max-width:42ch;
  margin:16px 0 0;
  color:var(--muted);
  line-height:1.6;
}
.music-feature .music-copy {
  color:#dce6eb;
}
.music-feature .button-primary {
  border-color:#9bd6bd;
  color:#102019;
  background:#9bd6bd;
}
.music-art {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:7px;
}
.music-art span {
  display:grid;
  place-items:center;
  aspect-ratio:1;
  overflow:hidden;
  color:#fff;
  background:linear-gradient(145deg,#172d49,#4c7a9c 48%,#e1a651 49%);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.15);
}
.music-art span:nth-child(2) {
  background:linear-gradient(145deg,#27183f,#6d3e89);
}
.music-art span:nth-child(3) {
  background:linear-gradient(145deg,#bc2f2a,#ec9047);
}
.music-art span:nth-child(4) {
  background:linear-gradient(145deg,#20252a,#6f7880);
}
.music-art svg {
  width:72%;
  height:72%;
  fill:none;
  stroke:currentColor;
  stroke-width:4;
  stroke-linecap:round;
  stroke-linejoin:round;
  filter:drop-shadow(0 4px 3px rgba(0,0,0,.25));
}
.glubb {
  margin:0 0 76px;
  color:#fff;
  background:#8c1c26;
}
.glubb .section-label {
  color:#f6c8cd;
}
.glubb-copy {
  max-width:42ch;
  margin:16px 0 0;
  color:#f9e9eb;
  line-height:1.6;
}
.glubb-actions {
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-start;
  gap:12px;
}
.glubb .button {
  border-color:#fff;
  color:#fff;
}
.glubb .button-primary {
  color:#72131c;
  background:#fff;
}
/*
Kleine redaktionelle Hinweise/Links:
.editorial-grid ist der zweispaltige Container für mehrere Einträge.
.editorial-item liefert jedem Eintrag die gemeinsame Typografie und Trennlinie.
*/
.editorial-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  padding-bottom:78px;
}
.editorial-item {
  padding:24px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--paper-deep);
  box-shadow:0 16px 35px -32px rgba(23,33,40,.7);
  transition:border-color .18s ease, transform .18s ease;
}
.editorial-item:hover {
  border-color:var(--accent);
  transform:translateY(-2px);
}
.editorial-item p {
  margin:0 0 8px;
  color:var(--muted);
  font-size:13px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.editorial-item a,
.highlight-item a {
  font-family:Georgia,"Times New Roman",serif;
  line-height:1.25;
  text-decoration:none;
}
.editorial-item a {
  font-size:22px;
}
.editorial-item a:hover {
  color:var(--link-hover);
}

/* Kompakte Empfehlungen zum aktuellen Schwerpunktthema. */
.highlights {
  margin:0 0 32px;
  padding:0;
  list-style:none;
}
.highlight-item {
  display:grid;
  grid-template-columns:minmax(100px,auto) minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
  margin-bottom:10px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--paper);
  transition:border-color .18s ease, transform .18s ease, background .18s ease;
}
.highlight-item:hover {
  border-color:var(--accent);
  background:var(--accent-soft);
  transform:translateX(4px);
}
.highlight-heading {
  margin:0;
  font:inherit;
}
.highlight-tag {
  justify-self:start;
  padding:4px 10px;
  border-radius:999px;
  color:var(--accent);
  background:var(--accent-soft);
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  line-height:1.4;
  text-transform:uppercase;
}
.highlight-item a {
  font-size:18px;
  font-weight:600;
}
.highlight-item a:hover {
  color:var(--link-hover);
}
.highlight-note {
  color:var(--accent);
  font-size:18px;
  line-height:1.4;
  text-align:right;
}
/* Fußbereich und responsive Anpassungen. */
.site-footer {
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:25px 0 32px;
  border-top:2px solid var(--line);
  color:var(--muted);
  font-size:13px;
}
@media (max-width:720px) {
  .site-header, main, .site-footer {
    width:min(100% - 32px, 560px);
  }
  .site-header {
    align-items:flex-start;
    padding:18px 0;
  }
  .header-right {
    flex:1;
    flex-direction:column-reverse;
    align-items:flex-end;
    gap:12px;
  }
  nav {
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:10px 16px;
  }
  nav a {
    padding:4px 0;
  }
  .hero, .feature-panel {
    grid-template-columns:1fr;
    gap:26px;
  }
  .hero {
    margin:20px 0 52px;
    padding:40px 24px;
  }
  .explore {
    padding:28px 20px;
  }
  .portrait {
    max-height:480px;
    order:-1;
  }
  .link-grid {
    grid-template-columns:1fr;
  }
  .link-card {
    min-height:142px;
  }
  .link-title {
    max-width:none;
  }
  .editorial-grid {
    grid-template-columns:1fr;
    gap:12px;
  }
  .highlight-item {
    grid-template-columns:1fr;
    gap:7px;
    padding:16px 0;
  }
  .highlight-note {
    text-align:left;
  }
  .site-footer {
    flex-direction:column;
  }
}
@media (max-width:430px) {
  .site-header {
    flex-direction:column;
  }
  .header-right {
    width:100%;
    align-items:flex-start;
  }
  nav {
    justify-content:flex-start;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  body, .button, .link-card, .theme-toggle, .highlight-item, .editorial-item {
    transition:none;
  }
}
