/* Lokal ausgelieferte Schriften. Keine externen Verbindungen. */
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap;
  src: url(/fonts/inter-latin-400-normal.woff2) format("woff2");
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap;
  src: url(/fonts/inter-latin-500-normal.woff2) format("woff2");
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap;
  src: url(/fonts/inter-latin-600-normal.woff2) format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url(/fonts/cormorant-garamond-latin-wght-normal.woff2) format("woff2-variations");
}

:root {
  --bg: #0c0d11;
  --bg-2: #12141a;
  --surface: #171a22;
  --surface-2: #1d212b;
  --line: #2a2f3b;
  --line-soft: #21252f;
  --gold: #c9a253;
  --gold-soft: #e0c27f;
  --gold-dim: rgba(201, 162, 83, 0.14);
  --text: #e9e7e2;
  --muted: #a3a099;
  --muted-2: #7d7a74;
  --white: #fbfaf8;
  --radius: 4px;
  --maxw: 1140px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.25rem); margin-top: 2.4rem; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); margin-top: 1.9rem; }
h4 { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; margin-top: 1.5rem; }

p { margin: 0 0 1.15rem; }
ul, ol { margin: 0 0 1.3rem; padding-left: 1.25rem; }
li { margin-bottom: 0.5rem; }
strong { color: var(--white); font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line-soft); margin: 2.5rem 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }

/* ---------- Kopfzeile ---------- */

.topbar {
  background: #08090c;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.8rem;
  color: var(--muted-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; min-height: 38px; flex-wrap: wrap;
}
.topbar a { color: var(--muted); }

header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 13, 17, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--white);
  letter-spacing: 0.02em;
}
.brand-name em { font-style: normal; color: var(--gold); }
.brand-sub { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); }

nav.main { display: flex; align-items: center; gap: 4px; }
nav.main > .navitem { position: relative; }
nav.main a.navlink {
  display: block; padding: 10px 12px; font-size: 0.9rem; color: var(--text);
  border-radius: var(--radius); white-space: nowrap;
}
nav.main a.navlink:hover, nav.main a.navlink.active { color: var(--gold-soft); background: var(--gold-dim); text-decoration: none; }
nav.main .submenu {
  position: absolute; top: 100%; left: 0; min-width: 268px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: opacity .15s ease, transform .15s ease, visibility .15s;
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
}
nav.main .navitem:hover .submenu, nav.main .navitem:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
nav.main .submenu a {
  display: block; padding: 8px 12px; font-size: 0.88rem; color: var(--text); border-radius: 3px;
}
nav.main .submenu a:hover { background: var(--gold-dim); color: var(--gold-soft); text-decoration: none; }

.navtoggle {
  display: none; background: none; border: 1px solid var(--line); color: var(--text);
  padding: 9px 14px; border-radius: var(--radius); font-family: var(--sans); font-size: 0.85rem;
  cursor: pointer; letter-spacing: 0.05em;
}

@media (max-width: 1080px) {
  .navtoggle { display: block; }
  nav.main {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 12px 24px 22px; max-height: 78vh; overflow-y: auto;
  }
  nav.main.open { display: flex; }
  nav.main > .navitem { position: static; }
  nav.main a.navlink { padding: 12px 4px; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  nav.main .submenu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; background: transparent; padding: 4px 0 10px 14px; min-width: 0;
  }
  nav.main .submenu a { padding: 7px 0; color: var(--muted); font-size: 0.85rem; }
  header.site .wrap { position: relative; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 420px at 78% 12%, rgba(201,162,83,.12), transparent 62%),
    linear-gradient(180deg, #0f1117 0%, var(--bg) 100%);
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 54px; align-items: center; padding-top: 74px; padding-bottom: 74px; }
.hero .eyebrow {
  font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.hero h1 { margin-bottom: 18px; }
.hero .lead { font-size: 1.12rem; color: var(--muted); max-width: 46ch; }
.hero-art { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 34px; padding-top: 48px; padding-bottom: 48px; }
}

.pagehead {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #101219 0%, var(--bg) 100%);
  padding: 52px 0 44px;
}
.pagehead .eyebrow {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.pagehead h1 { margin-bottom: 14px; }
.pagehead .lead { font-size: 1.08rem; color: var(--muted); max-width: 70ch; margin-bottom: 0; }

/* ---------- Buttons ---------- */

.btnrow { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
  display: inline-block; padding: 13px 24px; border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.03em; border: 1px solid var(--gold);
  background: var(--gold); color: #14100a;
}
.btn:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: #14100a; text-decoration: none; }
.btn.ghost { background: transparent; color: var(--gold-soft); }
.btn.ghost:hover { background: var(--gold-dim); color: var(--gold-soft); }

/* ---------- Sektionen ---------- */

section.band { padding: 68px 0; border-bottom: 1px solid var(--line-soft); }
section.band.alt { background: var(--bg-2); }
.section-head { max-width: 68ch; margin-bottom: 34px; }
.section-head h2 { margin-top: 0; }
.section-head p { color: var(--muted); margin-bottom: 0; }

.grid { display: grid; gap: 22px; }
.grid.g2 { grid-template-columns: repeat(2, 1fr); }
.grid.g3 { grid-template-columns: repeat(3, 1fr); }
.grid.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid.g3, .grid.g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .grid.g2, .grid.g3, .grid.g4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column;
}
.card h3 { margin-top: 0; margin-bottom: 10px; font-size: 1.28rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 14px; }
.card .more { margin-top: auto; font-size: 0.88rem; letter-spacing: 0.04em; }
.card:hover { border-color: #3a4152; }
.card .num {
  font-family: var(--serif); font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 12px;
}
.card-ico { width: 42px; height: 42px; margin-bottom: 16px; }

.linkcard { text-decoration: none; color: inherit; }
.linkcard:hover { text-decoration: none; }

/* ---------- Inhalt ---------- */

.content { padding: 54px 0 76px; }
.content .wrap { min-width: 0; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; align-items: start; }
@media (max-width: 1000px) { .content-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; } }

.prose { max-width: 74ch; min-width: 0; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul li::marker { color: var(--gold); }
.prose ol li::marker { color: var(--gold); font-variant-numeric: tabular-nums; }

.aside { position: sticky; top: 100px; }
.aside .box {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; margin-bottom: 20px;
}
.aside .box h4 { margin: 0 0 12px; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.aside .box ul { list-style: none; padding: 0; margin: 0; }
.aside .box li { margin-bottom: 9px; font-size: 0.92rem; }
.aside .box li:last-child { margin-bottom: 0; }
.aside .box a { color: var(--text); }
.aside .box a:hover { color: var(--gold-soft); }
.aside .box a.current { color: var(--gold); font-weight: 500; }
.aside .box p { font-size: 0.9rem; color: var(--muted); margin-bottom: 10px; }

/* ---------- Bausteine ---------- */

.note {
  border-left: 2px solid var(--gold); background: var(--surface);
  padding: 20px 22px; margin: 26px 0; border-radius: 0 var(--radius) var(--radius) 0;
}
.note p:last-child { margin-bottom: 0; }
.note .note-title {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; font-weight: 600;
}

.factbox {
  border: 1px solid var(--line); background: var(--bg-2); border-radius: var(--radius);
  padding: 24px; margin: 28px 0;
}
.factbox h4 { margin-top: 0; }
.factbox dl { margin: 0; display: grid; grid-template-columns: minmax(140px, 34%) 1fr; gap: 10px 18px; }
.factbox dt { color: var(--muted-2); font-size: 0.86rem; letter-spacing: 0.04em; }
.factbox dd { margin: 0; font-size: 0.95rem; }
@media (max-width: 560px) { .factbox dl { grid-template-columns: 1fr; gap: 2px 0; } .factbox dd { margin-bottom: 10px; } }

.checklist { list-style: none; padding: 0; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 11px; }
.checklist li::before {
  content: ""; position: absolute; left: 4px; top: 0.62em;
  width: 9px; height: 9px; border: 1px solid var(--gold); transform: rotate(45deg);
}

.steps { list-style: none; padding: 0; counter-reset: st; }
.steps li { counter-increment: st; position: relative; padding-left: 56px; margin-bottom: 24px; }
.steps li::before {
  content: counter(st); position: absolute; left: 0; top: -2px;
  width: 38px; height: 38px; border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--serif); font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.steps li strong { display: block; margin-bottom: 4px; }

.tablewrap { overflow-x: auto; margin: 26px 0; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 0.94rem; min-width: 460px; }
th, td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); }
th { background: var(--bg-2); color: var(--gold); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.09em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }

details.faq {
  border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; background: var(--surface);
}
details.faq summary {
  padding: 17px 20px; cursor: pointer; font-weight: 500; color: var(--white); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; line-height: 1; flex: none; }
details.faq[open] summary::after { content: "\2013"; }
details.faq .faq-body { padding: 0 20px 18px; color: var(--muted); }
details.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Partnerblok ---------- */

.partner {
  border: 1px solid rgba(201,162,83,.34); background: linear-gradient(180deg, rgba(201,162,83,.07), rgba(201,162,83,.02));
  border-radius: var(--radius); padding: 26px 28px; margin: 34px 0;
}
.partner .label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.partner h3 { margin-top: 0; margin-bottom: 10px; font-size: 1.35rem; }
.partner p { color: var(--muted); margin-bottom: 16px; }
.partner ul { margin-bottom: 16px; }
.partner .plinks { display: flex; flex-wrap: wrap; gap: 10px; }
.partner .plinks a {
  display: inline-block; padding: 11px 20px; border: 1px solid var(--gold); color: var(--gold-soft);
  border-radius: var(--radius); font-size: 0.9rem;
}
.partner .plinks a:hover { background: var(--gold); color: #14100a; text-decoration: none; }

/* ---------- News ---------- */

.newslist { display: grid; gap: 20px; }
.newsitem {
  border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius);
  padding: 26px 28px; display: grid; grid-template-columns: 108px 1fr; gap: 26px; align-items: start;
}
.newsitem .date {
  font-family: var(--serif); color: var(--gold); font-size: 1.05rem; line-height: 1.35; padding-top: 2px;
}
.newsitem h3 { margin: 0 0 8px; font-size: 1.32rem; }
.newsitem p { color: var(--muted); margin-bottom: 10px; font-size: 0.95rem; }
@media (max-width: 620px) { .newsitem { grid-template-columns: 1fr; gap: 10px; } }

.meta { font-size: 0.82rem; color: var(--muted-2); letter-spacing: 0.05em; margin-bottom: 26px; }
.tag {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,162,83,.4); padding: 3px 10px; border-radius: 20px;
}

/* ---------- Lexikon ---------- */

.alphabet { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 34px; }
.alphabet a, .alphabet span {
  display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  border: 1px solid var(--line); border-radius: var(--radius); font-size: 0.86rem;
}
.alphabet span { color: var(--muted-2); opacity: .4; }
.lexgroup { margin-bottom: 40px; }
.lexgroup > h2 {
  font-size: 2rem; color: var(--gold); border-bottom: 1px solid var(--line); padding-bottom: 8px; margin-bottom: 20px;
}
.lexitem { margin-bottom: 20px; }
.lexitem h3 { margin: 0 0 5px; font-size: 1.15rem; font-family: var(--sans); font-weight: 600; }
.lexitem p { color: var(--muted); margin-bottom: 0; font-size: 0.95rem; }

/* ---------- Breadcrumb ---------- */

.crumbs { font-size: 0.82rem; color: var(--muted-2); padding: 16px 0 0; }
.crumbs a { color: var(--muted); }
.crumbs span { margin: 0 7px; opacity: .5; }

/* ---------- Fußzeile ---------- */

footer.site {
  background: #08090c; border-top: 1px solid var(--line); padding: 56px 0 28px; margin-top: 0;
  font-size: 0.92rem;
}
footer.site .fgrid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 900px) { footer.site .fgrid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { footer.site .fgrid { grid-template-columns: 1fr; } }
footer.site h4 {
  font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 14px;
}
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 8px; }
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--gold-soft); }
footer.site p { color: var(--muted-2); font-size: 0.9rem; }
.fbottom {
  border-top: 1px solid var(--line-soft); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 0.84rem; color: var(--muted-2);
}
.fbottom nav { display: flex; flex-wrap: wrap; gap: 18px; }
.agecheck {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 18px;
  font-size: 0.86rem; color: var(--muted); margin-bottom: 28px; display: flex; gap: 14px; align-items: center;
}
.agecheck .badge {
  flex: none; width: 40px; height: 40px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  font-family: var(--serif); font-size: 0.95rem; font-weight: 600;
}

/* ---------- Sonstiges ---------- */

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--gold); color: #14100a;
  padding: 10px 18px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

.err { text-align: center; padding: 110px 0; }
.err h1 { font-size: clamp(3rem, 12vw, 7rem); color: var(--gold); margin-bottom: 10px; }

.cta-strip {
  background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 46px 0;
}
.cta-strip .wrap { display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.cta-strip h2 { margin: 0 0 6px; font-size: 1.7rem; }
.cta-strip p { margin: 0; color: var(--muted); }

.pagination { display: flex; justify-content: space-between; gap: 16px; margin-top: 46px; flex-wrap: wrap; }
.pagination a { font-size: 0.9rem; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 660px) { .stats { grid-template-columns: 1fr; } }
.stat { border-left: 1px solid var(--line); padding-left: 20px; }
.stat .n { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat p { color: var(--muted); font-size: 0.92rem; margin: 0; }
