/* ═══════════════════════════════════════════════
   MARC BEUSTER – THEME STYLESHEET
   Römische Ästhetik: Stein, Gold, Antike
   ═══════════════════════════════════════════════ */

/* ── FONTS (lokal gehostet) ── */
@import url('fonts.css');

/* ── CUSTOM PROPERTIES ── */
:root {
  --dark:        #110e09;
  --stone:       #1e1812;
  --stone-mid:   #2d2418;
  --stone-light: #3d3428;
  --gold:        #c9a84c;
  --gold-light:  #e8c96d;
  --gold-dark:   #9a7a32;
  --red:         #8b1a1a;
  --red-light:   #b02020;
  --parchment:   #f4e8c8;
  --parchment-dark: #e0ceaa;
  --text-dark:   #1e1812;
  --text-light:  #f4e8c8;
  --text-muted:  #a89068;

  --font-heading: 'Cinzel', serif;
  --font-deco:    'Cinzel Decorative', serif;
  --font-body:    'EB Garamond', serif;

  --max-width: 1200px;
  --section-pad: 100px 40px;
  --border-gold: 1px solid rgba(201,168,76,0.3);
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --radius: 4px;
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── DECORATIVE DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}
.divider-icon {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

/* ── EYEBROW / LABEL ── */
.eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* ── HEADINGS ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-light);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; letter-spacing: 0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; letter-spacing: 0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1.2em; font-size: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--gold);
  transition: left 0.3s ease;
  z-index: 0;
}
.btn:hover { color: var(--dark); }
.btn:hover::before { left: 0; }
.btn span { position: relative; z-index: 1; }

.btn-solid {
  background: var(--gold);
  color: var(--dark);
}
.btn-solid:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--dark); }
.btn-solid::before { display: none; }

.btn-red {
  border-color: var(--red-light);
  color: var(--red-light);
}
.btn-red::before { background: var(--red-light); }
.btn-red:hover { color: #fff; }

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17,14,9,0.0);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
#site-header.scrolled {
  background: rgba(17,14,9,0.95);
  border-color: rgba(201,168,76,0.2);
  backdrop-filter: blur(10px);
}

.site-logo {
  font-family: var(--font-deco);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.site-logo span { display: block; font-size: 10px; font-family: var(--font-heading); font-weight: 400; letter-spacing: 0.25em; color: var(--text-muted); }

.main-nav ul { list-style: none; display: flex; gap: 36px; }
.main-nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment-dark);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold); }

.nav-lang {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 5px 12px;
  transition: all 0.2s;
}
.nav-lang:hover { color: var(--gold); border-color: var(--gold); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--parchment); margin: 5px 0; transition: all 0.3s; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.65;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,14,9,0.70) 40%, rgba(17,14,9,0.10) 100%),
              linear-gradient(to top, rgba(17,14,9,0.45) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 120px 40px 80px;
}

.hero-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-deco);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--parchment-dark);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounce 2s infinite;
  cursor: pointer;
}
.hero-scroll::after {
  content: '↓';
  font-size: 18px;
  color: var(--gold);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════
   SECTION BASE
══════════════════════════════ */
.section { padding: var(--section-pad); }
.section-parchment {
  background: var(--parchment);
  color: var(--text-dark);
}
.section-parchment h1,
.section-parchment h2,
.section-parchment h3,
.section-parchment h4 { color: var(--stone); }
.section-parchment p { color: #3d2e1e; }
.section-parchment .eyebrow { color: var(--red); }
.section-parchment .divider::before,
.section-parchment .divider::after { background: linear-gradient(to right, transparent, var(--gold-dark), transparent); }

.section-stone { background: var(--stone-mid); }
.section-dark { background: var(--dark); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-parchment .section-header p { color: #6b5030; }

/* ══════════════════════════════
   BÜCHER
══════════════════════════════ */
#books { padding: 100px 0; background: var(--stone); }

.series-title {
  text-align: center;
  margin-bottom: 56px;
}
.series-title .eyebrow { display: block; text-align: center; margin-bottom: 10px; }
.series-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 16px auto 0;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.book-card {
  background: var(--stone-mid);
  border: var(--border-gold);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.book-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border-color: var(--gold);
}

.book-cover-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--stone-light);
}
.book-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.book-card:hover .book-cover-wrap img { transform: scale(1.05); }

.book-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,14,9,0.95) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.book-card:hover .book-overlay { opacity: 1; }
.book-overlay .btn { font-size: 11px; padding: 10px 20px; width: 100%; text-align: center; }

.book-info { padding: 18px 16px; }
.book-band {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.book-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.3;
}

/* Single Book Detail */
.book-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
  padding: 64px;
  background: var(--stone-mid);
  border: var(--border-gold);
}
.book-detail-cover img {
  width: 100%;
  box-shadow: var(--shadow);
}
.book-detail-meta .eyebrow { margin-bottom: 8px; }
.book-detail-meta h3 { font-size: 2rem; margin-bottom: 20px; }
.book-detail-meta p { font-size: 0.95rem; color: var(--parchment-dark); line-height: 1.8; }
.book-detail-btns { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════
   ÜBER DEN AUTOR
══════════════════════════════ */
#about {
  background: var(--parchment);
  padding: var(--section-pad);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  box-shadow: var(--shadow);
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--gold-dark);
  z-index: 0;
}
.about-image-wrap img { position: relative; z-index: 1; }

.about-text .eyebrow { color: var(--red); }
.about-text h2 { color: var(--stone); margin-bottom: 24px; }
.about-text p { color: #3d2e1e; font-size: 1rem; margin-bottom: 1.2em; }
.about-compare {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(139,26,26,0.08);
  border-left: 3px solid var(--red);
  font-style: italic;
  color: #3d2e1e;
  font-size: 0.95rem;
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
#testimonials {
  background: var(--stone-mid);
  padding: var(--section-pad);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.testimonial {
  background: var(--stone-light);
  border: var(--border-gold);
  padding: 32px;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-deco);
  font-size: 80px;
  color: var(--gold-dark);
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
  opacity: 0.4;
}
.testimonial-text {
  font-style: italic;
  color: var(--parchment-dark);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 8px; }
.testimonial-author {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ══════════════════════════════
   BLOG LIST
══════════════════════════════ */
#blog-preview { background: var(--dark); padding: var(--section-pad); }

/* Page Header */
.blog-page-header {
  padding: 120px 0 64px;
  background: var(--stone);
  text-align: center;
}
.blog-page-header h1 { margin-bottom: 12px; }
.blog-page-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Section */
.blog-page-section {
  padding: 72px 0 96px;
  background: var(--dark);
}

/* ── Featured Post ── */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--border-gold);
  overflow: hidden;
  margin-bottom: 48px;
  min-height: 420px;
  background: var(--stone-mid);
  transition: border-color 0.3s;
}
.blog-featured:hover { border-color: var(--gold); }

.blog-featured-img {
  position: relative;
  display: block;
  overflow: hidden;
}
.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  display: block;
}
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--stone-mid) 100%);
  pointer-events: none;
}

.blog-featured-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-family: var(--font-heading);
  color: var(--text-light);
  line-height: 1.35;
  margin: 12px 0 16px;
  font-weight: 700;
}
.blog-featured-title a { color: inherit; text-decoration: none; }
.blog-featured-title a:hover { color: var(--gold); }
.blog-featured-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}

/* ── Blog Meta (date + reading time) ── */
.blog-meta-line {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.blog-meta-line--light { color: rgba(255,255,255,0.65); }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.blog-meta-sep { display: none; }
.blog-meta-read::before {
  content: '|';
  margin: 0 8px;
  color: var(--gold);
  opacity: 0.6;
  font-size: 10px;
}
.blog-meta--light .blog-meta-date,
.blog-meta--light .blog-meta-read { color: rgba(255,255,255,0.65); }
.blog-meta--light .blog-meta-read::before { color: rgba(255,255,255,0.4); }

/* ── Secondary Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.blog-grid-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.blog-card {
  background: var(--stone-mid);
  border: var(--border-gold);
  transition: transform 0.3s, border-color 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--gold); }

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--stone-light);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 10px 0 10px;
  line-height: 1.4;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card-link {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.blog-card-link::after { content: '→'; transition: transform 0.2s; }
.blog-card:hover .blog-card-link::after { transform: translateX(4px); }

/* Pagination */
.blog-pagination { text-align: center; }
.blog-pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.blog-pagination .page-numbers {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 8px 14px;
  border: var(--border-gold);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════
   BLOG SINGLE POST
══════════════════════════════ */
.single-post {}

/* Post Hero */
.post-hero {
  min-height: 55vh;
  background: var(--stone);
  display: flex;
  align-items: flex-end;
  padding: 0 0 64px;
  position: relative;
  overflow: hidden;
}
.post-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.post-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(17,14,9,0.2) 0%, rgba(17,14,9,0.85) 75%, rgba(17,14,9,0.98) 100%);
}
.post-hero-gradient--solid { background: linear-gradient(to bottom, var(--stone) 0%, var(--dark) 100%); }
.post-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 140px;
}
.post-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 12px 0 16px;
  max-width: 800px;
}
.post-hero-lead {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 660px;
  margin: 0;
}

/* Post Layout */
.post-layout {
  background: var(--dark);
  padding: 72px 0 96px;
}

/* Content */
.post-content-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
}
.post-content-inner p  { font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.6em; color: var(--parchment-dark); }
.post-content-inner h2 { font-size: 1.9rem; margin: 2.5em 0 0.7em; color: #fff; }
.post-content-inner h3 { font-size: 1.5rem; margin: 2em 0 0.6em; color: #fff; }
.post-content-inner h4 { font-size: 1.2rem; margin: 1.8em 0 0.5em; color: var(--parchment); }
.post-content-inner ul, .post-content-inner ol { padding-left: 1.5em; margin-bottom: 1.5em; }
.post-content-inner li { margin-bottom: 0.6em; color: var(--parchment-dark); font-size: 1.05rem; line-height: 1.7; }
.post-content-inner blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin: 2em 0;
  background: var(--stone-mid);
  font-style: italic;
  color: var(--parchment);
  font-size: 1.1rem;
  line-height: 1.7;
}
.post-content-inner img { max-width: 100%; height: auto; display: block; margin: 2em auto; }
.post-content-inner a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* Tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.post-tag {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: var(--border-gold);
  padding: 5px 12px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.post-tag:hover { border-color: var(--gold); color: var(--gold); }

/* Author Box */
.author-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--stone-mid);
  border: var(--border-gold);
  padding: 32px;
  margin: 48px 0;
}
.author-box-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(201,168,76,0.4);
}
.author-box-name {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.author-box-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 12px;
}
.author-box-link {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.author-box-link:hover { text-decoration: underline; }

/* Prev / Next Nav */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0;
  padding: 32px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.post-nav-next { text-align: right; }
.post-nav-label {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.post-nav-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
}
.post-nav-title:hover { color: var(--gold); }

/* Book CTA */
.post-book-cta {
  background: var(--stone-mid);
  border: 1px solid rgba(201,168,76,0.4);
  border-left: 4px solid var(--gold);
  padding: 32px 36px;
  margin: 48px 0;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}
.post-book-cta-text h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 8px;
}
.post-book-cta-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* Back Link */
.post-back {
  margin-top: 40px;
}
.post-back a {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.post-back a:hover { color: var(--gold); }

/* ══════════════════════════════
   NEWSLETTER
══════════════════════════════ */
#newsletter {
  background: var(--red);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#newsletter .container { position: relative; z-index: 1; max-width: 600px; }
#newsletter h2 { color: #fff; margin-bottom: 12px; }
#newsletter p { color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input[type="email"] {
  flex: 1; min-width: 240px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.05em;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form .btn { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.newsletter-form .btn:hover { background: var(--gold-light); }
.newsletter-form .btn::before { display: none; }

/* ══════════════════════════════
   NEUIGKEITEN BANNER
══════════════════════════════ */
.news-banner {
  background: linear-gradient(135deg, var(--red) 0%, #6b1212 100%);
  padding: 20px 40px;
  text-align: center;
  margin-top: 110px;
}
.news-banner p {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0;
}
.news-banner strong { color: var(--gold-light); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
#site-footer {
  background: #0a0804;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 60px 40px 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto 48px;
}
.footer-logo {
  font-family: var(--font-deco);
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--parchment); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-pad: 72px 24px; }
  .container { padding: 0 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .book-detail { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  #site-header { padding: 0 24px; }
  .main-nav { display: none; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(17,14,9,0.97); padding: 32px 24px; gap: 24px; border-top: 1px solid rgba(201,168,76,0.2); }
  .nav-toggle { display: block; }
}

@media (max-width: 600px) {
  .books-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-content { padding: 120px 24px 60px; }
  .hero-btns { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  /* blog-grid responsive moved to new rules below */
  .testimonials-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════
   SERIES DESCRIPTION
══════════════════════════════ */
.series-description {
  max-width: 820px;
  margin: -24px auto 80px;
  text-align: center;
}
.series-desc-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.series-description p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1em;
}


/* ══════════════════════════════
   HÖRBUCH
══════════════════════════════ */
#hoerbuch { background: var(--dark); }

.hoerbuch-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hoerbuch-cover img {
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: var(--border-gold);
}
.hoerbuch-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 8px 0 6px;
  color: var(--text-light);
}
.hoerbuch-sprecher {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px !important;
}
.hoerbuch-desc {
  color: var(--parchment-dark);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px !important;
}
.hoerbuch-player { margin-bottom: 28px; }
.player-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px !important;
}
.hoerbuch-audio {
  width: 100%;
  height: 40px;
  filter: sepia(30%) saturate(1.2) hue-rotate(10deg);
  accent-color: var(--gold);
}
.platforms-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px !important;
}
.platforms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.platforms-list span {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--parchment-dark);
  background: var(--stone-mid);
  border: var(--border-gold);
  padding: 5px 14px;
}
@media (max-width: 768px) {
  .hoerbuch-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hoerbuch-cover { max-width: 260px; margin: 0 auto; }
}
/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   KONTAKT / CONTACT PAGE
══════════════════════════════ */
.contact-hero {
  padding: 140px 0 60px;
  background: var(--stone);
  text-align: center;
}
.contact-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  margin: 8px 0 16px;
}
.contact-section {
  background: var(--dark);
  padding: 80px 0 100px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-intro {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.contact-detail {
  margin-bottom: 20px;
}
.contact-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-detail a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--gold); }
.contact-social-note {
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}
.contact-form .form-group {
  margin-bottom: 24px;
}
.contact-form label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-form .required { color: var(--red-light); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--stone-mid);
  border: 1px solid var(--stone-light);
  color: var(--text-light);
  padding: 14px 16px;
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  border-radius: 2px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-error {
  background: rgba(139,26,26,0.2);
  border: 1px solid var(--red);
  color: #e88;
  padding: 14px 16px;
  margin-bottom: 24px;
  border-radius: 2px;
  font-size: 0.95rem;
}
.contact-success {
  text-align: center;
  padding: 48px 32px;
  background: var(--stone-mid);
  border: 1px solid var(--gold-dark);
}
.contact-success-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-success h2 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-success p { color: var(--text-muted); }
@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ══════════════════════════════
   BLOG RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .blog-grid,
  .blog-grid-secondary { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; min-height: auto; }
  .blog-featured-img { aspect-ratio: 16/9; height: 280px; }
  .blog-featured-img-overlay { background: linear-gradient(to bottom, transparent 60%, var(--stone-mid) 100%); }
  .blog-featured-body { padding: 32px; }
}

@media (max-width: 768px) {
  .blog-page-header { padding: 100px 0 48px; }
  .blog-grid,
  .blog-grid-secondary { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-body { padding: 24px; }
  .blog-featured-title { font-size: 1.3rem; }
  .post-hero-content h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .post-hero { min-height: 45vh; padding: 0 0 48px; }
  .post-content-wrap { padding: 0 24px; }
  .post-nav { grid-template-columns: 1fr; gap: 20px; }
  .post-nav-next { text-align: left; }
  .post-book-cta { flex-direction: column; gap: 20px; align-items: flex-start; }
  .author-box { flex-direction: column; gap: 16px; padding: 24px; }
  .author-box-avatar { width: 64px; height: 64px; }
}

@media (max-width: 480px) {
  .blog-featured-img { height: 220px; }
  .post-content-wrap { padding: 0 16px; }
}

/* ══════════════════════════════
   COMMENTS
══════════════════════════════ */
.post-comments-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 80px;
}
.post-comments-cta {
  background: var(--stone-mid);
  border-left: 4px solid var(--gold);
  border-top: var(--border-gold);
  border-right: var(--border-gold);
  border-bottom: var(--border-gold);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.post-comments-cta p {
  color: var(--parchment);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.post-comments-cta strong { color: var(--gold); }

/* Comment list */
.comments-area {}
.comments-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.comment-list { list-style: none; padding: 0; margin: 0 0 48px; }
.comment-list .comment { padding: 24px 0; border-bottom: 1px solid rgba(201,168,76,0.1); }
.comment-list .children { list-style: none; padding-left: 32px; }
.comment-author .avatar { border-radius: 50%; border: 1px solid rgba(201,168,76,0.3); width: 40px; height: 40px; }
.comment-meta { margin-bottom: 8px; }
.comment-author b a, .comment-author b { font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.comment-metadata a, .comment-metadata time { font-family: var(--font-heading); font-size: 10px; letter-spacing: 0.1em; color: var(--text-muted); text-decoration: none; }
.comment-body .comment-text p { color: var(--parchment-dark); font-size: 0.95rem; line-height: 1.75; margin-bottom: 0.8em; }
.reply a { font-family: var(--font-heading); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.reply a:hover { color: var(--gold); }

/* Comment form */
.comment-respond { margin-top: 32px; }
.comment-reply-title { font-family: var(--font-heading); font-size: 1.1rem; color: #fff; margin-bottom: 24px; }
.comment-form label { display: block; font-family: var(--font-heading); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  background: var(--stone-mid);
  border: var(--border-gold);
  color: var(--parchment);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--gold); }
.comment-form textarea { min-height: 140px; resize: vertical; }
.comment-form .form-group,
.comment-form p { margin-bottom: 16px; }
.comment-form .comment-form-cookies-consent { display: flex; gap: 10px; align-items: flex-start; }
.comment-form .comment-form-cookies-consent input { width: auto; margin-top: 3px; }
.comment-form .comment-form-cookies-consent label { margin: 0; font-size: 9px; line-height: 1.5; }
.comment-form .submit {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.comment-form .submit:hover { background: var(--gold); color: var(--dark); }

@media (max-width: 768px) {
  .post-comments-section { padding: 0 16px 64px; }
  .post-comments-cta { padding: 20px 20px; }
}
