:root {
    --forest: #234e43;
    --forest-deep: #15302a;
    --forest-soft: #3a6a5d;
    --cream: #faf6ef;
    --cream-dark: #f2ece0;
    --ink: #1a1a1a;
    --ink-soft: #3a3a3a;
    --muted: #7a7770;
    --gold: #a8864a;
    --gold-soft: #c9a86e;
    --line: rgba(35, 78, 67, 0.12);
    --line-soft: rgba(35, 78, 67, 0.06);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  h1, h2, h3, h4, .serif { font-family: 'Newsreader', Georgia, serif; font-weight: 400; }
  em.italic { font-family: 'Newsreader', serif; font-style: italic; }
  
  a { color: var(--forest); text-decoration: none; transition: color .2s; }
  a:hover { color: var(--forest-deep); }
  img { max-width: 100%; display: block; }
  
  .container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
  
  /* ────── NAV ────── */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250, 246, 239, 0.88);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 28px; max-width: 1120px; margin: 0 auto;
  }
  .nav-logo {
    font-family: 'Newsreader', serif; font-size: 21px; font-weight: 400;
    letter-spacing: -0.01em; color: var(--forest-deep);
  }
  .nav-logo em { font-style: italic; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 13px; font-weight: 500; color: var(--ink-soft);
    letter-spacing: 0.03em;
  }
  .nav-links a:hover { color: var(--forest-deep); }
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .nav-toggle span {
    display: block; width: 22px; height: 1.5px; background: var(--forest-deep);
    margin: 5px 0; transition: .25s;
  }
  
  /* ────── HERO ────── */
  .hero {
    padding: 180px 0 140px; position: relative; overflow: hidden;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 80px; align-items: center;
    position: relative;
  }
  .hero-eyebrow {
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--forest); font-weight: 600; margin-bottom: 36px;
    display: inline-flex; align-items: center; gap: 14px;
  }
  .hero-eyebrow::before {
    content: ""; display: block; width: 36px; height: 1px; background: var(--gold);
  }
  .hero h1 {
    font-size: clamp(3rem, 7vw, 5.8rem); line-height: 1; letter-spacing: -0.025em;
    color: var(--forest-deep); margin-bottom: 36px;
    font-weight: 500;
  }
  .hero h1 em {
    font-style: italic; font-weight: 500; color: var(--forest-soft);
  }
  .hero-sub {
    font-family: 'Newsreader', serif; font-style: italic; font-size: 1.5rem;
    color: var(--forest-soft); margin-bottom: 40px; font-weight: 500;
    line-height: 1.4;
  }
  .hero-sub::after {
    content: ""; display: block; width: 64px; height: 1px; background: var(--gold);
    margin-top: 36px;
  }
  .hero p.lead {
    font-size: 1.08rem; color: var(--ink-soft); max-width: 500px; margin-bottom: 44px;
    line-height: 1.75;
  }
  .btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: 2px; font-size: 14px; font-weight: 600;
    letter-spacing: 0.03em; transition: all .25s; cursor: pointer; border: none;
    font-family: inherit;
  }
  .btn-primary { background: var(--forest-deep); color: var(--cream); }
  .btn-primary:hover { background: var(--gold); color: var(--forest-deep); }
  .btn-ghost {
    background: transparent; color: var(--forest-deep);
    border: 1px solid var(--forest-deep);
  }
  .btn-ghost:hover { background: var(--forest-deep); color: var(--cream); }
  .btn svg { width: 14px; height: 14px; }
  
  .hero-portrait {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    box-shadow: 24px 24px 0 -6px var(--cream-dark);
    border: 1px solid var(--line);
  }
  .hero-portrait img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); }
  
  /* ────── SECTION SHARED ────── */
  section { padding: 140px 0; }
  .section-label {
    display: flex; align-items: center; gap: 14px;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--forest); font-weight: 600; margin-bottom: 24px;
  }
  .section-label::before {
    content: ""; display: block; width: 40px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1.1; letter-spacing: -0.02em;
    color: var(--forest-deep); max-width: 760px; margin-bottom: 32px;
    font-weight: 500;
  }
  .section-title em { font-style: italic; font-weight: 500; color: var(--forest-soft); }
  .section-intro {
    font-size: 1.08rem; color: var(--ink-soft); max-width: 640px; margin-bottom: 80px;
    line-height: 1.75;
  }
  
  /* ────── ÜBER MICH / STATIONEN ────── */
  .ueber {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  }
  .stationen {
    margin-top: 32px;
    position: relative;
    padding-left: 40px;
    border-left: 1px solid var(--line);
  }
  .station {
    padding: 44px 0 44px 48px;
    position: relative;
    border-bottom: 1px solid var(--line-soft);
  }
  .station:last-child { border-bottom: none; padding-bottom: 0; }
  .station:first-child { padding-top: 0; }
  .station:first-child::before { top: 8px; }
  .station::before {
    content: "";
    position: absolute; left: -6px; top: 52px;
    width: 11px; height: 11px; border-radius: 50%;
    background: var(--cream); border: 1.5px solid var(--gold);
    transition: all .3s;
  }
  .station:hover::before { background: var(--gold); transform: scale(1.25); }
  .station-year {
    font-family: 'Newsreader', serif; font-size: 13px; font-weight: 500;
    color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 10px; display: block;
  }
  .station-title {
    font-family: 'Newsreader', serif; font-size: 1.65rem; font-weight: 500;
    color: var(--forest-deep); margin-bottom: 10px; letter-spacing: -0.012em;
    line-height: 1.25;
  }
  .station-desc { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.75; max-width: 720px; }
  
  /* ────── SCHWERPUNKTE ────── */
  .schwerpunkte { background: var(--cream); }
  .schwerpunkte-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .schwerpunkt {
    padding: 48px 40px;
    background: var(--cream);
    transition: background .3s;
    position: relative;
  }
  .schwerpunkt:hover { background: var(--cream-dark); }
  .schwerpunkt-num {
    font-family: 'Newsreader', serif; font-style: italic;
    font-size: 13px; color: var(--gold); margin-bottom: 18px;
    letter-spacing: 0.05em;
  }
  .schwerpunkt-title {
    font-family: 'Newsreader', serif; font-size: 1.8rem; font-weight: 500;
    color: var(--forest-deep); margin-bottom: 16px; letter-spacing: -0.012em;
  }
  .schwerpunkt-desc {
    font-size: 0.98rem; color: var(--ink-soft); line-height: 1.75;
  }
  
  /* ────── AKADEMISCHE LEHRE / HIGHLIGHT ────── */
  .lehre-highlight {
    background: var(--forest-deep);
    color: var(--cream);
    padding: 80px 60px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
  }
  .lehre-highlight::before {
    content: ""; position: absolute; top: -60px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(168, 134, 74, 0.18), transparent 70%);
  }
  .lehre-highlight-inner {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
    position: relative;
  }
  .lehre-highlight-label {
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold-soft); font-weight: 600; margin-bottom: 20px;
    display: flex; align-items: center; gap: 14px;
  }
  .lehre-highlight-label::before {
    content: ""; display: block; width: 36px; height: 1px; background: var(--gold-soft);
  }
  .lehre-highlight h3 {
    font-family: 'Newsreader', serif; font-size: 2.1rem; line-height: 1.1;
    letter-spacing: -0.015em; color: var(--cream); margin-bottom: 20px;
    font-weight: 500;
  }
  .lehre-highlight h3 em { font-style: italic; color: var(--gold-soft); font-weight: 500; }
  .lehre-highlight p {
    color: rgba(250, 246, 239, 0.78); line-height: 1.75; font-size: 1rem;
  }
  .lehre-seminare {
    display: flex; flex-direction: column; gap: 14px;
  }
  .seminar-item {
    padding: 18px 24px;
    background: rgba(250, 246, 239, 0.04);
    border-left: 2px solid var(--gold);
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--cream);
  }
  .seminar-item::before { content: "„"; color: var(--gold-soft); }
  .seminar-item::after { content: "\"" }
  
  /* ────── PROJEKTE ────── */
  .projekte { background: var(--cream-dark); }
  .projekte-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .projekt {
    padding: 48px 40px;
    background: var(--cream);
    transition: background .3s;
    display: flex; flex-direction: column;
    min-height: 260px;
  }
  .projekt:hover { background: var(--cream-dark); }
  .projekt-badge {
    display: inline-block; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); padding: 0;
    margin-bottom: 18px; font-weight: 600;
  }
  .projekt-title {
    font-family: 'Newsreader', serif; font-size: 1.8rem; font-weight: 500;
    color: var(--forest-deep); margin-bottom: 14px; letter-spacing: -0.012em;
  }
  .projekt-desc {
    font-size: 0.98rem; color: var(--ink-soft); line-height: 1.75;
    margin-bottom: 28px; flex-grow: 1;
  }
  .projekt-link {
    font-size: 13px; font-weight: 600; color: var(--forest);
    letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 6px;
    border-bottom: 1px solid var(--forest); padding-bottom: 3px;
    align-self: start; transition: gap .2s;
  }
  .projekt-link:hover { gap: 12px; }
  
  /* ────── PUBLIKATIONEN ────── */
  .publikationen { background: var(--cream); }
  
  .pub-aktuell {
    background: linear-gradient(135deg, var(--cream-dark) 0%, #ebe4d4 100%);
    color: var(--forest-deep);
    padding: 48px 52px;
    margin-bottom: 64px;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--gold);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
  }
  .pub-aktuell::before {
    content: "";
    position: absolute; top: 0; right: 0;
    width: 280px; height: 100%;
    background: 
      radial-gradient(circle at 85% 40%, rgba(168, 134, 74, 0.12), transparent 55%),
      radial-gradient(circle at 70% 80%, rgba(35, 78, 67, 0.06), transparent 50%);
    pointer-events: none;
  }
  .pub-aktuell-side {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 8px;
    padding-right: 40px;
    border-right: 1px solid rgba(35, 78, 67, 0.15);
    min-width: 140px;
  }
  .pub-aktuell-label {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--gold);
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    padding: 0; font-weight: 700; margin: 0;
  }
  .pub-aktuell-label::before {
    content: ""; display: block; width: 28px; height: 1px; background: var(--gold);
  }
  .pub-aktuell-kind {
    font-family: 'Newsreader', serif; font-style: italic;
    color: var(--forest-soft); font-size: 1.05rem;
    font-weight: 500;
  }
  .pub-aktuell-content {
    position: relative;
  }
  .pub-aktuell-title {
    font-family: 'Newsreader', serif; font-size: clamp(1.6rem, 2.8vw, 2rem);
    line-height: 1.2; color: var(--forest-deep); margin-bottom: 14px; letter-spacing: -0.015em;
    max-width: 680px; font-weight: 500;
  }
  .pub-aktuell-title em { 
    font-style: italic; 
    color: var(--forest-soft); 
    font-weight: 500; 
  }
  .pub-aktuell-sub {
    font-family: 'Newsreader', serif; font-style: italic;
    color: var(--ink-soft); font-size: 1.1rem; max-width: 600px;
    line-height: 1.55; margin: 0;
  }
  
  .pub-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
  }
  .pub-featured {
    background: var(--cream-dark); padding: 44px 40px;
    border-left: 3px solid var(--gold);
  }
  .pub-featured-label {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); font-weight: 700; margin-bottom: 22px;
  }
  .pub-featured-title {
    font-family: 'Newsreader', serif; font-size: 1.9rem; line-height: 1.2;
    color: var(--forest-deep); margin-bottom: 14px; letter-spacing: -0.012em;
    font-weight: 500;
  }
  .pub-featured-sub {
    font-family: 'Newsreader', serif; font-style: italic;
    color: var(--forest-soft); margin-bottom: 22px; line-height: 1.4;
  }
  .pub-featured-meta {
    font-size: 12px; color: var(--muted); margin-bottom: 24px;
    letter-spacing: 0.05em;
  }
  
  .pub-list { list-style: none; }
  .pub-item {
    padding: 24px 0; border-bottom: 1px solid var(--line-soft);
    display: flex; justify-content: space-between; gap: 24px;
    transition: padding .2s;
  }
  .pub-item:hover { padding-left: 10px; }
  .pub-item:last-child { border-bottom: none; }
  .pub-name {
    font-family: 'Newsreader', serif; font-size: 1.1rem; color: var(--forest-deep);
    line-height: 1.4; letter-spacing: -0.005em;
  }
  .pub-type {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; white-space: nowrap;
    padding-top: 5px;
  }
  .pub-cta {
    margin-top: 44px; display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
    color: var(--forest-deep); border-bottom: 1px solid var(--forest-deep);
    padding-bottom: 4px;
  }
  
  /* ────── KONTAKT ────── */
  .kontakt { background: var(--cream-dark); text-align: center; }
  .kontakt .section-label { justify-content: center; }
  .kontakt .section-title { margin-left: auto; margin-right: auto; }
  .kontakt-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 820px; margin: 56px auto 0;
  }
  .kontakt-item {
    padding: 36px 24px;
    background: var(--cream);
    border: 1px solid var(--line);
    transition: all .3s;
  }
  .kontakt-item:hover {
    background: var(--forest-deep); border-color: var(--forest-deep);
  }
  .kontakt-item:hover .kontakt-label { color: var(--gold-soft); }
  .kontakt-item:hover .kontakt-value { color: var(--cream); }
  .kontakt-label {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 14px;
  }
  .kontakt-value {
    font-family: 'Newsreader', serif; font-size: 1.15rem;
    color: var(--forest-deep); letter-spacing: -0.005em;
    transition: color .3s;
  }
  
  /* ────── FOOTER ────── */
  footer {
    background: var(--forest-deep); color: rgba(250, 246, 239, 0.7);
    padding: 56px 0 36px; font-size: 13px;
  }
  .footer-grid {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
  }
  .footer-logo {
    font-family: 'Newsreader', serif; font-size: 19px; color: var(--cream);
  }
  .footer-logo em { font-style: italic; color: var(--gold-soft); }
  .footer-links { display: flex; gap: 28px; list-style: none; }
  .footer-links a { color: rgba(250, 246, 239, 0.7); font-size: 12px; letter-spacing: 0.05em; }
  .footer-links a:hover { color: var(--gold-soft); }
  .footer-copy { 
    color: rgba(250, 246, 239, 0.4); font-size: 12px; margin-top: 32px;
    padding-top: 24px; border-top: 1px solid rgba(250, 246, 239, 0.1);
  }

  /* ────── RESPONSIVE ────── */
  @media (max-width: 900px) {
    body { font-size: 16px; }
    .hero { padding: 140px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-portrait { max-width: 340px; margin: 0 auto; order: -1; }
    section { padding: 90px 0; }
    .schwerpunkte-grid { grid-template-columns: 1fr; }
    .projekte-grid { grid-template-columns: 1fr; }
    .lehre-highlight { padding: 48px 32px; }
    .lehre-highlight-inner { grid-template-columns: 1fr; gap: 36px; }
    .pub-grid { grid-template-columns: 1fr; gap: 48px; }
    .kontakt-grid { grid-template-columns: 1fr; max-width: 420px; }
    .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0;
      background: var(--cream); flex-direction: column; padding: 24px; gap: 16px;
      border-bottom: 1px solid var(--line); }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
  }
  @media (max-width: 520px) {
    .hero h1 { font-size: 2.6rem; }
    .section-title { font-size: 1.95rem; }
    .btn { padding: 13px 24px; font-size: 13px; }
    .stationen { padding-left: 24px; }
    .station { padding-left: 32px; padding-top: 36px; padding-bottom: 36px; }
    .schwerpunkt { padding: 36px 28px; }
    .projekt { padding: 36px 28px; }
    .pub-featured { padding: 32px 28px; }
    .pub-aktuell { 
      padding: 36px 28px; 
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .pub-aktuell-side {
      padding-right: 0;
      padding-bottom: 18px;
      border-right: none;
      border-bottom: 1px solid rgba(35, 78, 67, 0.15);
      min-width: auto;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .container { padding: 0 20px; }
    .lehre-highlight { padding: 40px 24px; }
  }

/* ────── CONTENT PAGES (Impressum, Datenschutz) ────── */
.page-hero {
  padding: 140px 0 40px;
  position: relative;
}
.page-hero .section-label { margin-bottom: 20px; }
.page-hero h1 {
  font-family: 'Newsreader', serif;
  font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05;
  letter-spacing: -0.025em; color: var(--forest-deep);
  font-weight: 500; margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--forest-soft); font-weight: 500; }
.page-hero .page-sub {
  font-family: 'Newsreader', serif; font-style: italic;
  font-size: 1.15rem; color: var(--forest-soft); font-weight: 500;
}

.content-page {
  padding: 40px 0 120px;
}
.content-page .container {
  max-width: 780px;
}
.content-page h2 {
  font-family: 'Newsreader', serif;
  font-size: 1.6rem; font-weight: 500; color: var(--forest-deep);
  letter-spacing: -0.012em; line-height: 1.25;
  margin: 56px 0 16px;
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 {
  font-family: 'Newsreader', serif;
  font-size: 1.2rem; font-weight: 500; color: var(--forest-deep);
  margin: 32px 0 10px;
}
.content-page p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.content-page a { color: var(--forest); border-bottom: 1px solid var(--line); transition: border-color .2s; }
.content-page a:hover { border-color: var(--forest); }
.content-page strong { color: var(--forest-deep); font-weight: 600; }
.content-page ul {
  margin: 16px 0 20px 0;
  padding-left: 20px;
}
.content-page ul li {
  margin-bottom: 8px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.content-page .contact-block {
  background: var(--cream-dark);
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  margin: 24px 0;
}
.content-page .contact-block p { margin: 4px 0; }
.content-page .muted-note {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 900px) {
  .page-hero { padding: 110px 0 24px; }
  .content-page { padding: 24px 0 80px; }
  .content-page h2 { font-size: 1.4rem; margin-top: 40px; }
}

/* ────── FULL-WIDTH PROJEKT (QuranCampus) ────── */
.projekt-wide {
  grid-column: 1 / -1;
  background: var(--cream-dark);
  border-top: 1px solid var(--gold);
  padding: 52px 48px;
}
.projekt-wide:hover {
  background: var(--cream-dark);
}
.projekt-wide .projekt-title {
  font-size: 2rem;
}
.projekt-wide .projekt-desc {
  max-width: 720px;
}
@media (max-width: 900px) {
  .projekt-wide { padding: 36px 28px; }
  .projekt-wide .projekt-title { font-size: 1.8rem; }
}

/* ────── PUBLIKATIONEN-SEITE ────── */
.pub-section {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--line-soft);
}
.pub-section:last-child { border-bottom: none; }
.pub-section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 36px; gap: 24px;
  flex-wrap: wrap;
}
.pub-section-head h2 {
  font-family: 'Newsreader', serif; font-weight: 500;
  font-size: 1.8rem; color: var(--forest-deep);
  letter-spacing: -0.015em; margin: 0;
}
.pub-section-head h2 em { font-style: italic; color: var(--forest-soft); }
.pub-section-count {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}

.book-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.book-grid.book-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.book-card {
  background: var(--cream); padding: 32px 28px;
  transition: background .3s;
  display: flex; flex-direction: column;
  min-height: 220px;
}
.book-card:hover { background: var(--cream-dark); }
.book-year {
  font-family: 'Newsreader', serif; font-style: italic;
  color: var(--gold); font-size: 13px; letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.book-title {
  font-family: 'Newsreader', serif; font-weight: 500;
  font-size: 1.25rem; line-height: 1.25;
  color: var(--forest-deep); letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.book-title em { font-style: italic; }
.book-desc {
  font-size: 0.93rem; color: var(--ink-soft); line-height: 1.7;
  margin-bottom: 22px; flex-grow: 1;
}
.book-link {
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest); 
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 3px; align-self: start;
  transition: gap .2s;
}
.book-link:hover { gap: 12px; }

.article-list { list-style: none; padding: 0; margin: 0; }
.article-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
  transition: padding .2s;
}
.article-item:hover { padding-left: 10px; }
.article-item:last-child { border-bottom: none; }
.article-date {
  font-family: 'Newsreader', serif; font-style: italic;
  color: var(--gold); font-size: 14px; font-weight: 500;
  letter-spacing: 0.03em;
}
.article-title {
  font-family: 'Newsreader', serif; font-weight: 500;
  font-size: 1.15rem; color: var(--forest-deep);
  letter-spacing: -0.005em; line-height: 1.4;
}
.article-source {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  font-weight: 600;
}

/* ────── ISLAMPOSTER-SEITE ────── */
.posters-intro {
  padding: 0 0 56px;
  max-width: 780px;
}
.posters-intro p {
  font-size: 1.05rem; color: var(--ink-soft); line-height: 1.75;
  margin-bottom: 16px;
}

.poster-list { 
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 64px;
}
.poster-item {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.poster-item:nth-child(even) {
  grid-template-columns: 1fr 1.2fr;
}
.poster-item:nth-child(even) .poster-img-wrapper { order: 2; }
.poster-item:nth-child(even) .poster-info { order: 1; }

.poster-img-wrapper {
  background: var(--cream-dark);
  border: 1px solid var(--line);
  padding: 24px;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.poster-img-wrapper img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  transition: transform .4s ease;
}
.poster-img-wrapper:hover img { transform: scale(1.02); }

.poster-number {
  font-family: 'Newsreader', serif; font-style: italic;
  color: var(--gold); font-size: 1rem;
  margin-bottom: 12px; letter-spacing: 0.03em;
}
.poster-title {
  font-family: 'Newsreader', serif; font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.1rem); line-height: 1.1;
  color: var(--forest-deep); letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.poster-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.poster-desc {
  color: var(--ink-soft); font-size: 0.98rem; line-height: 1.75;
}

.poster-order-cta {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 56px 48px;
  margin-top: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.poster-order-cta::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(168, 134, 74, 0.18), transparent 70%);
  pointer-events: none;
}
.poster-order-cta-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600; margin-bottom: 16px;
  position: relative;
}
.poster-order-cta h3 {
  font-family: 'Newsreader', serif; font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.2;
  color: var(--cream); letter-spacing: -0.015em;
  margin-bottom: 16px; position: relative;
}
.poster-order-cta h3 em { font-style: italic; color: var(--gold-soft); }
.poster-order-cta p {
  color: rgba(250, 246, 239, 0.78); line-height: 1.75;
  max-width: 560px; margin: 0 auto 32px; position: relative;
}
.poster-order-cta .btn-primary {
  background: var(--gold); color: var(--forest-deep);
  position: relative;
}
.poster-order-cta .btn-primary:hover { background: var(--cream); color: var(--forest-deep); }

@media (max-width: 1020px) and (min-width: 701px) {
  .book-grid.book-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .book-grid { grid-template-columns: 1fr; }
  .book-grid.book-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .poster-item, .poster-item:nth-child(even) { grid-template-columns: 1fr; gap: 28px; }
  .poster-item:nth-child(even) .poster-img-wrapper { order: 0; }
  .poster-item:nth-child(even) .poster-info { order: 0; }
  .poster-img-wrapper { aspect-ratio: 3 / 2; padding: 16px; }
  .poster-order-cta { padding: 40px 28px; margin-top: 48px; }
  .article-item { grid-template-columns: 70px 1fr; gap: 16px; }
  .article-source { grid-column: 1 / -1; padding-left: 86px; }
  .pub-section-head { flex-direction: column; gap: 8px; align-items: flex-start; }
}
@media (max-width: 640px) {
  .book-grid.book-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .book-card { padding: 28px 22px; }
  .poster-img-wrapper { padding: 12px; }
  .poster-order-cta { padding: 32px 22px; }
  .article-source { padding-left: 0; }
  .article-item { grid-template-columns: 60px 1fr; }
}

/* ────── POSTER-LIGHTBOX ────── */
a.poster-img-wrapper {
  position: relative;
  cursor: zoom-in;
  display: flex;
  text-decoration: none;
}
a.poster-img-wrapper .poster-zoom-icon {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(21, 48, 42, 0.92);
  color: var(--gold-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.85);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
a.poster-img-wrapper .poster-zoom-icon svg {
  width: 18px; height: 18px;
}
a.poster-img-wrapper:hover .poster-zoom-icon,
a.poster-img-wrapper:focus-visible .poster-zoom-icon {
  opacity: 1; transform: scale(1);
}
a.poster-img-wrapper:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.lightbox {
  position: fixed; inset: 0;
  background: rgba(21, 48, 42, 0.96);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
  padding: 40px;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-stage {
  max-width: 95vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  animation: lbFadeIn .32s ease;
}
@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-stage img {
  max-width: 100%; max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  background: var(--cream);
}
.lightbox-caption {
  font-family: 'Newsreader', serif; font-style: italic;
  color: var(--gold-soft); font-size: 1rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.lightbox-close, .lightbox-nav {
  position: fixed;
  width: 48px; height: 48px;
  background: rgba(250, 246, 239, 0.08);
  border: 1px solid rgba(250, 246, 239, 0.2);
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  z-index: 1;
}
.lightbox-close:hover, .lightbox-nav:hover {
  background: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
}
.lightbox-close svg, .lightbox-nav svg {
  width: 20px; height: 20px;
}
.lightbox-close {
  top: 24px; right: 24px;
}
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%); }
.lightbox-next:hover { transform: translateY(-50%); }

@media (max-width: 700px) {
  .lightbox { padding: 20px; }
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .lightbox-prev { left: 10px; width: 40px; height: 40px; }
  .lightbox-next { right: 10px; width: 40px; height: 40px; }
  .lightbox-stage img { max-height: 72vh; }
  a.poster-img-wrapper .poster-zoom-icon { 
    opacity: 0.9; transform: scale(1);
    top: 12px; right: 12px; width: 34px; height: 34px;
  }
  a.poster-img-wrapper .poster-zoom-icon svg { width: 15px; height: 15px; }
}
