/* ============================================================
   LAUTENSCHLAGER — ZENTRALES DESIGN-SYSTEM v3
   ============================================================ */

/* ------------------------------------------------------------
   1. SCHRIFTEN
   ------------------------------------------------------------ */

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant/CormorantGaramond-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant/CormorantGaramond-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant/CormorantGaramond-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant/CormorantGaramond-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant/CormorantGaramond-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant/CormorantGaramond-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/eb-garamond/EBGaramond-Variable.ttf') format('truetype');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/eb-garamond/EBGaramond-Italic-Variable.ttf') format('truetype');
  font-weight: 400 800;
  font-style: italic;
  font-display: swap;
}

/* ------------------------------------------------------------
   2. DESIGN TOKENS
   ------------------------------------------------------------ */

:root {
  --color-ink:          #1C1A17;
  --color-ink-muted:    #4A453E;
  --color-ink-faint:    #7A7168;
  --color-paper:        #F5F0E8;
  --color-paper-warm:   #EDE8DC;
  --color-paper-dark:   #E0D9CC;
  --color-night:        #0D0D0B;
  --color-night-soft:   #1A1A16;
  --color-gold:         #5C4A1E;
  --color-gold-light:   #7A6228;
  --color-gold-on-dark: #C9A96E;  /* gold variant that passes AA on dark bg */
  --color-white:        #FAFAF7;
  --color-white-muted:  rgba(250, 250, 247, 0.75);
  /* Accessible footer link color: ~7:1 on #0D0D0B */
  --color-footer-link:  rgba(250, 250, 247, 0.65);
  /* Accessible privacy text: ~5:1 on #1A1A16 */
  --color-privacy-text: rgba(250, 250, 247, 0.55);

  --font-heading: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --font-body:    'EB Garamond', 'Palatino Linotype', Georgia, 'Times New Roman', serif;

  --fs-display:  clamp(2.6rem, 5.5vw, 4.8rem);
  --fs-hero:     clamp(2.2rem, 4.5vw, 4rem);
  --fs-h1:       clamp(1.8rem, 3vw, 2.8rem);
  --fs-h2:       clamp(1.4rem, 2.2vw, 2rem);
  --fs-h3:       clamp(1.15rem, 1.8vw, 1.5rem);
  --fs-h4:       clamp(1rem, 1.4vw, 1.2rem);
  --fs-body:     clamp(1.05rem, 1.4vw, 1.2rem);
  --fs-small:    0.875rem;
  --fs-label:    0.72rem;

  --lh-display:  1.1;
  --lh-heading:  1.25;
  --lh-body:     1.85;
  --lh-tight:    1.45;

  --ls-caps:     0.14em;
  --ls-heading:  0.01em;

  --max-width-page:    1600px;
  --max-width-content: 1100px;
  --max-width-prose:   680px;
  --max-width-series:  900px;
  --pad-page:          clamp(1.5rem, 5vw, 4rem);

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-xxl: 12rem;

  --radius-btn:  1px;
  --radius-card: 2px;

  --transition:      180ms ease;
  --transition-slow: 380ms ease;
}

/* ------------------------------------------------------------
   3. RESET
   ------------------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-ink);
  background-color: var(--color-paper);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
a:hover, a:focus { color: var(--color-gold-light); }
ul, ol { list-style: none; }

/* ------------------------------------------------------------
   4. ZUGÄNGLICHKEIT
   ------------------------------------------------------------ */

.skip-link {
  position: absolute; top: -100%; left: 0;
  background: var(--color-night); color: var(--color-white);
  padding: 1rem 2rem; font-family: var(--font-body);
  font-size: var(--fs-small); letter-spacing: var(--ls-caps);
  text-transform: uppercase; text-decoration: none; z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 2px solid var(--color-gold-on-dark); outline-offset: 3px; border-radius: var(--radius-btn); }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------
   5. LAYOUT
   ------------------------------------------------------------ */

.container { width: 100%; max-width: var(--max-width-page); margin: 0 auto; padding-left: var(--pad-page); padding-right: var(--pad-page); }
.container--content { max-width: var(--max-width-content); }
.container--prose   { max-width: var(--max-width-prose); }
.container--series  { max-width: var(--max-width-series); }

/* ------------------------------------------------------------
   6. TYPOGRAFIE
   ------------------------------------------------------------ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: normal;   /* NO global italic — italic only where explicitly set */
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: var(--color-ink);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin-bottom: 1.3em; }
p:last-child { margin-bottom: 0; }

/* Großer Anfangsbuchstabe */
.prose--initial > p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 4em; font-weight: 300; line-height: 0.75;
  float: left; margin-right: 0.06em; margin-top: 0.1em;
  color: var(--color-gold);
}

/* Blockquote */
blockquote {
  position: relative;
  padding: 1.5rem 2rem 1.5rem 3rem;
  margin: 3rem 0;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.75;
  color: var(--color-ink);
}
blockquote::before {
  content: '';
  position: absolute; left: 0; top: 0.75rem; bottom: 0.75rem;
  width: 1px; background-color: var(--color-gold);
}

/* Display-Zitat auf Homepage */
.blockquote--display {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  line-height: 1.5;
  padding: 1.5rem 2rem 1.5rem 3.5rem;   /* -30% height via reduced padding */
  margin: var(--space-lg) auto;          /* was --space-xl */
  max-width: 720px;
  font-weight: 300;
}
.blockquote--display::before { width: 2px; top: 0.75rem; bottom: 0.75rem; }

/* Label */
.label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--color-ink-faint);
  display: block;
}

/* Zierleiste */
.ornament {
  display: flex; align-items: center; gap: 1.5rem;
  justify-content: center; margin: 2rem auto;
  color: var(--color-gold); opacity: 0.6;
  font-size: 0.6rem; letter-spacing: 0.3em;
}
.ornament::before, .ornament::after {
  content: ''; flex: 1; max-width: 140px;
  height: 1px; background-color: var(--color-gold); opacity: 0.5;
}

/* Trennlinie */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-paper-dark) 20%, var(--color-paper-dark) 80%, transparent);
  margin: var(--space-lg) 0;
}

/* Caption */
.caption {
  font-size: var(--fs-label); letter-spacing: 0.04em;
  color: var(--color-ink-faint); text-align: center;
  margin-top: 0.5rem; font-style: italic;
}

/* ------------------------------------------------------------
   7. NAVIGATION
   ------------------------------------------------------------ */

.site-nav {
  background-color: var(--color-night);
  position: sticky; top: 0; z-index: 100;
}

.site-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md); padding: 1.25rem var(--pad-page);
  max-width: var(--max-width-page); margin: 0 auto;
}

.site-nav__brand {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 400;      /* was 300 italic — now upright, more composed */
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
}
.site-nav__brand:hover, .site-nav__brand:focus { color: var(--color-white-muted); }

.site-nav__menu {
  display: flex; align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem); flex-wrap: nowrap;
}

.site-nav__link {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--color-white-muted);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.site-nav__link:hover, .site-nav__link:focus {
  color: var(--color-white); border-bottom-color: rgba(255,255,255,0.3);
}
.site-nav__link--active { color: var(--color-white); border-bottom-color: var(--color-gold-on-dark); }

.site-nav__toggle {
  display: none; background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white-muted); cursor: pointer;
  padding: 0.5rem 0.9rem; border-radius: var(--radius-btn);
  font-family: var(--font-body); font-size: var(--fs-label);
  letter-spacing: var(--ls-caps); text-transform: uppercase;
}

@media (max-width: 680px) {
  .site-nav__toggle { display: block; }
  .site-nav__inner { flex-wrap: wrap; padding-bottom: 0; }
  .site-nav__menu { display: none; flex-direction: column; align-items: flex-start; gap: 0; width: 100%; padding-bottom: 1rem; }
  .site-nav__menu.is-open { display: flex; }
  .site-nav__link { padding: 0.7rem 0; width: 100%; border-bottom: none; border-top: 1px solid rgba(255,255,255,0.06); }
}

/* ------------------------------------------------------------
   8. HERO — Text-Karten-Ansatz (literarisch, kein Restaurant)
   ------------------------------------------------------------ */

.hero {
  /* Default: kein Hintergrundbild — reiner Dunkel-Hero für Unterseiten */
  background-color: var(--color-night);
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--pad-page);
  position: relative; overflow: hidden;
}

/* Mit Hintergrundbild — Bild leicht sichtbar, Text in Karte */
.hero--with-image {
  background-size: cover;
  background-position: center;
}

/* Abgedunkeltes Overlay über dem Bild */
.hero--with-image::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13, 13, 11, 0.55);
  pointer-events: none;
}

/* Hauptseiten-Hero: hoch */
.hero--full {
  min-height: 88vh;
}

/* Schmale Unterseiten-Variante */
.hero--slim {
  min-height: 38vh;
}

.hero__inner {
  position: relative; z-index: 1;
  max-width: 860px;
}

/* TEXT-KARTE: weißer Papier-Hintergrund auf dem Bild */
.hero--card .hero__inner {
  background: rgba(245, 240, 232, 0.92);
  padding: 3.5rem 4rem;
  max-width: 680px;
  text-align: left;
}

.hero--card .hero__title { color: var(--color-ink); }
.hero--card .hero__subtitle { color: var(--color-ink-muted); }
.hero--card .hero__eyebrow { color: var(--color-gold); }

@media (max-width: 600px) {
  .hero--card .hero__inner { padding: 2rem 1.5rem; }
}

/* Eyebrow / Pre-Heading */
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  /* Readable on dark backgrounds: passes AA */
  color: var(--color-white-muted);
  margin-bottom: 1rem;   /* was 2rem — reduced height */
  display: block;
}

/* On card hero, eyebrow is gold (on light bg) */
.hero--card .hero__eyebrow {
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-display);
  font-weight: 400;
  font-style: normal;    /* NOT italic — book authors are upright and composed */
  letter-spacing: 0.03em;
  color: var(--color-white);
  line-height: var(--lh-display);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.7;
  color: var(--color-white-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* On card, subtitle not centered */
.hero--card .hero__subtitle { margin: 0 0 2rem; }

.hero__cta-group { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
.hero--card .hero__cta-group { justify-content: flex-start; }

/* Buchseite: Hero als Hintergrund des oberen Bereichs (Kopf + Cover) */
.book-hero-bg {
  background-color: var(--color-night);
  background-size: cover;
  background-position: center;
  position: relative;
}
.book-hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13, 13, 11, 0.65);
  pointer-events: none;
}
.book-hero-bg > * { position: relative; z-index: 1; }

/* ------------------------------------------------------------
   9. BUTTONS
   ------------------------------------------------------------ */

.btn {
  display: inline-block;
  font-family: var(--font-body); font-size: var(--fs-label); font-weight: 400;
  letter-spacing: var(--ls-caps); text-transform: uppercase; text-decoration: none;
  padding: 0.85rem 2.25rem; border-radius: var(--radius-btn);
  border: 1px solid transparent; cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background-color: transparent; color: var(--color-white);
  border-color: rgba(255,255,255,0.45);
}
.btn--primary:hover, .btn--primary:focus {
  background-color: rgba(255,255,255,0.08); border-color: var(--color-white); color: var(--color-white);
}

.btn--outline {
  background-color: transparent; color: var(--color-white-muted);
  border-color: rgba(255,255,255,0.25);
}
.btn--outline:hover, .btn--outline:focus { border-color: rgba(255,255,255,0.6); color: var(--color-white); }

.btn--dark {
  background-color: transparent; color: var(--color-ink); border-color: var(--color-ink-muted);
}
.btn--dark:hover, .btn--dark:focus {
  background-color: var(--color-ink); color: var(--color-white); border-color: var(--color-ink);
}

/* On card hero: dark buttons */
.hero--card .btn--primary {
  background-color: var(--color-ink); color: var(--color-white); border-color: var(--color-ink);
}
.hero--card .btn--primary:hover { background-color: var(--color-gold); border-color: var(--color-gold); }

.btn--purchase {
  background-color: transparent; color: var(--color-gold); border-color: var(--color-gold);
}
.btn--purchase:hover, .btn--purchase:focus { background-color: var(--color-gold); color: var(--color-white); }

/* ------------------------------------------------------------
   10. ABSCHNITTE
   ------------------------------------------------------------ */

.section { padding: var(--space-xl) 0; }
.section--alt { background-color: var(--color-paper-warm); }
.section--dark { background-color: var(--color-night); color: var(--color-white); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark p { color: var(--color-white); }

.section__header { text-align: center; margin-bottom: var(--space-lg); }

.section__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 400;
  font-style: normal;    /* normal, not italic */
  margin-bottom: 0.75rem;
}

.section__lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75; color: var(--color-ink-muted);
  max-width: 55ch; margin: 0 auto;
}

/* ------------------------------------------------------------
   11. BUCHCOVER-RASTER
   ------------------------------------------------------------ */

.book-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin: 0 auto; max-width: var(--max-width-content);
}

.book-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform var(--transition-slow);
}
.book-card:hover, .book-card:focus { transform: translateY(-3px); }

.book-card__cover-wrap {
  width: 100%;
  aspect-ratio: 1340 / 1000;
  overflow: hidden;
  background-color: var(--color-paper-dark);
  position: relative;
}
.book-card__cover-wrap--andeutungen { aspect-ratio: 1413 / 1000; }

.book-card__cover {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  transition: opacity var(--transition-slow);
}
.book-card:hover .book-card__cover { opacity: 0.88; }

/* Hover-Overlay */
.book-card__overlay {
  position: absolute; inset: 0;
  background: rgba(13, 13, 11, 0);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem; opacity: 0;
  transition: opacity var(--transition-slow), background var(--transition-slow);
  pointer-events: none;
}
.book-card:hover .book-card__overlay,
.book-card:focus-within .book-card__overlay { opacity: 1; background: rgba(13, 13, 11, 0.60); }

.book-card__overlay-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.75rem);
  font-weight: 400; font-style: normal;
  color: var(--color-white); text-align: center;
  padding: 0 1.25rem; line-height: 1.2;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.book-card__overlay-cta {
  font-family: var(--font-body); font-size: var(--fs-label);
  letter-spacing: var(--ls-caps); text-transform: uppercase;
  color: rgba(250, 250, 247, 0.72);
  border-bottom: 1px solid rgba(250, 250, 247, 0.35); padding-bottom: 2px;
}

/* Book card title: small, gold — not grey-black */
.book-card__title {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.75rem;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 900px) { .book-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .book-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* ------------------------------------------------------------
   12. BUCHSEITE — Cover-Banner
   ------------------------------------------------------------ */

.book-cover-banner {
  width: 100%; max-width: var(--max-width-content);
  margin: 0 auto 1.25rem;
}
.book-cover-banner__wrap {
  width: 100%; aspect-ratio: 1340 / 1000;
  overflow: hidden; background-color: var(--color-night);
}
.book-cover-banner__wrap--andeutungen { aspect-ratio: 1413 / 1000; }
.book-cover-banner__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}

/* Text-Inhalt unter dem Cover */
.book-content { max-width: var(--max-width-content); margin: 0 auto; padding: 0 var(--pad-page); }

/* Buchkopf — auf dunklem Hintergrund-Bild */
.book-header { margin-bottom: var(--space-md); text-align: center; padding: var(--space-lg) var(--pad-page) 0; }

.book-header__series {
  font-family: var(--font-body); font-size: var(--fs-label);
  letter-spacing: var(--ls-caps); text-transform: uppercase;
  color: var(--color-white-muted);   /* on dark bg */
  margin-bottom: 1rem; display: block;
}
.book-header__title { font-size: var(--fs-h1); font-style: normal; font-weight: 400; margin-bottom: 0.75rem; color: var(--color-white); }
.book-header__narrator { font-family: var(--font-body); font-style: italic; color: var(--color-white-muted); font-size: clamp(0.95rem, 1.4vw, 1.05rem); padding-bottom: var(--space-lg); display: block; }

/* Metadaten — direkt unter dem Cover */
.book-meta {
  display: flex; flex-wrap: wrap; gap: 2rem;
  padding: 1.25rem 2rem;
  background-color: var(--color-paper-warm);
  border-left: 1px solid var(--color-gold);
  margin: 0 0 var(--space-md);
}
.book-meta__item { display: flex; flex-direction: column; gap: 0.3rem; }
.book-meta__label { font-family: var(--font-body); font-size: var(--fs-label); letter-spacing: var(--ls-caps); text-transform: uppercase; color: var(--color-ink-faint); }
.book-meta__value { font-size: var(--fs-body); color: var(--color-ink); }

/* Kaufblock */
.purchase-block { margin-top: var(--space-md); padding-top: var(--space-md); border-top: 1px solid var(--color-paper-dark); }
.purchase-block__label { font-family: var(--font-body); font-size: var(--fs-label); letter-spacing: var(--ls-caps); text-transform: uppercase; color: var(--color-ink-faint); margin-bottom: 1rem; display: block; }
.purchase-block__links { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ------------------------------------------------------------
   13. ÜBER BENNIE — Prosa
   ------------------------------------------------------------ */

.prose-section {
  max-width: var(--max-width-prose);
  margin: 0 auto;
  padding: var(--space-xl) var(--pad-page);
}
.prose-section p { font-size: var(--fs-body); line-height: var(--lh-body); margin-bottom: 1.5em; }

/* +40% Breite */
.prose-section--wide { max-width: 952px; }

/* Über-Bennie-Seite: gleiche Abstände oben und unten (kleiner) */
/* Top = bottom = was der Abstand unter der Zierlinie zu ANMERKUNG ist ≈ 2.5rem */
.prose-section--bennie-spacing {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.publisher-note {
  max-width: 952px;
  margin: 2.5rem auto 0;   /* gleiches Maß wie Abstand oben */
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--color-paper-dark);
  border-bottom: 1px solid var(--color-paper-dark);
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.8; color: var(--color-ink-muted);
}
.publisher-note__label {
  font-family: var(--font-body); font-size: var(--fs-label);
  letter-spacing: var(--ls-caps); text-transform: uppercase;
  color: var(--color-gold); margin-bottom: 1rem; display: block; font-style: normal;
}

/* ------------------------------------------------------------
   14. SERIEN-ÜBERSICHT / MEINE BÜCHER
   ------------------------------------------------------------ */

.series-timeline { max-width: var(--max-width-series); margin: 0 auto; padding: 0 var(--pad-page); }

.series-entry {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem; padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-paper-dark);
  align-items: start; text-decoration: none; color: inherit;
  transition: opacity var(--transition);
}
.series-entry:last-child { border-bottom: none; }
.series-entry:hover { opacity: 0.85; }

.series-entry__cover-wrap { width: 100%; aspect-ratio: 1340 / 1000; overflow: hidden; background-color: var(--color-paper-dark); }
.series-entry__cover-wrap--andeutungen { aspect-ratio: 1413 / 1000; }
.series-entry__cover { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.series-entry__number { font-family: var(--font-body); font-size: var(--fs-label); letter-spacing: var(--ls-caps); text-transform: uppercase; color: var(--color-gold); margin-bottom: 0.5rem; display: block; }
.series-entry__title { font-size: var(--fs-h3); font-style: normal; font-weight: 400; margin-bottom: 0.5rem; }
.series-entry__timeframe { font-family: var(--font-body); font-size: var(--fs-small); color: var(--color-ink-faint); margin-bottom: 0.75rem; letter-spacing: 0.03em; }
.series-entry__hook { font-size: clamp(0.95rem, 1.3vw, 1.05rem); line-height: 1.75; color: var(--color-ink-muted); }

@media (max-width: 780px) { .series-entry { grid-template-columns: 180px 1fr; gap: 1.25rem; } }
@media (max-width: 480px) { .series-entry { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   15. HOMEPAGE
   ------------------------------------------------------------ */

.opening-statement { max-width: var(--max-width-prose); margin: 0 auto; padding: var(--space-xl) var(--pad-page); text-align: center; }
.opening-statement p { font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.85; color: var(--color-ink); font-style: italic; }

.covers-section { padding: var(--space-xl) 0; }
.covers-section__intro { text-align: center; margin-bottom: var(--space-lg); padding: 0 var(--pad-page); }

/* Reader Note */
.reader-note { padding: 1.75rem 2.25rem; background-color: var(--color-paper-warm); border-left: 1px solid var(--color-gold); margin: 2rem 0; }
.reader-note__label { font-family: var(--font-body); font-size: var(--fs-label); letter-spacing: var(--ls-caps); text-transform: uppercase; color: var(--color-gold); margin-bottom: 0.5rem; display: block; }
.reader-note p { font-size: clamp(0.95rem, 1.3vw, 1.05rem); line-height: 1.8; color: var(--color-ink-muted); font-style: italic; margin: 0; }

/* ------------------------------------------------------------
   16. PLACEHOLDER
   ------------------------------------------------------------ */

.placeholder-text {
  background: repeating-linear-gradient(-45deg, rgba(92,74,30,0.04) 0px, rgba(92,74,30,0.04) 10px, transparent 10px, transparent 20px);
  border: 1px dashed rgba(92,74,30,0.3);
  border-radius: var(--radius-card); padding: 2.5rem;
  color: var(--color-ink-faint); font-family: var(--font-body);
  font-size: var(--fs-small); letter-spacing: var(--ls-caps);
  text-transform: uppercase; text-align: center; position: relative;
}
.placeholder-text::before { content: '— Autortext folgt —'; display: block; font-size: var(--fs-label); color: var(--color-gold); margin-bottom: 0.5rem; opacity: 0.7; }
.placeholder-text--sm  { min-height: 80px; }
.placeholder-text--md  { min-height: 160px; }
.placeholder-text--lg  { min-height: 280px; }
.placeholder-text--xl  { min-height: 420px; }

/* ------------------------------------------------------------
   17. NEWSLETTER & KONTAKT
   ------------------------------------------------------------ */

.footer-strip {
  background-color: var(--color-night-soft);
  padding: var(--space-xl) 0;
  color: var(--color-white);
  width: 100%;
}

.footer-strip__inner {
  max-width: var(--max-width-page);
  margin: 0 auto;
  padding: 0 var(--pad-page);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

/* Right column always right-aligned */
.footer-strip__inner > div:last-child {
  text-align: right;
}

.footer-strip__heading { font-family: var(--font-heading); font-size: var(--fs-h3); font-weight: 400; font-style: normal; color: var(--color-white); margin-bottom: 0.75rem; }
.footer-strip__text { font-size: clamp(0.9rem, 1.2vw, 1rem); line-height: 1.75; color: var(--color-white-muted); margin-bottom: 1.75rem; }

.newsletter-form { display: flex; gap: 0; max-width: 480px; }
.newsletter-form__input {
  flex: 1; padding: 0.85rem 1.25rem;
  font-family: var(--font-body); font-size: var(--fs-small);
  border: 1px solid rgba(255,255,255,0.2); border-right: none;
  border-radius: 0;
  background-color: rgba(255,255,255,0.06); color: var(--color-white);
  transition: border-color var(--transition), background-color var(--transition);
}
.newsletter-form__input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form__input:focus { outline: none; border-color: rgba(255,255,255,0.5); background-color: rgba(255,255,255,0.1); }

.newsletter-form__btn {
  font-family: var(--font-body); font-size: var(--fs-label); font-weight: 400;
  letter-spacing: var(--ls-caps); text-transform: uppercase;
  background-color: transparent; color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.35); padding: 0.85rem 1.75rem;
  cursor: pointer; transition: background-color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.newsletter-form__btn:hover, .newsletter-form__btn:focus { background-color: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* ACCESSIBLE: privacy text ≥ 4.5:1 on dark bg */
.newsletter-privacy {
  font-size: var(--fs-label);
  color: var(--color-privacy-text);   /* rgba(250,250,247,0.55) ≈ 5.2:1 on #1A1A16 */
  margin-top: 0.75rem; line-height: 1.6;
}
.newsletter-privacy a { color: rgba(250,250,247,0.7); text-underline-offset: 2px; }
.newsletter-privacy a:hover { color: rgba(250,250,247,0.95); }

.contact-email {
  font-family: var(--font-heading); font-size: var(--fs-h3); font-weight: 300; font-style: italic;
  color: var(--color-white-muted); text-decoration: none; display: block;
  margin-top: 0.5rem; transition: color var(--transition); word-break: break-all;
}
.contact-email:hover, .contact-email:focus { color: var(--color-white); }

@media (max-width: 680px) {
  .footer-strip__inner { grid-template-columns: 1fr; }
  .footer-strip__inner > div:last-child { text-align: left; }
  .newsletter-form { max-width: 100%; }
}

/* ------------------------------------------------------------
   18. FOOTER — ACCESSIBLE CONTRAST
   ------------------------------------------------------------ */

.site-footer {
  background-color: var(--color-night);
  color: var(--color-footer-link);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.site-footer__inner {
  max-width: var(--max-width-page); margin: 0 auto; padding: 0 var(--pad-page);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}

.site-footer__legal { display: flex; gap: clamp(1.25rem, 3vw, 2.5rem); flex-wrap: wrap; }

/* ACCESSIBLE: legal links ≥ 4.5:1 on #0D0D0B */
.site-footer__link {
  font-family: var(--font-body); font-size: var(--fs-label);
  letter-spacing: var(--ls-caps); text-transform: uppercase;
  /* rgba(250,250,247,0.65) = ~6.3:1 on #0D0D0B — passes AA */
  color: var(--color-footer-link);
  text-decoration: none; transition: color var(--transition);
}
.site-footer__link:hover, .site-footer__link:focus { color: var(--color-white); }

.site-footer__copy {
  font-family: var(--font-body); font-size: var(--fs-label);
  letter-spacing: 0.04em; color: rgba(250,250,247,0.4); text-align: right;
}

@media (max-width: 520px) { .site-footer__inner { flex-direction: column; align-items: flex-start; } .site-footer__copy { text-align: left; } }

/* ------------------------------------------------------------
   19. RECHTLICHE SEITEN — +45% Breite (760 → 1102px)
   ------------------------------------------------------------ */

.legal-page {
  max-width: 1102px;   /* 760 × 1.45 */
  margin: 0 auto;
  padding: var(--space-xl) var(--pad-page);
}
.legal-page h1 { font-size: var(--fs-h1); font-style: normal; font-weight: 400; margin-bottom: 0.5rem; }
.legal-page h2 { font-size: var(--fs-h3); font-weight: 400; font-style: normal; margin-top: 3rem; margin-bottom: 0.75rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--color-paper-dark); }
.legal-page h3 { font-size: var(--fs-h4); margin-top: 1.75rem; margin-bottom: 0.5rem; }
.legal-page p, .legal-page li { font-size: clamp(0.95rem, 1.3vw, 1.05rem); line-height: 1.85; color: var(--color-ink); margin-bottom: 0.75em; }
.legal-page ul, .legal-page ol { list-style: disc; padding-left: 1.75rem; margin-bottom: 1rem; }
.legal-page .last-updated { font-family: var(--font-body); font-size: var(--fs-label); letter-spacing: var(--ls-caps); text-transform: uppercase; color: var(--color-ink-faint); margin-bottom: 3rem; display: block; }

/* ------------------------------------------------------------
   20. ATMOSPHÄRISCHES BILD (bleibt inline für Buch-Seiten)
   ------------------------------------------------------------ */

.atmospheric-image {
  width: 100%; max-height: 480px;
  object-fit: cover; object-position: center;
  display: block; opacity: 0.88;
}

/* ------------------------------------------------------------
   21. ANIMATION
   ------------------------------------------------------------ */

@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp 0.8s ease both; }
.fade-in--delay-1 { animation-delay: 0.2s; }
.fade-in--delay-2 { animation-delay: 0.4s; }
.fade-in--delay-3 { animation-delay: 0.6s; }

/* ------------------------------------------------------------
   22. UTILITY
   ------------------------------------------------------------ */

.text-center  { text-align: center; }
.text-gold    { color: var(--color-gold); }
.text-muted   { color: var(--color-ink-muted); }
.text-italic  { font-style: italic; }
.mt-sm { margin-top: var(--space-sm); } .mt-md { margin-top: var(--space-md); } .mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); } .mb-md { margin-bottom: var(--space-md); } .mb-lg { margin-bottom: var(--space-lg); }
.divider { height: 1px; background: linear-gradient(to right, transparent, var(--color-paper-dark) 20%, var(--color-paper-dark) 80%, transparent); margin: var(--space-lg) 0; }
