/* ═══════════════════════════════════════════════════════
   SHAMANIC WORLDS · gemeinsame Design-Basis
   Wird von allen Seiten eingebunden über
   <link rel="stylesheet" href="/gemeinsam/shamanic-worlds.css">
   ═══════════════════════════════════════════════════════ */

:root {
  --bg-dark: #080d1a;
  --bg-mid: #0d1a2e;
  --bg-card: #101a30;
  --bg-card2: #162240;
  --text-main: #f5f0e8;
  --text-dim: #c8bfb0;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dim: #7a6330;
  --emerald: #2d9e6b;
  --emerald-dim: #1c6b48;
  --violet: #7b4fa6;
  --violet-dim: #4f3270;
  --font-display: 'Cinzel', serif;
  --font-body: 'EB Garamond', serif;
  --font-jp: 'Noto Serif JP', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
}

/* Lebendiger Hintergrund · zwei Layer */
body::before {
  content: '';
  position: fixed;
  inset: -10%;
  z-index: -2;
  background:
    radial-gradient(ellipse 55% 40% at 15% 28%, rgba(45,158,107,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 85% 70%, rgba(123,79,166,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 55% 35% at 50% 90%, rgba(201,168,76,0.15) 0%, transparent 65%),
    var(--bg-dark);
  animation: breathe 14s ease-in-out infinite, slow-drift 40s linear infinite;
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  inset: -10%;
  z-index: -1;
  background:
    radial-gradient(ellipse 40% 50% at 75% 20%, rgba(45,158,107,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 75%, rgba(123,79,166,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 60% 50%, rgba(201,168,76,0.09) 0%, transparent 65%);
  animation: breathe-alt 22s ease-in-out infinite, slow-drift-rev 60s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
  background-size: 200px 200px;
}

@keyframes breathe {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes breathe-alt {
  0%, 100% { opacity: 0.75; transform: scale(1.03) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(2deg); }
}
@keyframes slow-drift {
  0% { background-position: 0% 0%, 100% 100%, 50% 100%, 0 0; }
  100% { background-position: 8% 4%, 92% 96%, 55% 95%, 0 0; }
}
@keyframes slow-drift-rev {
  0% { background-position: 100% 0%, 0% 100%, 50% 50%; }
  100% { background-position: 92% 6%, 8% 94%, 48% 48%; }
}

/* Aurora-Strip */
.aurora-strip { position: relative; }
.aurora-strip::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(45,158,107,0.85) 25%, rgba(201,168,76,0.95) 50%, rgba(123,79,166,0.85) 75%, transparent 100%);
  box-shadow: 0 0 28px rgba(45,158,107,0.5), 0 0 56px rgba(123,79,166,0.35), 0 0 14px rgba(201,168,76,0.5);
  animation: aurora-shift 8s ease-in-out infinite;
  filter: blur(0.5px);
}
@keyframes aurora-shift {
  0%, 100% { opacity: 0.85; transform: translateX(-2%); }
  50% { opacity: 1; transform: translateX(2%); }
}

/* Kanji-Drift */
.kanji-drift {
  position: absolute;
  top: 50%; right: -5%;
  transform: translateY(-50%);
  font-family: var(--font-jp);
  font-size: clamp(14rem, 28vw, 32rem);
  color: rgba(201,168,76,0.14);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  font-weight: 300;
  animation: kanji-drift-anim 55s ease-in-out infinite;
  text-shadow: 0 0 40px rgba(201,168,76,0.08);
}
@keyframes kanji-drift-anim {
  0%   { transform: translateY(-50%) translateX(0); opacity: 0.14; }
  50%  { transform: translateY(-52%) translateX(-8%); opacity: 0.22; }
  100% { transform: translateY(-50%) translateX(0); opacity: 0.14; }
}
.kanji-drift.emerald { color: rgba(45,158,107,0.18); text-shadow: 0 0 40px rgba(45,158,107,0.15); }
.kanji-drift.violet { color: rgba(123,79,166,0.18); text-shadow: 0 0 40px rgba(123,79,166,0.15); }
.kanji-drift.left { left: -5%; right: auto; }

/* Scroll-Reveal · schnell und früh triggernd */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.reveal-delay-1 { transition-delay: 0.06s; }
.reveal.reveal-delay-2 { transition-delay: 0.12s; }
.reveal.reveal-delay-3 { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  body::before, body::after, .aurora-strip::after, .kanji-drift { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

/* ─── NAVIGATION ─── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,13,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo .kanji { font-size: 1.4rem; color: var(--gold-light); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 4px 0;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
}
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a::after { content: '▾'; margin-left: 6px; font-size: 0.7rem; color: var(--gold-dim); }
.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(8,13,26,0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 12px 0;
  min-width: 240px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav-item-dropdown:hover .nav-submenu,
.nav-item-dropdown:focus-within .nav-submenu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-submenu a {
  display: block;
  padding: 10px 24px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.nav-submenu a:hover { color: var(--gold); background: rgba(45,158,107,0.08); }
.nav-lang { display: flex; gap: 8px; }
.nav-lang a {
  border: 1px solid var(--gold-dim);
  color: var(--text-dim);
  padding: 4px 12px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
}
.nav-lang a.active, .nav-lang a:hover {
  background: var(--gold); color: var(--bg-dark); border-color: var(--gold);
}
.nav-lang a[lang="ja"] {
  font-family: var(--font-jp);
  font-size: 0.72rem;
  letter-spacing: 0;
  line-height: 1;
  padding: 4px 10px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 110; position: relative;
}
.nav-hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--gold); margin: 5px 0; border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(8,13,26,0.97);
  backdrop-filter: blur(20px);
  z-index: 105;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
  padding: 90px 32px 40px;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner { max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 12px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  display: block;
  transition: color 0.3s, background 0.3s, padding-left 0.3s;
}
.mobile-menu a:hover, .mobile-menu a:focus {
  color: var(--gold); background: rgba(45,158,107,0.06); padding-left: 20px;
}
.mobile-menu a.active-mobile {
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 9px;
}
.mobile-submenu-toggle {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  padding: 18px 12px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-submenu-toggle::after { content: '▾'; color: var(--gold-dim); transition: transform 0.3s; }
.mobile-submenu-toggle.open::after { transform: rotate(180deg); }
.mobile-submenu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding-left: 16px; }
.mobile-submenu.open { max-height: 400px; }
.mobile-submenu a { font-size: 0.85rem; color: var(--text-dim); padding: 14px 12px; border-bottom: 1px dashed rgba(201,168,76,0.08); }
.mobile-menu-lang { display: flex; gap: 12px; justify-content: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(201,168,76,0.15); }
.mobile-menu-lang a { border: 1px solid var(--gold-dim); padding: 8px 18px; font-size: 0.75rem; border-radius: 4px; }
.mobile-menu-lang a.active { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }
.mobile-menu-lang a[lang="ja"] { font-family: var(--font-jp); font-size: 0.85rem; letter-spacing: 0; line-height: 1; padding: 8px 14px; }
body.mobile-menu-open { overflow: hidden; }

/* ─── BUTTONS ─── */
.btn-primary, .btn-secondary, .btn-emerald {
  position: relative;
  padding: 14px 36px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 1;
  border-radius: 999px;
}
.btn-primary::before, .btn-secondary::before, .btn-emerald::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0; z-index: 0; pointer-events: none;
  transition: opacity 0.5s ease;
}
.btn-primary::before { background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,245,220,0.25) 0%, transparent 45%); }
.btn-secondary::before { background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(201,168,76,0.20) 0%, transparent 45%); }
.btn-emerald::before { background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(200,255,230,0.20) 0%, transparent 45%); }
.btn-primary:hover::before, .btn-secondary:hover::before, .btn-emerald:hover::before { opacity: 1; }
.btn-primary > *, .btn-secondary > *, .btn-emerald > * { position: relative; z-index: 2; }
.btn-primary { background: var(--gold); color: var(--bg-dark); border: none; }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(201,168,76,0.45), 0 0 20px rgba(201,168,76,0.3);
}
.btn-secondary { background: transparent; color: var(--gold); border: 1px solid var(--gold-dim); }
.btn-secondary:hover {
  border-color: var(--gold); background: rgba(201,168,76,0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.2), 0 0 20px rgba(45,158,107,0.15);
}
.btn-emerald { background: var(--emerald); color: var(--bg-dark); border: none; }
.btn-emerald:hover {
  background: #38b07b; transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(45,158,107,0.5), 0 0 20px rgba(45,158,107,0.3);
}

.hover-lift {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.hover-lift::after {
  content: '';
  position: absolute; left: 10%; right: 10%; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45,158,107,0.7) 30%, rgba(201,168,76,0.8) 50%, rgba(123,79,166,0.7) 70%, transparent);
  opacity: 0;
  transition: opacity 0.4s ease, left 0.4s ease, right 0.4s ease;
  filter: blur(1px);
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(45,158,107,0.15);
}
.hover-lift:hover::after { opacity: 1; left: 0; right: 0; }

/* ─── SECTIONS ─── */
section { padding: 100px 40px; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-jp);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold-dim); }
.section-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.18;
}
.section-h1 .accent { color: var(--gold); }
.section-h1 .emerald { color: var(--emerald); }
.section-h1 .violet { color: var(--violet); }
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--text-main);
  margin-bottom: 22px;
  line-height: 1.22;
}
.section-h2 .accent { color: var(--gold); }
.section-h2 .emerald { color: var(--emerald); }
.section-h2 .violet { color: var(--violet); }
.section-h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  color: var(--gold-light);
  margin-bottom: 14px;
  line-height: 1.35;
  letter-spacing: 0.04em;
}
.section-lead {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 720px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.definition-paragraph {
  font-size: 1.22rem;
  color: var(--text-main);
  line-height: 1.7;
  padding: 26px 30px;
  border-left: 3px solid var(--emerald);
  background: rgba(45,158,107,0.06);
  margin-bottom: 40px;
  max-width: 840px;
}
body.voodoo-magie .definition-paragraph {
  border-left-color: var(--violet);
  background: rgba(123,79,166,0.06);
}
.prose p { margin-bottom: 22px; max-width: 780px; color: var(--text-main); font-size: 1.05rem; line-height: 1.75; }
.prose p.muted { color: var(--text-dim); }
.prose ul, .prose ol { margin: 0 0 24px 24px; color: var(--text-main); font-size: 1.05rem; line-height: 1.75; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--gold-light); font-weight: 500; }
.prose em { color: var(--gold-light); }

/* Sub-Hero (kompakter Hero für Unterseiten) */
.sub-hero {
  padding: 160px 40px 80px;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.sub-hero .section-inner { max-width: 1100px; }
.sub-hero .hero-kanji-line {
  font-family: var(--font-jp);
  font-size: 1.4rem;
  color: var(--gold-dim);
  letter-spacing: 0.4em;
  margin-bottom: 20px;
}

/* BILDER */
img, .bild-platzhalter {
  border-radius: 6px;
  box-shadow: 0 0 32px rgba(45,158,107,0.35), 0 0 8px rgba(45,158,107,0.2);
  transition: box-shadow 0.4s ease;
}
img:hover, .bild-platzhalter:hover {
  box-shadow: 0 0 48px rgba(45,158,107,0.58), 0 0 16px rgba(45,158,107,0.35);
}
body.voodoo-magie img, body.voodoo-magie .bild-platzhalter,
img.glow-violett, .bild-platzhalter.glow-violett {
  box-shadow: 0 0 32px rgba(123,79,166,0.35), 0 0 8px rgba(123,79,166,0.2);
}
body.voodoo-magie img:hover, body.voodoo-magie .bild-platzhalter:hover,
img.glow-violett:hover, .bild-platzhalter.glow-violett:hover {
  box-shadow: 0 0 48px rgba(123,79,166,0.58), 0 0 16px rgba(123,79,166,0.35);
}
.bild-platzhalter {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--gold-dim);
  font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-align: center; padding: 40px 20px;
  min-height: 200px;
}
.bild-platzhalter .symbol { font-size: 2.6rem; color: var(--gold-dim); }

/* ─── FAQ ─── */
.faq-section { padding: 80px 40px; }
.faq-item {
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  box-shadow: 0 0 24px rgba(45,158,107,0.15);
  background: var(--bg-card);
  margin-bottom: 12px;
  transition: box-shadow 0.4s ease;
}
.faq-item:hover { box-shadow: 0 0 28px rgba(45,158,107,0.22); }
body.voodoo-magie .faq-item { box-shadow: 0 0 24px rgba(123,79,166,0.15); }
body.voodoo-magie .faq-item:hover { box-shadow: 0 0 28px rgba(123,79,166,0.22); }
.faq-item summary {
  padding: 20px 24px; cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '▸'; font-size: 1.2rem; color: var(--gold-dim); transition: transform 0.3s ease; }
.faq-item[open] summary::after { transform: rotate(90deg); }
.faq-item .faq-body { padding: 0 24px 20px; color: var(--text-main); font-size: 0.92rem; line-height: 1.75; }

/* ─── AUTOREN-BOX ─── */
.autoren-box {
  max-width: 1000px;
  margin: 80px auto;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.autor-eintrag h3 { font-family: var(--font-display); font-size: 1rem; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 6px; text-transform: uppercase; }
.autor-eintrag .autor-rolle { font-family: var(--font-body); font-style: italic; color: var(--text-dim); font-size: 0.9rem; margin-bottom: 14px; }
.autor-eintrag p { font-size: 0.95rem; color: var(--text-main); line-height: 1.8; margin-bottom: 10px; }
.autor-eintrag .tantracat-hinweis { font-size: 0.85rem; color: var(--text-dim); margin-top: 10px; font-style: italic; }

/* ─── FOOTER ─── */
footer.site-footer { background: var(--bg-mid); border-top: 1px solid rgba(201,168,76,0.15); padding: 80px 40px 40px; margin-top: 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo { font-family: var(--font-jp); font-size: 1.3rem; color: var(--gold); letter-spacing: 0.1em; display: block; margin-bottom: 18px; }
.footer-brand p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.78rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-dim); font-size: 0.88rem; text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 48px auto 0; padding-top: 28px; border-top: 1px solid rgba(201,168,76,0.12); text-align: center; }
.footer-bottom p { color: var(--gold-dim); font-size: 0.78rem; letter-spacing: 0.05em; }
.footer-socials { display: flex; justify-content: center; gap: 28px; margin-bottom: 20px; }
.footer-socials a { color: var(--gold-dim); transition: color 0.3s; }
.footer-socials a:hover { color: var(--gold); }
.footer-kanji { margin-top: 24px; font-family: var(--font-jp); color: rgba(201,168,76,0.15); font-size: 1.6rem; letter-spacing: 0.3em; }
.related-project { margin-top: 18px; font-size: 0.82rem; color: var(--text-dim); }
.related-project a { color: var(--gold); }

/* ─── STICKY SUB-NAV · für lange Seiten (der-weg etc.) ─── */
.sub-nav {
  position: sticky;
  top: 70px;
  z-index: 50;
  background: rgba(8,13,26,0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 40px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.sub-nav.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sub-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: center;
  height: 54px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sub-nav-inner::-webkit-scrollbar { display: none; }
.sub-nav-inner a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  padding: 4px 0;
  white-space: nowrap;
  transition: color 0.3s;
  position: relative;
}
.sub-nav-inner a:hover { color: var(--gold); }
.sub-nav-inner a.sub-active { color: var(--gold); }
.sub-nav-inner a.sub-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
}

/* ─── STICKY OPT-IN-BAR · erscheint nach Hero-Scroll ─── */
.sticky-optin {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(8,13,26,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201,168,76,0.25);
  padding: 14px 40px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}
.sticky-optin.visible { transform: translateY(0); }
.sticky-optin.dismissed { transform: translateY(100%) !important; }
.sticky-optin-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.sticky-optin-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.4;
}
.sticky-optin-text strong { color: var(--gold); font-weight: 500; }
.sticky-optin form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sticky-optin input[type="email"] {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 999px;
  color: var(--text-main);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  min-width: 240px;
  outline: none;
  transition: border-color 0.3s;
}
.sticky-optin input[type="email"]:focus { border-color: var(--gold); }
.sticky-optin button {
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.sticky-optin button:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.sticky-optin-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.3s;
}
.sticky-optin-close:hover { color: var(--gold); }

@media (max-width: 720px) {
  .sticky-optin { padding: 10px 16px; }
  .sticky-optin-inner { flex-direction: column; gap: 10px; align-items: stretch; }
  .sticky-optin-text { font-size: 0.88rem; text-align: center; }
  .sticky-optin form { flex-direction: column; gap: 8px; }
  .sticky-optin input[type="email"] { min-width: 0; width: 100%; }
  .sticky-optin button { width: 100%; }
  .sticky-optin-close { position: absolute; top: 6px; right: 10px; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav.site-nav { padding: 0 20px; height: 64px; }
  .nav-links, .nav-lang { display: none; }
  .nav-hamburger { display: block; }
  section { padding: 70px 20px; }
  .sub-hero { padding: 130px 20px 60px; }
  .autoren-box { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  body { font-size: 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  .btn-primary, .btn-secondary, .btn-emerald { padding: 12px 26px; font-size: 0.72rem; }
}

/* ═══════════════════════════════════════════════════════
   BILD-PLATZHALTER · 3 Glow-Varianten (Gold / Emerald / Plum)
   Wird durch echte Bilder ersetzt · siehe Bildplan
   ═══════════════════════════════════════════════════════ */
.bild-platzhalter {
  background: var(--bg-card);
  border: 2px dashed var(--gold-dim);
  border-radius: 8px;
  padding: 36px 28px;
  margin: 36px 0;
  text-align: center;
  position: relative;
  box-shadow: 0 0 24px rgba(201,168,76,0.22);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.bild-platzhalter:hover {
  box-shadow: 0 0 38px rgba(201,168,76,0.40);
  transform: translateY(-2px);
}
.bild-platzhalter .bild-label {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.bild-platzhalter .bild-beschreibung {
  font-family: var(--font-body);
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}
.bild-platzhalter .bild-specs {
  font-family: var(--font-body);
  color: var(--gold-dim);
  font-size: 0.78rem;
  margin-top: 12px;
  letter-spacing: 0.02em;
}
.bild-platzhalter.bild-wide {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bild-platzhalter.glow-emerald {
  border-color: rgba(45,158,107,0.35);
  box-shadow: 0 0 24px rgba(45,158,107,0.22);
}
.bild-platzhalter.glow-emerald:hover { box-shadow: 0 0 38px rgba(45,158,107,0.40); }
.bild-platzhalter.glow-emerald .bild-label { color: var(--emerald); }
.bild-platzhalter.glow-plum {
  border-color: rgba(123,79,166,0.38);
  box-shadow: 0 0 24px rgba(123,79,166,0.22);
}
.bild-platzhalter.glow-plum:hover { box-shadow: 0 0 38px rgba(123,79,166,0.40); }
.bild-platzhalter.glow-plum .bild-label { color: var(--violet); }

/* Wrapper fuer echte Bilder · gleiche Effekte */
.artikel-bild-container,
.seiten-bild-container {
  margin: 36px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(201,168,76,0.22);
}
.artikel-bild-container img,
.seiten-bild-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.artikel-bild-container figcaption,
.seiten-bild-container figcaption {
  text-align: center;
  color: var(--gold-dim);
  font-size: 0.82em;
  margin-top: 8px;
  font-style: italic;
  padding: 8px 12px;
}

/* ═══════════════════════════════════════════════════════
   APPLE-FEATURES · Utility Classes
   Zum Einsetzen auf beliebigen Seiten nach Bedarf
   ═══════════════════════════════════════════════════════ */

/* --- Chapter-Style Dividers --- */
.chapter-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 80px auto;
  max-width: 600px;
  padding: 0 40px;
}
.chapter-divider::before,
.chapter-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}
.chapter-divider-kanji {
  font-family: var(--font-jp);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.7;
}
.chapter-divider-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}

/* --- Gradient-Text fuer Ueberschriften --- */
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--emerald) 55%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gradient-text-warm {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gradient-text-cool {
  background: linear-gradient(135deg, var(--emerald), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* --- Parallax Hero --- */
.parallax-hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--parallax-bg, none) center/cover;
  transform: translateZ(-1px) scale(1.5);
  z-index: -1;
  transition: transform 0.2s linear;
  filter: brightness(0.55) saturate(1.05);
}
.parallax-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,13,26,0.4) 0%, rgba(8,13,26,0.85) 85%);
  z-index: 1;
}
.parallax-hero > * { position: relative; z-index: 2; }

/* ═══════════════════════════════════════════════════════
   HIEROGLYPH-TABLEAU · Foto-Ersatz fuer Aegypten-Inhalte
   Mehrzeiliges Tableau, Tempel-Inschrift-Aesthetik
   Eingefuehrt 2026-05-12 — kuratierte Bildsprache aus
   den ägyptischen Schriftzeichen selbst.
   ═══════════════════════════════════════════════════════ */
.glyph-tableau {
  display: block;
  margin: 32px auto;
  padding: 48px 32px;
  max-width: 640px;
  text-align: center;
  background: linear-gradient(135deg, rgba(8,13,26,0.85) 0%, rgba(13,26,46,0.85) 100%);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 0 60px rgba(201,168,76,0.05);
}
.glyph-tableau::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  pointer-events: none;
}
.glyph-tableau .row {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  letter-spacing: 0.2em;
  color: var(--gold);
  line-height: 1.4;
  text-shadow: 0 0 20px rgba(201,168,76,0.4), 0 0 40px rgba(201,168,76,0.2);
}
.glyph-tableau .row.dim {
  color: var(--gold-light);
  font-size: clamp(2rem, 5vw, 3.5rem);
  opacity: 0.85;
}
.glyph-tableau figcaption {
  margin-top: 24px;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
/* Kompakte Variante fuer Gott-Cards · 1 Reihe */
.glyph-tableau.glyph-tableau-mini {
  padding: 20px 16px;
  margin: 12px auto;
  max-width: 100%;
}
.glyph-tableau.glyph-tableau-mini .row {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.2;
}
.glyph-tableau.glyph-tableau-mini figcaption {
  margin-top: 12px;
  font-size: 0.65rem;
}
@media (max-width: 720px) {
  .glyph-tableau { padding: 32px 18px; margin: 24px auto; }
}

/* --- Expand-Cards (klappbare Inhalte) --- */
.expand-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  margin: 18px 0;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.expand-card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 0 20px rgba(201,168,76,0.12);
}
.expand-card summary {
  list-style: none;
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.expand-card summary::-webkit-details-marker { display: none; }
.expand-card summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  line-height: 1;
}
.expand-card[open] summary { color: var(--gold); }
.expand-card[open] summary::after { transform: rotate(45deg); }
.expand-card-body {
  padding: 6px 28px 24px;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.8;
}
.expand-card-body p + p { margin-top: 14px; }

/* --- Big Testimonials (vollflaechige Zitat-Bloecke) --- */
.big-testimonial {
  max-width: 960px;
  margin: 100px auto;
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(45,158,107,0.06), rgba(123,79,166,0.06));
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative;
}
.big-testimonial::before,
.big-testimonial::after {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.8;
  position: absolute;
}
.big-testimonial::before { content: '\201C'; top: 20px; left: 30px; }
.big-testimonial::after { content: '\201D'; bottom: 20px; right: 30px; }
.big-testimonial blockquote {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  line-height: 1.55;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 32px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.big-testimonial cite {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
  display: block;
  padding-top: 14px;
  border-top: 1px solid rgba(201,168,76,0.2);
  max-width: 200px;
  margin: 0 auto;
}
.big-testimonial-hinweis {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.65;
  font-style: italic;
}

/* Hinweis fuer Testimonials (DE gesetzlich vorgeschrieben) */
.testimonial-disclaimer {
  font-size: 0.72rem;
  color: var(--text-dim);
  opacity: 0.7;
  font-style: italic;
  text-align: center;
  margin-top: 10px;
}

/* --- Section-Heading mit Kanji-Dekoration --- */
.heading-with-kanji {
  position: relative;
  text-align: center;
  padding: 40px 20px;
}
.heading-with-kanji::before {
  content: var(--kanji-content, '\9B42');
  font-family: var(--font-jp);
  font-size: clamp(8rem, 20vw, 16rem);
  color: rgba(201,168,76,0.08);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  line-height: 1;
  pointer-events: none;
}
.heading-with-kanji > * { position: relative; z-index: 1; }

/* Reduced-Motion Abschaltung fuer Parallax */
@media (prefers-reduced-motion: reduce) {
  .parallax-hero::before { transform: none !important; }
}

/* ═══════════════════════════════════════════════════════
   JA-LANGUAGE OVERRIDES
   Greift automatisch wenn <html lang="ja">
   ═══════════════════════════════════════════════════════ */

html[lang="ja"] body {
  font-family: 'Noto Serif JP', 'EB Garamond', serif;
}
html[lang="ja"] h1,
html[lang="ja"] h2,
html[lang="ja"] h3,
html[lang="ja"] h4,
html[lang="ja"] .section-h1,
html[lang="ja"] .section-h2,
html[lang="ja"] .section-eyebrow,
html[lang="ja"] .nav-links a,
html[lang="ja"] .nav-submenu a,
html[lang="ja"] .mobile-menu a,
html[lang="ja"] .btn-primary,
html[lang="ja"] .btn-secondary,
html[lang="ja"] .btn-emerald,
html[lang="ja"] .nav-lang a,
html[lang="ja"] .footer-col h4 {
  font-family: 'Noto Serif JP', 'Cinzel', serif;
}
html[lang="ja"] p,
html[lang="ja"] .testi-text,
html[lang="ja"] .journey-text,
html[lang="ja"] .hero-sub {
  font-feature-settings: "palt";
  line-height: 1.95;
}
/* Furigana-Klammer-Style — kleinere Schrift in Klammern nach Kanji */
html[lang="ja"] .ruby-paren {
  font-size: 0.78em;
  color: var(--text-dim);
  font-feature-settings: "palt";
  margin-left: 1px;
}
