/* ==========================================================================
   nerovoss.com — Nero Voss · Autorenseite
   Mobile first. Ruhe = Qualitaet.
   ========================================================================== */

:root {
  --papier:     #F3EFE7;
  --papier-2:   #EBE5DA;
  --tinte:      #171717;
  --tinte-weich:#4A453E;
  --kohle:      #242321;
  --kohle-tief: #1A1917;
  --wein:       #6C2F2F;
  --wein-hell:  #8A3E3E;
  --messing:    #A58B62;
  --messing-hl: #C4A87C;

  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --mw:     72rem;   /* Seitenbreite    */
  --mw-txt: 38rem;   /* Lesebreite      */
  --nav-h:  3.75rem;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--papier);
  color: var(--tinte);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; }

::selection { background: var(--messing); color: #fff; }

:focus-visible {
  outline: 2px solid var(--messing);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Bausteine ----------------------------------------------------------- */

.wrap  { width: 100%; max-width: var(--mw); margin-inline: auto; padding-inline: 1.5rem; }
.narrow{ max-width: var(--mw-txt); margin-inline: auto; }

section { padding-block: clamp(4.5rem, 12vw, 9rem); }

.dunkel { background: var(--kohle); color: var(--papier); }
.dunkel .lead { color: rgba(243,239,231,.78); }
.dunkel h2 { color: var(--papier); }
.dunkel-tief { background: var(--kohle-tief); }

/* Kleine Hilfsklassen — ersetzen die von der CSP verbotenen style-Attribute */
.mitte-txt   { text-align: center; }
.abstand-oben{ margin-top: 2.5rem; }
.footer-lose { margin-top: clamp(4rem, 10vw, 7rem); }

/* Kapitaelchen-Label ueber Ueberschriften */
.label {
  font-family: var(--sans);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--messing);
  margin-bottom: 1.5rem;
}
.dunkel .label { color: var(--messing-hl); }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -.01em; }

h2 {
  font-size: clamp(2.1rem, 6.5vw, 3.6rem);
  margin-bottom: 1.75rem;
}
h3 { font-size: clamp(1.4rem, 3.5vw, 1.9rem); margin-bottom: .75rem; }

p + p { margin-top: 1.15em; }

.lead {
  font-size: clamp(1.075rem, 2.1vw, 1.2rem);
  line-height: 1.8;
  color: var(--tinte-weich);
}

/* Duenne Messing-Trennlinie */
.rule {
  width: 4rem; height: 1px;
  background: var(--messing);
  opacity: .5;
  margin-block: 2.5rem;
}
.rule.mitte { margin-inline: auto; }

/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-wein { background: var(--wein); color: #fff; }
.btn-wein:hover { background: var(--wein-hell); }

.btn-linie { border-color: rgba(243,239,231,.35); color: var(--papier); }
.btn-linie:hover { border-color: var(--papier); background: rgba(243,239,231,.07); }

.btn-dunkel { border-color: rgba(23,23,23,.28); color: var(--tinte); }
.btn-dunkel:hover { border-color: var(--tinte); background: rgba(23,23,23,.05); }

/* Noch nicht bestellbar: sichtbar, aber klar als Status erkennbar */
.btn-warte {
  background: transparent;
  border-color: var(--messing);
  color: var(--messing);
  cursor: default;
}
.dunkel .btn-warte { color: var(--messing-hl); border-color: var(--messing-hl); }

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(36,35,33,0);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease),
              border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.fest {
  background: rgba(36,35,33,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(165,139,98,.22);
}

.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: .75rem; min-width: 0; }

/* Wortmarke — auf allen Buechern spaeter identisch */
.marke {
  font-family: var(--sans);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--papier);
  text-decoration: none;
  white-space: nowrap;
  /* Notfalls schrumpfen, damit der Kaufbutton nie aus dem Bild laeuft */
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.marke .zusatz {
  color: var(--messing);
  font-weight: 400;
  letter-spacing: .28em;
}

.nav-links { display: none; gap: 2.25rem; list-style: none; }
.nav-links a {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(243,239,231,.72);
  text-decoration: none;
  transition: color .3s var(--ease);
}
.nav-links a:hover { color: var(--papier); }

.nav-kauf {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--messing-hl);
  text-decoration: none;
  border: 1px solid rgba(165,139,98,.55);
  padding: .6rem 1.1rem;
  transition: background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;   /* darf nie schrumpfen oder ueberlaufen */
}
.nav-kauf:hover { background: var(--messing); color: var(--kohle); border-color: var(--messing); }

@media (min-width: 60rem) {
  .nav-links { display: flex; }
}

/* Unterhalb der Desktop-Navigation wird es eng: Zusatz weg, Schrift enger.
   Grosszuegig angesetzt, damit auch grosse Telefone und kleine Tablets passen. */
@media (max-width: 60rem) {
  .marke .zusatz { display: none; }
}
@media (max-width: 30rem) {
  .nav .wrap { padding-inline: 1.125rem; }
  .marke { font-size: .64rem; letter-spacing: .24em; }
  .nav-kauf { font-size: .6rem; letter-spacing: .1em; padding: .55rem .75rem; }
}

/* ==========================================================================
   01 · Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 0 0 clamp(3rem, 8vw, 5rem);
  background: var(--kohle-tief);
  overflow: hidden;
}

.hero-bild {
  position: absolute; inset: 0;
  background-image: url('bilder/hero.jpg');
  background-size: cover;
  background-position: 50% 42%;
}
/* Text muss ueber dem Bild lesbar bleiben */
.hero-bild::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,25,23,.55) 0%, rgba(26,25,23,.22) 30%, rgba(26,25,23,.86) 78%, var(--kohle-tief) 100%),
    radial-gradient(ellipse 85% 60% at 50% 78%, rgba(26,25,23,.6), transparent 70%);
}

.hero .wrap { position: relative; z-index: 2; width: 100%; }

.hero-autor {
  font-family: var(--sans);
  font-size: clamp(.72rem, 2.4vw, .95rem);
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(243,239,231,.82);
  margin-bottom: .9rem;
}

.hero-titel {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4.2rem, 21vw, 13rem);
  line-height: .84;
  letter-spacing: -.025em;
  color: var(--papier);
  margin-bottom: 1.5rem;
}

.hero-unter {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 3.4vw, 1.6rem);
  line-height: 1.5;
  color: rgba(243,239,231,.9);
  max-width: 30rem;
  margin-bottom: 2.5rem;
}
.hero-unter span { display: block; }

.hero-aktion { display: flex; flex-wrap: wrap; gap: .875rem; }

/* Cover schwebt ueber dem Hintergrund — erst ab Tablet */
.hero-cover { display: none; }

@media (min-width: 56rem) {
  .hero .wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 4rem;
  }
  .hero-cover {
    display: block;
    width: clamp(13rem, 21vw, 17.5rem);
    box-shadow: 0 2.5rem 5rem rgba(0,0,0,.6), 0 .5rem 1.5rem rgba(0,0,0,.4);
    transform: translateY(-1rem);
  }
}

/* Sehr dezenter Schnee */
.schnee { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.flocke {
  position: absolute; top: -8%;
  width: 3px; height: 3px;
  background: rgba(243,239,231,.5);
  border-radius: 50%;
  animation: fallen linear infinite;
}
@keyframes fallen {
  from { transform: translate3d(0, -10vh, 0); opacity: 0; }
  10%  { opacity: .55; }
  90%  { opacity: .35; }
  to   { transform: translate3d(2.5rem, 108vh, 0); opacity: 0; }
}

.scroll-hinweis {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(243,239,231,.4);
}

/* ==========================================================================
   02 · Die Geschichte
   ========================================================================== */

.geschichte-grid { display: grid; gap: 3rem; }

.jahr {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 9vw, 4.75rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
}

.bild-rahmen {
  position: relative;
  overflow: hidden;
  background: var(--kohle);
}
.bild-rahmen img { width: 100%; }

.bild-unterschrift {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--messing);
  margin-top: .875rem;
}

@media (min-width: 56rem) {
  .geschichte-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
  }
}

/* ==========================================================================
   03 · Das Buch
   ========================================================================== */

.buch { background: var(--papier-2); }

.buch-grid { display: grid; gap: 3rem; align-items: start; }

.buch-cover {
  width: min(20rem, 72%);
  margin-inline: auto;
  box-shadow: 0 1.75rem 3.5rem rgba(23,23,23,.28), 0 .375rem 1rem rgba(23,23,23,.14);
}

.buch-titel {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 9vw, 4.25rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.buch-autor {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--tinte-weich);
  margin-bottom: 1.5rem;
}
.buch-unter {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  line-height: 1.4;
  color: var(--wein);
  margin-bottom: 2rem;
}

.schlagworte {
  display: flex; flex-wrap: wrap; gap: .5rem;
  list-style: none;
  margin-bottom: 2.25rem;
}
.schlagworte li {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tinte-weich);
  border: 1px solid rgba(23,23,23,.16);
  padding: .4rem .8rem;
}

/* Buchdaten */
.daten { list-style: none; border-top: 1px solid rgba(23,23,23,.13); margin-bottom: 2.25rem; }
.daten li {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(23,23,23,.13);
  font-size: .9rem;
}
.daten dt, .daten .k {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--tinte-weich);
  flex-shrink: 0;
}
.daten .v { text-align: right; font-weight: 500; }

/* Kaufbereich */
.kauf-box {
  border: 1px solid rgba(165,139,98,.5);
  background: rgba(243,239,231,.6);
  padding: clamp(1.5rem, 4vw, 2rem);
}
.kauf-status {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--wein);
  margin-bottom: .75rem;
}
.kauf-box .btn { width: 100%; }

.haendler {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  gap: .5rem;
  margin-top: 1rem;
  list-style: none;
}
.haendler a, .haendler span {
  display: block; text-align: center;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .7rem .5rem;
  border: 1px solid rgba(23,23,23,.15);
  text-decoration: none;
  color: var(--tinte-weich);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.haendler a:hover { border-color: var(--tinte); color: var(--tinte); }
.haendler span { opacity: .42; }

.kauf-hinweis {
  font-size: .8rem;
  line-height: 1.6;
  color: var(--tinte-weich);
  margin-top: 1rem;
}

@media (min-width: 56rem) {
  .buch-grid { grid-template-columns: minmax(0, 26rem) 1fr; gap: 4.5rem; }
  /* Nur das Cover IM Buch-Raster klebt beim Scrollen.
     Ohne die Einschraenkung wuerde auch das Cover im Finale kleben
     und sich ueber den Text darunter schieben. */
  .buch-grid .buch-cover { width: 100%; margin: 0; position: sticky; top: calc(var(--nav-h) + 2rem); }
}

/* ==========================================================================
   04 · Die Hand  ·  Vollflaechige Bildsektion
   ========================================================================== */

.flaeche {
  position: relative;
  min-height: 88svh;
  display: flex; align-items: center;
  background: var(--kohle-tief);
  overflow: hidden;
  padding-block: clamp(5rem, 14vw, 8rem);
}
.flaeche-bild {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
/* Motive als Klasse statt inline — die CSP verbietet style-Attribute */
.flaeche-bild.laterne { background-image: url('bilder/laterne.jpg'); }
.flaeche-bild::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,25,23,.94) 0%, rgba(26,25,23,.74) 45%, rgba(26,25,23,.42) 100%);
}
.flaeche .wrap { position: relative; z-index: 2; }

.flaeche-satz {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.6vw, 2.75rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--papier);
  max-width: 34rem;
}
.flaeche-satz span { display: block; }
.flaeche-satz span + span { margin-top: 1.1em; }
.flaeche-satz .leise { color: rgba(243,239,231,.62); }

/* ==========================================================================
   05 · Sieben Stufen
   ========================================================================== */

.stufen-grid { display: grid; gap: 3rem; align-items: center; }

.stufen-zahl {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 13vw, 7rem);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.03em;
  color: var(--papier);
  margin-bottom: 1.5rem;
}

.fakten { list-style: none; margin-top: 2.5rem; }
.fakten li {
  display: flex; align-items: baseline; gap: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(243,239,231,.14);
}
.fakten .z {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--messing-hl);
  flex-shrink: 0;
  min-width: 3.5rem;
}
.fakten .t { color: rgba(243,239,231,.8); font-size: .95rem; line-height: 1.6; }

@media (min-width: 56rem) {
  .stufen-grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
}

/* ==========================================================================
   06 · Fuer wen ist Katrin?
   ========================================================================== */

.fuer-liste { list-style: none; max-width: 44rem; }
.fuer-liste li {
  position: relative;
  padding: 1.1rem 0 1.1rem 2.5rem;
  border-bottom: 1px solid rgba(23,23,23,.11);
  font-size: 1.05rem;
  line-height: 1.65;
}
.fuer-liste li::before {
  content: '';
  position: absolute; left: 0; top: 1.85rem;
  width: 1.25rem; height: 1px;
  background: var(--messing);
}

.abgrenzung {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--kohle);
  color: var(--papier);
}
.abgrenzung p { font-family: var(--serif); font-size: 1.3rem; line-height: 1.5; }
.abgrenzung .nicht { color: rgba(243,239,231,.5); }
.abgrenzung .doch { margin-top: 1.25rem; font-size: 1.5rem; }

/* ==========================================================================
   07 · Leseprobe
   ========================================================================== */

.leseprobe { background: var(--papier-2); }

.reader {
  max-width: var(--mw-txt);
  margin-inline: auto;
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.72;
  color: #221F1B;
}
.reader .kap-nr {
  font-family: var(--sans);
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--messing);
  text-align: center;
  margin-bottom: .75rem;
}
.reader .kap-titel {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 5vw, 2.4rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 2.5rem;
}
.reader p + p { margin-top: 0; text-indent: 1.4em; }
.reader p.d + p.d { text-indent: 0; }
.reader p.d { text-indent: 0; }
.reader p:first-of-type { text-indent: 0; }

/* Angeschnittener Text mit weichem Auslauf */
.reader-schnitt { position: relative; max-height: 30rem; overflow: hidden; }
.reader-schnitt::after {
  content: '';
  position: absolute; inset: auto 0 0 0; height: 12rem;
  background: linear-gradient(to bottom, rgba(235,229,218,0), var(--papier-2) 85%);
  pointer-events: none;
}

.reader-weiter { text-align: center; margin-top: 2.5rem; }

/* --- Eigene Leseseite (leseprobe.html) --------------------------------- */

.lese-kopf { text-align: center; margin-bottom: clamp(3rem, 8vw, 4.5rem); }
.lese-buch {
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--messing); margin-bottom: 1.5rem;
}
.lese-kopf .kap-nr {
  font-family: var(--sans);
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--tinte-weich); margin-bottom: .75rem;
}
.lese-kopf h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 0;
}

.lese-text {
  max-width: 36rem; margin-inline: auto;
  font-family: var(--serif);
  font-size: clamp(1.24rem, 2.6vw, 1.4rem);
  line-height: 1.74;
  color: #221F1B;
}
.lese-text p + p { text-indent: 1.4em; }
.lese-text p.d, .lese-text p.d + p, .lese-text p:first-child { text-indent: 0; }

.lese-ende {
  max-width: 36rem; margin: clamp(3.5rem, 9vw, 5rem) auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(23,23,23,.14);
  text-align: center;
}
.lese-ende .weiter {
  font-family: var(--serif); font-style: italic;
  font-size: 1.35rem; color: var(--tinte-weich); margin-bottom: 1.75rem;
}
.lese-ende .rest { font-size: .8rem; color: var(--tinte-weich); margin-top: 1.25rem; }

/* ==========================================================================
   08 · Die Welt von Katrin
   ========================================================================== */

.welt-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(15rem, 20rem);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem;
  /* Karten bis an den Bildschirmrand laufen lassen */
  margin-inline: -1.5rem;
  padding-inline: 1.5rem;
  scrollbar-width: thin;
}
.welt-karte { scroll-snap-align: start; }
.welt-karte figure { position: relative; overflow: hidden; background: var(--kohle); }
.welt-karte img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform .8s var(--ease);
}
.welt-karte:hover img { transform: scale(1.04); }

.welt-jahr {
  font-family: var(--serif);
  font-size: 1.75rem;
  margin: 1.25rem 0 .35rem;
}
.welt-ort { font-size: .95rem; font-weight: 500; margin-bottom: .25rem; }
.welt-txt { font-size: .875rem; color: var(--tinte-weich); line-height: 1.6; }
.dunkel .welt-txt { color: rgba(243,239,231,.62); }

@media (min-width: 64rem) {
  .welt-scroll {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    margin-inline: 0; padding-inline: 0;
  }
}

/* ==========================================================================
   09 · Ueber Nero Voss
   ========================================================================== */

.autor-grid { display: grid; gap: 3rem; align-items: center; }

/* Kein Foto — nur das Signet */
.signet {
  aspect-ratio: 1;
  display: grid; place-content: center;
  text-align: center;
  border: 1px solid rgba(165,139,98,.4);
  background:
    radial-gradient(circle at 50% 42%, rgba(165,139,98,.09), transparent 62%),
    var(--kohle-tief);
  padding: 2rem;
}
.signet .n {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 11vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--papier);
}
.signet .v {
  font-family: var(--sans);
  font-size: .7rem; font-weight: 500;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--messing);
  margin-top: 1rem;
}

.zitat {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3.4vw, 1.85rem);
  line-height: 1.45;
  color: var(--papier);
  border-left: 1px solid var(--messing);
  padding-left: 1.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 56rem) {
  .autor-grid { grid-template-columns: minmax(0, 20rem) 1fr; gap: 4.5rem; }
}

/* ==========================================================================
   11 · Finale
   ========================================================================== */

.finale { text-align: center; }
/* Das Cover steht am Ende der Sektion und darf nicht kleben */
.finale .buch-cover {
  width: min(17rem, 62%);
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  position: static;
  box-shadow: 0 2rem 4rem rgba(0,0,0,.55);
}
.finale-satz {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4.4vw, 2.4rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--papier);
  max-width: 34rem;
  margin: 0 auto 2.5rem;
}
.finale-txt { max-width: 32rem; margin: 0 auto 2.5rem; color: rgba(243,239,231,.72); }
.finale-titel {
  font-family: var(--serif);
  font-size: clamp(3rem, 11vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--papier);
  margin-bottom: .5rem;
}
.finale-autor {
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--messing);
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--kohle-tief);
  color: rgba(243,239,231,.55);
  padding-block: 3.5rem;
  font-size: .85rem;
  border-top: 1px solid rgba(165,139,98,.18);
}
.footer .wrap { display: grid; gap: 2rem; }
.footer a { color: rgba(243,239,231,.72); text-decoration: none; transition: color .3s var(--ease); }
.footer a:hover { color: var(--papier); }

.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: .78rem; letter-spacing: .1em; }

.footer-marke {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--papier);
  margin-bottom: .5rem;
}

@media (min-width: 48rem) {
  .footer .wrap { grid-template-columns: 1fr auto; align-items: end; }
}

/* ==========================================================================
   Sticky Kaufleiste — nur Handy
   ========================================================================== */

.kaufleiste {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem 1.25rem;
  background: rgba(36,35,33,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(165,139,98,.28);
  transform: translateY(105%);
  transition: transform .45s var(--ease);
  padding-bottom: calc(.7rem + env(safe-area-inset-bottom));
}
.kaufleiste.sichtbar { transform: translateY(0); }
.kaufleiste .t {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--papier);
  line-height: 1.2;
}
.kaufleiste .t small {
  display: block;
  font-family: var(--sans);
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--messing);
}
.kaufleiste .btn { padding: .8rem 1.25rem; font-size: .7rem; }

@media (min-width: 60rem) { .kaufleiste { display: none; } }

/* ==========================================================================
   Unterseiten (Impressum, Datenschutz, Entstehung, Leseprobe)
   ========================================================================== */

.seite { padding-top: calc(var(--nav-h) + clamp(3rem, 9vw, 6rem)); }
.seite h1 {
  font-size: clamp(2.25rem, 7vw, 3.5rem);
  margin-bottom: 2rem;
}
.seite h2 { font-size: clamp(1.4rem, 3.6vw, 1.85rem); margin: 3rem 0 1rem; }
.seite h3 { font-size: 1.15rem; font-family: var(--sans); font-weight: 600; margin: 2rem 0 .5rem; }
.seite p, .seite li { color: var(--tinte-weich); }
.seite ul, .seite ol { margin: 1rem 0 1rem 1.25rem; }
.seite li { margin-bottom: .5rem; }
.seite a { color: var(--wein); text-underline-offset: .2em; }

/* Redaktioneller Platzhalter — muss vor dem Livegang ersetzt werden */
.todo {
  border-left: 3px solid var(--wein);
  background: rgba(108,47,47,.06);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: .9rem;
}
.todo strong { color: var(--wein); }

/* Nav auf Unterseiten: dunkler Grund ist nicht garantiert -> immer fest */
body.unterseite { padding-top: 0; }

/* ==========================================================================
   Scroll-Animationen
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.da { opacity: 1; transform: none; }
.reveal.v2 { transition-delay: .12s; }
.reveal.v3 { transition-delay: .24s; }
.reveal.v4 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .schnee { display: none; }
}

@media print {
  .nav, .kaufleiste, .schnee, .scroll-hinweis { display: none; }
  body { background: #fff; color: #000; }
}
