/* =================================================================
   VERLAG-KI – Stylesheet
   Ruhige, leicht technische Farbwelt: Dunkelblau + Creme, Orange als
   Akzent. Jede Themenwelt bekommt zusätzlich eine eigene Akzentfarbe
   über --world-accent (inline gesetzt). Hell/Dunkel via [data-theme].
   ================================================================= */

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

:root {
  color-scheme: light;
  --bg:        #FBF7EF;   /* warmes Creme */
  --surface:   #FFFFFF;
  --surface-2: #F3ECDD;   /* Sand-Creme */
  --ink:       #16304A;   /* tiefes Dunkelblau (Text) */
  --ink-soft:  #4A5B6E;
  --muted:     #6E7C8A;
  --line:      #E6DECB;
  --line-soft: #EFE8D8;
  --accent:    #E06A2C;   /* Orange – Kauf/CTA/Marke */
  --accent-ink:#B8501C;
  --accent-soft:#FBEADD;
  --petrol:    #0E7C86;
  --sage:      #5B8A3A;
  --sand:      #B08422;
  --shadow:    0 10px 30px rgba(22,48,74,0.10);
  --shadow-sm: 0 4px 14px rgba(22,48,74,0.08);
  --radius:    18px;
  --radius-lg: 28px;
  --world-accent: var(--petrol);
  --world-grad: linear-gradient(135deg,#0E7C86,#14505A);
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg:        #10171F;
  --surface:   #182230;
  --surface-2: #1E2A3A;
  --ink:       #E8EDF2;
  --ink-soft:  #B7C2CF;
  --muted:     #8A97A6;
  --line:      #2A3949;
  --line-soft: #232F3D;
  --accent:    #F1834A;
  --accent-ink:#F6A277;
  --accent-soft:#2A2018;
  --petrol:    #3BAAB4;
  --sage:      #8ABF66;
  --sand:      #D8A94A;
  --shadow:    0 10px 30px rgba(0,0,0,0.40);
  --shadow-sm: 0 4px 14px rgba(0,0,0,0.30);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); }
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 20px; }

/* Sichtbarer Fokus für Tastaturbedienung */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 8px;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 300;
  background: var(--ink); color: var(--bg); padding: 10px 16px;
  border-radius: 10px; font-weight: 600; transition: top .15s;
}
.skip-link:focus { top: 12px; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; gap: 16px; padding: 12px 20px; max-width: 1220px; margin: 0 auto; }
.brand { display: flex; flex-direction: column; text-decoration: none; flex-shrink: 0; }
.brand-mark {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: 1.35rem; letter-spacing: 0.02em; color: var(--ink);
}
.brand-mark em { font-style: normal; color: var(--accent); }
.brand-tag { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: -2px; }

.header-search { flex: 1; max-width: 520px; position: relative; }
.header-search input {
  width: 100%; padding: 11px 16px 11px 42px;
  border: 1.5px solid var(--line); border-radius: 999px;
  background: var(--surface); color: var(--ink);
  font-size: 0.95rem; font-family: inherit; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.header-search input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.header-search .s-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.header-tools { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 42px; min-width: 42px; padding: 0 12px;
  border: 1.5px solid var(--line); border-radius: 999px;
  background: var(--surface); color: var(--ink); cursor: pointer;
  font-size: 1.05rem; font-family: inherit; text-decoration: none;
  transition: background .15s, border-color .15s;
  position: relative;
}
.icon-btn:hover { background: var(--surface-2); border-color: var(--muted); }
.icon-btn .count {
  font-size: 0.72rem; font-weight: 700; min-width: 19px; height: 19px;
  padding: 0 5px; border-radius: 999px; background: var(--accent); color: #fff;
  display: none; align-items: center; justify-content: center; line-height: 1;
}
.icon-btn .count.show { display: inline-flex; }
.contact-btn {
  height: 42px; padding: 0 16px; border-radius: 999px;
  border: 1.5px solid var(--line); background: transparent; color: var(--ink);
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  display: inline-flex; align-items: center;
}
.contact-btn:hover { border-color: var(--ink); }

/* Hauptnavigation (Desktop) */
.mainnav { border-top: 1px solid var(--line-soft); background: color-mix(in srgb, var(--bg) 88%, transparent); }
.mainnav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 2px; max-width: 1220px; margin: 0 auto; padding: 4px 16px; }
.mainnav a {
  display: block; padding: 8px 12px; border-radius: 10px;
  text-decoration: none; color: var(--ink-soft); font-size: 0.86rem; font-weight: 500;
  transition: background .15s, color .15s;
}
.mainnav a:hover, .mainnav a[aria-current="page"] { background: var(--surface-2); color: var(--ink); }

/* Mobile-Menü */
.menu-btn { display: none; }
.mobile-nav { display: none; }
@media (max-width: 860px) {
  .mainnav { display: none; }
  .contact-btn { display: none; }
  .menu-btn { display: inline-flex; }
  .brand-tag { display: none; }
  .header-search { max-width: none; }
  .mobile-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 86vw);
    background: var(--surface); z-index: 250; padding: 76px 20px 24px;
    transform: translateX(100%); transition: transform .22s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.2); overflow-y: auto;
  }
  .mobile-nav.open { display: block; transform: translateX(0); }
  .mobile-nav ul { list-style: none; }
  .mobile-nav a { display: block; padding: 13px 12px; border-radius: 12px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 1rem; }
  .mobile-nav a:hover { background: var(--surface-2); }
  .mobile-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 240; opacity: 0; pointer-events: none; transition: opacity .2s; }
  .mobile-backdrop.open { opacity: 1; pointer-events: auto; }
}

/* Header schrumpft beim Scrollen (Suche kleiner) auf Mobil */
@media (max-width: 860px) {
  .site-header.shrink .header-search input { padding-top: 8px; padding-bottom: 8px; font-size: 0.88rem; }
}

/* ── LIVE-SUCHE Dropdown ── */
.search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 120;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); overflow: hidden; display: none;
}
.search-results.show { display: block; }
.sr-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.sr-item:last-child { border-bottom: none; }
.sr-item:hover, .sr-item.active { background: var(--surface-2); }
.sr-thumb { width: 34px; height: 48px; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: var(--surface-2); }
.sr-body { flex: 1; min-width: 0; }
.sr-title { font-weight: 600; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-kind { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.sr-tag { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 3px 8px; border-radius: 999px; flex-shrink: 0; }
.sr-tag.buch { background: var(--accent-soft); color: var(--accent-ink); }
.sr-tag.welt { background: color-mix(in srgb, var(--petrol) 18%, transparent); color: var(--petrol); }
.sr-tag.artikel { background: var(--surface-2); color: var(--muted); }
.sr-more { display: block; text-align: center; padding: 11px; font-weight: 600; font-size: 0.85rem; color: var(--accent-ink); text-decoration: none; background: var(--surface-2); }
.sr-empty { padding: 20px 16px; text-align: center; color: var(--muted); font-size: 0.9rem; }
.sr-empty a { color: var(--accent-ink); font-weight: 600; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; font-weight: 600; font-size: 0.95rem; padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer; font-family: inherit; transition: transform .12s, background .15s, border-color .15s; }
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-ink); }
.btn-ink { background: var(--ink); color: var(--bg); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-world { background: var(--world-accent); color: #fff; }
.btn-block { display: flex; width: 100%; }

/* ── HERO ── */
.hero { position: relative; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 32px; align-items: center; padding: 60px 20px 40px; max-width: 1120px; margin: 0 auto; }
.hero-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 3.9rem); font-weight: 900; }
.hero h1 span { color: var(--accent); }
.hero-sub { font-size: 1.1rem; color: var(--ink-soft); margin: 14px 0 26px; max-width: 460px; }
.hero-quote { margin: 26px 0 30px; padding-left: 20px; border-left: 3px solid var(--accent); }
.hero-quote p { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.15rem; color: var(--ink); max-width: 420px; }

.pull-quote { text-align: center; }
.pull-quote blockquote { max-width: 780px; margin: 0 auto; }
.pull-quote p { font-family: 'Fraunces', serif; font-weight: 600; font-style: italic; font-size: clamp(1.5rem, 3.4vw, 2.3rem); line-height: 1.3; color: var(--ink); }
.pull-quote p::before { content: '„'; } .pull-quote p::after { content: '“'; }
.pull-quote cite { display: block; margin-top: 18px; font-family: 'Inter', sans-serif; font-style: normal; font-size: 0.95rem; color: var(--ink-soft); }
.pull-quote-mark { width: 40px; height: 3px; background: var(--accent); margin: 0 auto 26px; }
.hero-figure {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: var(--world-grad, linear-gradient(135deg,#16304A,#0E7C86));
  display: flex; align-items: flex-end; justify-content: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-figure .robot-note { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,0.92); text-align: center; padding: 24px; }
/* Echtes Roboterbild: füllt die Platzhalter-Kachel randlos aus */
.robot-note.has-img { padding: 0; border: none; background: none; overflow: hidden; }
.robot-note.has-img .robot-img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
.hero-figure .robot-glyph { font-size: 4.5rem; filter: grayscale(0.1); }
.hero-figure .robot-cap { font-size: 0.75rem; opacity: 0.8; max-width: 240px; line-height: 1.4; }
.hero-scroll-hint { text-align: center; padding-bottom: 8px; color: var(--muted); font-size: 0.8rem; }
@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr; padding: 36px 20px 24px; }
  .hero-figure { order: -1; aspect-ratio: 16/10; }
}

/* ── SECTION basics ── */
.section { padding: 56px 0; }
.section-head { margin-bottom: 28px; }
.section-head h1, .section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; }
.section-head p { color: var(--ink-soft); margin-top: 6px; max-width: 560px; }
.section-tint { background: var(--surface-2); }

/* ── MAGAZIN: Intro, Kategorien, FAQ ── */
.mag-intro { max-width: 680px; }
.mag-intro p { margin-bottom: 14px; color: var(--ink-soft); line-height: 1.7; }
.mag-intro p:last-child { margin-bottom: 28px; }
a.mag-cat { text-decoration: none; display: inline-block; }
a.mag-cat:hover { text-decoration: underline; }
.faq { max-width: 680px; }
.faq-item { border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--surface); margin-bottom: 10px; padding: 0 16px; }
.faq-item summary { cursor: pointer; font-weight: 600; padding: 14px 0; list-style-position: inside; }
.faq-item .faq-a p { color: var(--ink-soft); line-height: 1.7; padding-bottom: 14px; margin: 0; }
.book-hint-reason { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.55; margin: 4px 0 6px; }

/* ── SCHNELLEINSTIEGE ──
   Jede Kachel bekommt aus --tile-accent (inline gesetzt) ihren eigenen Farbton
   und eine Blob-Fläche in der Ecke. Icon-Motiv steuert data-shape (siehe unten). */
.quick-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 16px; }
.quick-card {
  --tile-bg: color-mix(in srgb, var(--tile-accent, var(--muted)) 20%, var(--surface));
  --tile-blob: color-mix(in srgb, var(--tile-accent, var(--muted)) 32%, var(--surface));
  display: flex; flex-direction: column; gap: 6px; padding: 24px 18px 20px; border-radius: 20px;
  background: var(--tile-bg); border: none; text-decoration: none; color: var(--ink);
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .16s, box-shadow .16s;
}
.quick-card::before { content: ""; position: absolute; width: 74px; height: 74px; border-radius: 42% 58% 63% 37%; background: var(--tile-blob); z-index: -1; }
.quick-grid .quick-card:nth-child(6n+1) { transform: rotate(-1.1deg); }
.quick-grid .quick-card:nth-child(6n+2) { transform: rotate(0.9deg); }
.quick-grid .quick-card:nth-child(6n+3) { transform: rotate(-0.8deg); }
.quick-grid .quick-card:nth-child(6n+4) { transform: rotate(1.2deg); }
.quick-grid .quick-card:nth-child(6n+5) { transform: rotate(-1deg); }
.quick-grid .quick-card:nth-child(6n+6) { transform: rotate(0.8deg); }
.quick-grid .quick-card:nth-child(6n+1)::before { top: -22px; left: -22px; }
.quick-grid .quick-card:nth-child(6n+2)::before { bottom: -20px; left: -16px; }
.quick-grid .quick-card:nth-child(6n+3)::before { top: -24px; left: 50%; transform: translateX(-50%); }
.quick-grid .quick-card:nth-child(6n+4)::before { bottom: -22px; right: -14px; }
.quick-grid .quick-card:nth-child(6n+5)::before { top: -18px; right: -18px; }
.quick-grid .quick-card:nth-child(6n+6)::before { bottom: -18px; right: -18px; }
.quick-card:hover { transform: translateY(-3px) rotate(0deg); box-shadow: var(--shadow-sm); }
.quick-icon { width: 52px; height: 52px; position: relative; margin-bottom: 6px; }
.quick-label { font-family: 'Fraunces', serif; font-weight: 900; font-size: 1.08rem; }
.quick-text { font-size: 0.85rem; color: var(--ink-soft); }

/* Icon-Motive: zwei Formen (.qi-1/.qi-2), Größe/Position je data-shape, Farbe von --tile-accent. */
.qi { position: absolute; display: block; background: var(--tile-accent, var(--muted)); }
[data-shape="orbit"] .qi-1 { inset: 0; border-radius: 50%; }
[data-shape="orbit"] .qi-2 { width: 38%; height: 38%; top: 14%; left: 14%; border-radius: 50%; background: var(--tile-bg, var(--surface)); }
[data-shape="tilt-duo"] .qi-1 { width: 62%; height: 62%; border-radius: 8px; transform: rotate(18deg); top: 2%; left: 8%; }
[data-shape="tilt-duo"] .qi-2 { width: 44%; height: 44%; border-radius: 6px; transform: rotate(-12deg); top: 48%; left: 46%; opacity: .8; }
[data-shape="pill-dot"] .qi-1 { width: 80%; height: 36%; border-radius: 999px; top: 34%; left: 4%; }
[data-shape="pill-dot"] .qi-2 { width: 30%; height: 30%; border-radius: 50%; top: 0; left: 36%; background: var(--ink); }
[data-shape="ring-dot"] .qi-1 { inset: 4%; border-radius: 50%; border: 6px solid var(--tile-accent, var(--muted)); background: transparent; box-sizing: border-box; }
[data-shape="ring-dot"] .qi-2 { width: 20%; height: 20%; border-radius: 50%; top: 42%; left: 42%; }
[data-shape="block-dot"] .qi-1 { width: 68%; height: 68%; border-radius: 9px; top: 4%; left: 4%; }
[data-shape="block-dot"] .qi-2 { width: 30%; height: 30%; border-radius: 50%; top: 52%; left: 52%; background: var(--accent); }
[data-shape="spark"] .qi-1 { width: 58%; height: 58%; border-radius: 50%; top: 4%; left: 4%; }
[data-shape="spark"] .qi-2 { width: 34%; height: 34%; border-radius: 50%; top: 48%; left: 44%; background: var(--ink); }

/* Themenwelt-Marke: gleiche Formsprache, hell auf der Verlaufsfläche. */
.world-band-mark { display: block; width: 46px; height: 46px; position: relative; margin-bottom: 16px; }
.world-band-mark .qi-1 { background: rgba(255,255,255,.94); }
.world-band-mark .qi-2 { background: var(--world-accent); }
[data-shape="ring-dot"].world-band-mark .qi-1 { border-color: rgba(255,255,255,.94); }
[data-shape="orbit"].world-band-mark .qi-2 { background: var(--world-accent); }

/* ── BOOK CARDS ── */
.book-row { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(190px, 21vw, 250px); justify-content: start; gap: 18px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.book-row .book-card { scroll-snap-align: start; }
.book-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 18px; }
@media (max-width: 460px) { .book-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.book-card { display: flex; flex-direction: column; background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .14s, box-shadow .14s, border-color .14s; position: relative; }
.book-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--world-accent, var(--accent)); }
.book-cover-link { display: block; position: relative; aspect-ratio: 2/3; background: var(--surface-2); }
.book-cover-link img { width: 100%; height: 100%; object-fit: cover; }
.book-fav {
  position: absolute; top: 8px; right: 8px; width: 36px; height: 36px; border-radius: 999px;
  border: none; background: rgba(255,255,255,0.85); backdrop-filter: blur(4px);
  cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center;
  color: #B8501C; box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: transform .12s, background .15s;
}
.book-fav:hover { transform: scale(1.08); }
.book-fav[aria-pressed="true"] { background: var(--accent); color: #fff; }
[data-theme="dark"] .book-fav { background: rgba(24,34,48,0.85); color: var(--accent); }
[data-theme="dark"] .book-fav[aria-pressed="true"] { background: var(--accent); color: #fff; }
.book-body { padding: 13px 15px 16px; display: flex; flex-direction: column; flex: 1; }
.book-cat { font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--world-accent, var(--accent-ink)); margin-bottom: 5px; }
.book-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1rem; line-height: 1.2; margin-bottom: 4px; }
.book-sub { font-size: 0.8rem; color: var(--muted); line-height: 1.45; margin-bottom: 14px; }
.book-link { margin-top: auto; text-decoration: none; }
.book-link .btn { width: 100%; padding: 10px; font-size: 0.85rem; }

.row-scroller { position: relative; }
.row-cta { margin-top: 22px; }

/* ── FILTER / TABS ── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip { padding: 8px 15px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); color: var(--ink-soft); font-size: 0.85rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: all .15s; }
.chip:hover { border-color: var(--muted); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.result-count { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.empty-note { text-align: center; padding: 48px 20px; color: var(--muted); }
.empty-note a { color: var(--accent-ink); font-weight: 600; }

/* ── THEMENWELT-SEKTIONEN (Startseite) ──
   Punktraster-Textur statt Flatcolor; Cover-Fächer statt leerer Fläche. */
.world-band {
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 22px; color: #fff;
  background-image: radial-gradient(circle, rgba(255,255,255,.10) 1.5px, transparent 1.5px), var(--world-grad);
  background-size: 16px 16px, auto; position: relative;
}
.world-band-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; align-items: center; padding: 40px 36px; }
.world-band h2 { color: #fff; font-size: 1.7rem; }
.world-band p { color: rgba(255,255,255,0.9); margin: 10px 0 18px; max-width: 420px; }
.world-fan { position: relative; height: 200px; }
.world-fan img { position: absolute; width: 120px; aspect-ratio: 2/3; object-fit: cover; border-radius: 6px; box-shadow: 0 14px 26px rgba(0,0,0,.35); }
.world-fan.world-fan-single img { width: 168px; }
@media (max-width: 680px) { .world-band-inner { grid-template-columns: 1fr; padding: 28px; } .world-fan { order: -1; height: 150px; } .world-fan img { width: 92px; } }

/* ── THEMENWELT-SEITE (Hero) ── */
.world-hero { color: #fff; background: var(--world-grad); }
.world-hero-inner { padding: 48px 20px; max-width: 1120px; margin: 0 auto; }
.world-hero h1 { color: #fff; font-size: clamp(2rem,4.5vw,3rem); }
.world-hero p { color: rgba(255,255,255,0.92); margin-top: 14px; max-width: 460px; }
.world-hero .robot-note { min-height: 240px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.10); border: 1px dashed rgba(255,255,255,0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 24px; }
.world-hero .robot-glyph { font-size: 4rem; }
.world-hero .robot-cap { font-size: 0.75rem; opacity: 0.85; max-width: 260px; }
@media (max-width: 680px) { .world-hero-inner { grid-template-columns: 1fr; padding: 32px 20px; } .world-hero .robot-note { order: -1; min-height: 170px; } }
.subcat-list { display: flex; flex-wrap: wrap; gap: 8px; }
.subcat-list .chip { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); color: #fff; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 0.82rem; color: var(--muted); padding: 16px 0 0; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }

/* ── PRODUKTSEITE ── */
.product-top { display: grid; grid-template-columns: 300px 1fr; gap: 40px; padding: 24px 0 40px; align-items: start; }
@media (max-width: 720px) { .product-top { grid-template-columns: 1fr; gap: 24px; } }
.product-cover { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--surface-2); position: sticky; top: 90px; }
@media (max-width: 720px) { .product-cover { position: static; max-width: 240px; margin: 0 auto; } }
.product-cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--world-accent, var(--accent-ink)); }
.product-top h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 8px 0; }
.product-subtitle { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 6px; }
.product-lede { color: var(--ink-soft); margin: 14px 0 22px; }

.buy-box { border: 1.5px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--surface); }
.buy-option { padding: 14px 0; }
.buy-option + .buy-option { border-top: 1px solid var(--line-soft); }
.buy-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.buy-format { font-weight: 700; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; }
.buy-price { font-family: 'Fraunces', serif; font-weight: 900; font-size: 1.3rem; }
.buy-badge { font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; background: var(--accent-soft); color: var(--accent-ink); padding: 3px 8px; border-radius: 999px; }
.buy-note { font-size: 0.78rem; color: var(--muted); margin-top: 8px; }
.buy-pending { font-size: 0.8rem; color: var(--muted); background: var(--surface-2); border: 1px dashed var(--line); border-radius: 12px; padding: 10px 12px; margin-top: 8px; }
.recommend-flag { color: var(--accent-ink); font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }

.sensitive-hint { display: flex; gap: 10px; align-items: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 13px 16px; font-size: 0.85rem; color: var(--ink-soft); margin: 22px 0; }

.prose h2 { font-size: 1.35rem; margin: 34px 0 12px; }
.prose h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.prose p { margin-bottom: 14px; color: var(--ink-soft); }
.prose ul { margin: 0 0 16px 20px; color: var(--ink-soft); }
.prose li { margin-bottom: 6px; }
.prompt-list { list-style: none; margin: 0; display: grid; gap: 10px; }
.prompt-list li { background: var(--surface-2); border: 1px solid var(--line-soft); border-radius: 12px; padding: 12px 14px; font-family: 'Inter', monospace; font-size: 0.85rem; color: var(--ink); }
.prompt-hint { font-size: 0.78rem; color: var(--muted); margin-top: 8px; }
.chapter-pending { font-size: 0.85rem; color: var(--muted); font-style: italic; }

/* ── MAGAZIN ── */
.mag-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 22px; }
.mag-card { display: flex; flex-direction: column; background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: transform .14s, box-shadow .14s; }
.mag-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.mag-thumb { aspect-ratio: 16/9; background: var(--world-grad, linear-gradient(135deg,#16304A,#0E7C86)); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: rgba(255,255,255,0.9); overflow: hidden; }
.mag-thumb.has-img { background: var(--surface-2); }
.mag-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); margin-bottom: 18px; }
.mag-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.mag-cat { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent-ink); margin-bottom: 6px; }
.mag-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.15rem; line-height: 1.25; margin-bottom: 8px; }
.mag-excerpt { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.mag-more { margin-top: auto; font-weight: 600; font-size: 0.85rem; color: var(--accent-ink); }
.article { max-width: 720px; margin: 0 auto; padding: 20px; }
.article-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 10px 0; }
.article-meta { font-size: 0.82rem; color: var(--muted); }
.article-body { margin-top: 24px; }
.article-body h2 { font-size: 1.3rem; margin: 30px 0 10px; padding-top: 22px; border-top: 1px solid var(--line); }
.article-body h2:first-child { border-top: none; padding-top: 0; }
.article-body p { margin-bottom: 16px; color: var(--ink-soft); }
.article-body > p:first-of-type::first-letter {
  font-family: 'Fraunces', serif; font-weight: 900; font-style: italic; color: var(--accent);
  float: left; font-size: 4.6em; line-height: 0.82; padding: 0.04em 0.09em 0 0;
}
.article-body blockquote { margin: 30px 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--accent); }
.article-body blockquote p { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.2rem; color: var(--ink); margin-bottom: 0; }
.book-hint { display: flex; gap: 16px; align-items: center; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; margin-top: 36px; text-decoration: none; color: inherit; }
.book-hint img { width: 64px; height: 96px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.book-hint-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.book-hint-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.05rem; }

/* ── KONTAKT / FORM ── */
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--surface); color: var(--ink); font-family: inherit; font-size: 0.95rem; outline: none; transition: border-color .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-error { color: #C0392B; font-size: 0.8rem; margin-top: 5px; display: none; }
.form-error.show { display: block; }
.form-success { display: none; background: color-mix(in srgb, var(--sage) 15%, var(--surface)); border: 1px solid var(--sage); border-radius: 14px; padding: 18px; color: var(--ink); font-weight: 600; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── MERKLISTE PANEL ── */
.mk-panel { position: fixed; inset: 0 0 0 auto; width: min(400px, 92vw); background: var(--surface); z-index: 260; transform: translateX(100%); transition: transform .24s ease; box-shadow: -12px 0 44px rgba(0,0,0,0.24); display: flex; flex-direction: column; }
.mk-panel.open { transform: translateX(0); }
.mk-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--line); }
.mk-head h2 { font-size: 1.2rem; }
.mk-list { flex: 1; overflow-y: auto; padding: 14px 20px; }
.mk-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.mk-item img { width: 44px; height: 64px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.mk-item-body { flex: 1; min-width: 0; }
.mk-item-title { font-weight: 600; font-size: 0.9rem; }
.mk-item a { color: var(--accent-ink); font-size: 0.8rem; text-decoration: none; font-weight: 600; }
.mk-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1.1rem; align-self: start; }
.mk-empty { text-align: center; color: var(--muted); padding: 40px 20px; }
.mk-note { font-size: 0.75rem; color: var(--muted); padding: 14px 20px; border-top: 1px solid var(--line); }

/* ── DANKE ── */
.thanks { text-align: center; padding: 80px 20px; max-width: 560px; margin: 0 auto; }
.thanks .glyph { font-size: 3rem; margin-bottom: 16px; }
.thanks h1 { font-size: 2.2rem; margin-bottom: 14px; }
.thanks p { color: var(--ink-soft); margin-bottom: 26px; }
.thanks .small { font-size: 0.85rem; color: var(--muted); margin-top: 20px; }

/* ── LEGAL ── */
.legal { max-width: 720px; margin: 0 auto; padding: 40px 20px 60px; }
.legal h1 { font-size: 2rem; margin-bottom: 20px; }
.legal h2 { font-size: 1.1rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 10px; }
.legal ul { margin-left: 20px; }
.legal a { color: var(--accent-ink); }

/* ── FOOTER ── */
.site-footer { background: var(--surface-2); border-top: 1px solid var(--line); margin-top: 40px; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding: 46px 20px 30px; max-width: 1120px; margin: 0 auto; }
@media (max-width: 760px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 440px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-brand .brand-mark { font-size: 1.4rem; }
.footer-brand p { color: var(--muted); font-size: 0.85rem; margin-top: 10px; max-width: 260px; }
.footer-col h3 { font-family: 'Inter', sans-serif; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted); margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { text-decoration: none; color: var(--ink-soft); font-size: 0.88rem; }
.footer-col a:hover { color: var(--accent-ink); }
.footer-bottom { border-top: 1px solid var(--line); padding: 18px 20px; text-align: center; color: var(--muted); font-size: 0.8rem; }

/* Toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color: var(--bg); padding: 12px 22px; border-radius: 999px; font-size: 0.88rem; font-weight: 600; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 300; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
