/* Jonas Stein | HANNOVERLIEBEN – Stylesheet */

/* === LOCAL FONTS === */

@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-VariableFont_wght.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-Italic-VariableFont_wght.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("fonts/Jost-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("fonts/Jost-Italic-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* === VARIABLES === */
:root {
  --bg:            #FAF9F7;
  --bg-warm:       #F5EDE8;
  --bg-warm-mid:   #E8D8CF;
  --text:          #1A1825;
  --text-muted:    #534D60;
  --accent:        #C96A52;
  --accent-hover:  #B55A44;
  --accent-light:  #F0C4B6;
  --gold:          #A8834A;
  --gold-light:    #EDE3D0;
  --navy:          #1E2B4A;
  --navy-mid:      #3A4F7A;
  --white:         #FFFFFF;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Jost", system-ui, -apple-system, sans-serif;

  --max-w:        1160px;
  --pad-x:        clamp(1.25rem, 5vw, 3rem);
  --section-py:   clamp(3.5rem, 7vw, 6rem);

  --shadow-book:  0 10px 40px rgba(26,24,37,.16), 0 2px 8px rgba(26,24,37,.08);
  --shadow-card:  0 2px 16px rgba(26,24,37,.06);
  --trans:        .3s cubic-bezier(.4,0,.2,1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; }

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* === TYPOGRAPHY HELPERS === */
.section-label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: .5rem;
}

/* === DIVIDER === */
.divider {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  margin: 1rem 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.75rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  border: none;
  transition: var(--trans);
  white-space: nowrap;
  line-height: 1;
  gap: .5rem;
}
.btn-lg {
  padding: .9rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,106,82,.35);
  outline: none;
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  outline: none;
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: .5rem 0;
  border-bottom: 1.5px solid var(--accent);
  border-radius: 0;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: var(--trans);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
  outline: none;
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 1;
  transform: none;
}
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
html.js-reveal .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,249,247,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bg-warm-mid);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(26,24,37,.07); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
}
.logo-img { height: 36px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: .02em;
  line-height: 1;
  display: none;
}

.header-logo-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1;
}

.header-logo-center-img {
  height: 42px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  z-index: 2;
}
.nav-main a {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--trans);
  padding-bottom: 2px;
}
.nav-main a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.nav-main a:hover { color: var(--accent); }
.nav-main a:hover::after { transform: scaleX(1); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px 4px;
  cursor: pointer;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--trans);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === HERO === */
.hero {
  padding: clamp(2rem,4vw,3rem) 0 clamp(1.5rem,3vw,2.5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 55%;
  height: 160%;
  background: radial-gradient(ellipse at 60% 40%, #F5EDE8 0%, transparent 68%);
  pointer-events: none;
}

.hero .container { max-width: 1320px; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 1fr);
  gap: clamp(1.5rem,3vw,2.5rem);
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-kicker {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-kicker::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem,5.6vw,5.25rem);
  font-weight: 500;
  font-style: normal;
  color: var(--navy);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin-bottom: .85rem;
  padding-right: .12em;
  overflow: visible;
}
.hero-title span {
  display: block;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem,2.5vw,1.45rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  margin-bottom: .75rem;
  line-height: 1.45;
}

.hero-text {
  font-size: clamp(.9rem,1.5vw,1rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 300;
  max-width: 42ch;
}
.hero-text p + p { margin-top: .35rem; }

.hero-status {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .09em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.hero-status span {
  display: block;
}
.hero-status span + span {
  margin-top: .25rem;
  color: var(--navy);
  letter-spacing: .055em;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero books – larger */
.hero-books {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
  position: relative;
  z-index: 1;
  min-width: 0;
}
.hero-book {
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  border-radius: 4px;
}
.hero-book:first-child { transform: translateY(-1rem); }
.hero-book:nth-child(2) { transform: translateY(.15rem); }
.hero-book:last-child  { transform: translateY(1rem); }
.hero-book:hover { transform: translateY(-.625rem) !important; }
.hero-book img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-book);
}

.hero-books--single-cover {
  grid-template-columns: minmax(180px, 240px);
  justify-content: center;
}


/* === BOOKS === */
.books-section { padding: var(--section-py) 0; }

.books-header { margin-bottom: clamp(1.75rem,4vw,3rem); }
.books-subline {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .35rem;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem,3vw,2rem);
  margin-bottom: clamp(2rem,4vw,3rem);
}

.book-card {
  background: var(--white);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}
.book-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-book);
}

.book-card--text-only {
  align-self: start;
}

/* Status "In Arbeit": dezenter warmer Gelbverlauf für Band 2 und 3 */
.book-card--in-progress {
  position: relative;
  background: linear-gradient(
    145deg,
    #FFFFFF 0%,
    #FFF9E8 58%,
    #F3E2B7 100%
  );
  border-color: rgba(168, 131, 74, .30);
}
.book-card--in-progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #D9B65F 0%,
    #A8834A 100%
  );
  z-index: 2;
  pointer-events: none;
}

.book-cover-wrap {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--bg-warm);
  position: relative;
}
.book-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.book-card:hover .book-cover-wrap img { transform: scale(1.04); }

.book-body {
  padding: clamp(1rem,2.5vw,1.5rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.book-band-label {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .375rem;
}
.book-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem,2vw,1.4rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .25rem;
}
.book-couple {
  font-family: var(--font-display);
  font-size: .9rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: .75rem;
  font-weight: 300;
}
.book-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 300;
  flex: 1;
}
.book-tropes {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-bottom: 1.25rem;
}
.trope-tag {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .07em;
  color: var(--navy-mid);
  background: var(--bg-warm);
  border: 1px solid var(--bg-warm-mid);
  padding: .175rem .5rem;
  border-radius: 2px;
}
.book-actions { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }

/* Band 3 secondary description */
.book-desc-secondary {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .9rem;
  color: var(--navy);
  opacity: .7;
  margin-bottom: 1rem;
  flex: 0;
}

/* Band 3 placeholder cover */
.book-cover-placeholder {
  background: linear-gradient(160deg, #F0E6DD 0%, #E8D8CE 50%, #DFC9BC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.book-cover-placeholder::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201,106,82,.12);
  pointer-events: none;
}
.book-cover-placeholder::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(201,106,82,.18);
  border-radius: 2px;
  pointer-events: none;
}
.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
  padding: 2rem 1.5rem;
}
.placeholder-monogram {
  font-family: var(--font-display);
  font-size: clamp(2.5rem,5vw,3.5rem);
  font-weight: 600;
  color: var(--accent);
  opacity: .45;
  line-height: 1;
  letter-spacing: .04em;
}
.placeholder-divider {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  opacity: .3;
}
.placeholder-series {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .55;
}
.placeholder-band {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  opacity: .5;
  max-width: 20ch;
  line-height: 1.4;
}

/* Status badge */
.status-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: .2rem .6rem;
  border-radius: 2px;
  margin-bottom: .5rem;
  align-self: flex-start;
}

/* === SERIES NEXT / BAND 4 TEASER === */
.series-next {
  margin-top: clamp(1rem, 2.5vw, 1.75rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-warm) 58%, var(--gold-light) 100%);
  border: 1.5px solid rgba(201,106,82,.32);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  box-shadow: 0 8px 30px rgba(26,24,37,.08);
  position: relative;
  overflow: hidden;
}
.series-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
}
.series-next h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: .55rem;
}
.series-next .book-band-label {
  color: var(--accent);
  margin-bottom: .5rem;
}
.series-next p:not(.book-band-label) {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 62ch;
}
.series-next .btn { flex-shrink: 0; }

/* === NEWSLETTER === */
.newsletter-section {
  padding: var(--section-py) 0;
  background: var(--bg-warm);
}
.newsletter-box {
  background: var(--white);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  padding: clamp(2rem,5vw,3.5rem) clamp(1.75rem,4vw,3.5rem);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 4px 24px rgba(26,24,37,.08);
  position: relative;
  overflow: hidden;
}
.newsletter-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
}
.newsletter-kicker {
  justify-content: center;
  margin-bottom: .7rem;
}

.newsletter-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem,3.5vw,2.75rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .75rem;
}
.newsletter-desc {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: .5rem;
}
.newsletter-desc-secondary {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.form-field {
  width: 100%;
  padding: .875rem 1.125rem;
  border: 1.5px solid var(--bg-warm-mid);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--trans), background var(--trans);
  outline: none;
}
.form-field::placeholder { color: #B0A8B8; }
.form-field:focus {
  border-color: var(--accent);
  background: var(--white);
}
.newsletter-form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  justify-content: center;
  white-space: normal;
  word-break: keep-all;
}
.newsletter-placeholder {
  margin: 1.25rem 0 1rem;
  padding: 1.25rem;
  background: var(--bg);
  border: 1.5px solid var(--bg-warm-mid);
  border-radius: 6px;
}
.newsletter-placeholder-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: .35rem;
}
.newsletter-placeholder p:not(.newsletter-placeholder-title) {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.newsletter-placeholder .btn[disabled] {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  opacity: .68;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}
.newsletter-placeholder .btn[disabled]:hover {
  background: var(--accent);
  transform: none;
  box-shadow: none;
}
.newsletter-badge {
  display: inline-block;
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--gold);
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  padding: .25rem .75rem;
  border-radius: 2px;
  margin-bottom: .75rem;
}
.newsletter-legal {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}
.newsletter-legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.form-success {
  display: none;
  padding: 1.5rem;
}
.form-success p {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-style: italic;
  color: var(--navy);
}

/* === HANNOVER SECTION === */
.hannover-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 440px;
  display: flex;
  align-items: center;
}
.hannover-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hannover-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: .48;
  filter: saturate(.95) contrast(1.05);
}
.hannover-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,43,74,.55) 0%,
    rgba(30,43,74,.28) 100%
  );
}
.hannover-content {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem,8vw,6rem) 0;
}
.hannover-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem,4vw,3rem);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hannover-content p {
  font-size: clamp(.9rem,1.5vw,1rem);
  color: rgba(255,255,255,.92);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 58ch;
}
.hannover-callout {
  font-family: var(--font-display);
  font-size: clamp(1.05rem,2vw,1.3rem);
  font-style: italic;
  color: var(--white);
  padding: .875rem 1.25rem;
  border-left: 3px solid var(--accent);
  margin-top: 1.5rem;
  background: rgba(255,255,255,.05);
  max-width: 52ch;
}

.hannover-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem,5vw,5rem);
  align-items: center;
}
.hannover-photo {
  flex-shrink: 0;
  width: clamp(180px,22vw,280px);
  align-self: center;
}
.hannover-photo img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  opacity: .92;
}

@media (max-width: 900px) {
  .hannover-inner { grid-template-columns: 1fr; }
  .hannover-photo { display: none; }
}

/* === ABOUT === */
.about-section {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem,5vw,5rem);
  align-items: center;
}
.about-content .section-label { margin-bottom: .5rem; }
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem,3.5vw,2.5rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.2;
}
.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 58ch;
}
.about-image-wrap { flex-shrink: 0; }
.about-image-inner {
  position: relative;
  display: inline-block;
}
.about-image-inner::before {
  content: "";
  position: absolute;
  top: .75rem;
  left: .75rem;
  right: -.75rem;
  bottom: -.75rem;
  border: 2px solid var(--bg-warm-mid);
  border-radius: 4px;
  z-index: 0;
}
.about-image-inner img {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  width: clamp(150px,18vw,240px);
  box-shadow: var(--shadow-card);
  background: var(--white);
}

/* === FOOTER === */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  padding: clamp(2.5rem,5vw,4rem) 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: .25rem;
}
.footer-tagline {
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
  font-weight: 300;
}
.footer-contact { margin-top: 1rem; }
.footer-contact a {
  font-size: .875rem;
  color: var(--accent-light);
  transition: color var(--trans);
}
.footer-contact a:hover { color: var(--white); }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-end;
}
.footer-nav a {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .75rem;
  color: rgba(255,255,255,.38);
  text-align: center;
}

/* === LEGAL PAGES === */
.legal-header {
  padding: clamp(2.5rem,5vw,4rem) 0 2rem;
  border-bottom: 1px solid var(--bg-warm-mid);
  margin-bottom: 2.5rem;
}
.legal-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem,4vw,3rem);
  font-weight: 400;
  color: var(--navy);
}
.legal-content { padding-bottom: clamp(3rem,6vw,5rem); }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: .6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bg-warm-mid);
}
.legal-content h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content p,
.legal-content address {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: .875rem;
  font-weight: 300;
  max-width: 72ch;
  font-style: normal;
}
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-content ul { margin-bottom: .875rem; }
.legal-content ul li {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: .25rem;
}
.legal-content ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* === RESPONSIVE: TABLET === */
@media (max-width: 1024px) {
 .books-grid { grid-template-columns: 1fr 1fr; }
  .series-next { flex-direction: column; align-items: flex-start; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
}

/* === RESPONSIVE: MOBILE === */
@media (max-width: 768px) {
  body { line-height: 1.75; }

  /* Burger menu – solid, opaque mobile overlay */
  .site-header {
    z-index: 1000;
  }

  .nav-main {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: calc(100dvh - 64px);
    background: var(--bg) !important;
    opacity: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    border-top: 1px solid var(--bg-warm-mid);
    box-shadow: 0 14px 36px rgba(26,24,37,.12);
    overflow-y: auto;
  }
  .nav-main.open { display: flex; }
  .nav-main a {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: none;
  }
  .nav-main a::after { display: none; }
  .nav-toggle { display: flex; }

  .header-logo-center-img {
    height: 38px;
    max-width: 56px;
  }


  /* Hero – text first, books below */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(1.25rem, 3vw, 2rem);
  }
  .hero-content { order: -1; }
  .hero-books {
    display: none;
  }
  .hero-kicker {
    justify-content: center;
    font-size: .82rem;
  }
  .hero-title {
    text-align: center;
    font-size: clamp(2.7rem, 10.5vw, 3.7rem);
    line-height: 1.02;
    padding-inline: .08em;
  }
  .hero-sub {
    text-align: center;
    font-size: 1.3rem;
  }
  .hero-text {
    max-width: none;
    margin-inline: auto;
    font-size: 1.12rem;
    line-height: 1.75;
  }
  .hero-status {
    text-align: center;
    font-size: .88rem;
    letter-spacing: .055em;
    line-height: 1.45;
    margin-bottom: 1.25rem;
  }
  .hero-status span + span {
    margin-top: .2rem;
    letter-spacing: .04em;
  }
  .hero-cta { justify-content: center; }
  .hero-cta .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
  }

  /* Books */
 .books-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto; margin-right: auto;
  }
  .series-next {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.75rem 1.35rem;
    gap: 1.25rem;
  }
  .series-next h3 {
    font-size: 1.7rem;
  }
  .series-next p:not(.book-band-label) {
    font-size: 1.08rem;
    line-height: 1.75;
  }

  /* Book card readability */
  .book-body { padding: 1.25rem 1.25rem 1.5rem; }
  .book-band-label { font-size: .82rem; }
  .book-title { font-size: 1.45rem; line-height: 1.18; }
  .book-couple { font-size: 1.05rem; }
  .book-desc { font-size: 1.08rem; line-height: 1.75; color: var(--text); }
  .book-desc-secondary { font-size: 1.08rem; line-height: 1.7; }
  .trope-tag { font-size: .86rem; padding: .35rem .7rem; }
  .book-tropes { gap: .4rem; margin-bottom: 1.25rem; }
  .book-actions { gap: .75rem; }
  .book-actions .btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    min-height: 44px;
  }
  .book-actions .btn-ghost {
    padding: .75rem 0;
    font-size: 1rem;
  }
  .status-badge { font-size: .72rem; padding: .25rem .7rem; }

  /* Newsletter readability */
  .form-row { grid-template-columns: 1fr; }
  .newsletter-box h2 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .newsletter-desc { font-size: 1.1rem; line-height: 1.75; }
  .newsletter-desc-secondary { font-size: 1.15rem; }
  .newsletter-placeholder {
    padding: 1.25rem 1rem;
  }
  .newsletter-placeholder-title {
    font-size: 1.45rem;
  }
  .newsletter-placeholder p:not(.newsletter-placeholder-title) {
    font-size: 1rem;
    line-height: 1.7;
  }
  .newsletter-badge { font-size: .84rem; padding: .3rem .85rem; }
  .newsletter-legal { font-size: .95rem; line-height: 1.7; }
  .form-field {
    font-size: 1rem;
    padding: 1rem 1.125rem;
  }
  .newsletter-form .btn {
    padding: 1.1rem;
    font-size: 1.05rem;
  }

  /* About section */
  .about-content p { font-size: 1.1rem; line-height: 1.8; }

  /* Section labels */
  .section-label { font-size: .78rem; }

  /* Footer readability */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { align-items: flex-start; flex-direction: row; gap: 1.5rem; }
  .footer-brand-name { font-size: 1.35rem; }
  .footer-tagline { font-size: .95rem; }
  .footer-contact { margin-top: 1.25rem; }
  .footer-contact a {
    font-size: 1rem;
    display: inline-block;
    padding: .4rem 0;
  }
  .footer-nav a {
    font-size: .95rem;
    display: inline-block;
    padding: .4rem 0;
  }
  .footer-bottom { font-size: .85rem; }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.55rem, 10.2vw, 3.35rem);
    line-height: 1.03;
    letter-spacing: -0.02em;
    padding-inline: 0.04em;
  }

  .hero-sub {
    font-size: 1.12rem;
  }

  .hero-status {
    font-size: .82rem;
    letter-spacing: .04em;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: .75rem;
  }

  .hero-cta .btn {
    width: auto;
    min-width: 220px;
    max-width: 260px;
    justify-content: center;
  }

  .newsletter-placeholder .btn[disabled] {
    font-size: .95rem;
    letter-spacing: .045em;
    padding-inline: .85rem;
  }

  .book-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .series-next .btn {
    width: 100%;
    justify-content: center;
  }

  .book-actions .btn {
    width: 100%;
    max-width: 260px;
    align-self: center;
    justify-content: center;
  }

  .book-actions .btn-ghost {
    width: auto;
    align-self: center;
  }
}

/* === PRINT === */
@media print {
  .site-header, .nav-toggle, .hero-books, .newsletter-section { display: none; }
}


/* === TESTLESE PAGE === */
.test-hero {
  padding: clamp(2.5rem, 5vw, 4.25rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(240,196,182,.42) 0%, transparent 48%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.test-hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -45% auto;
  width: 48rem;
  height: 48rem;
  background: radial-gradient(circle, rgba(168,131,74,.18) 0%, transparent 65%);
  pointer-events: none;
}
.test-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.test-hero-copy,
.test-hero-card {
  position: relative;
  z-index: 1;
}
.test-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 1.25rem 0 1.5rem;
}
.test-hero-card {
  background: var(--white);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-book);
}
.test-hero-image {
  aspect-ratio: 4/3;
  background: var(--bg-warm);
  overflow: hidden;
}
.test-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.test-brief-card {
  padding: clamp(1.35rem, 3vw, 1.9rem);
}
.test-brief-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.test-facts {
  display: grid;
  gap: .85rem;
}
.test-facts div {
  display: grid;
  gap: .15rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--bg-warm-mid);
}
.test-facts div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.test-facts dt {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.test-facts dd {
  font-size: .94rem;
  color: var(--text);
  font-weight: 300;
}

.test-intro-section,
.test-fit-section,
.test-process-section,
.test-focus-section,
.application-section,
.test-legal-note {
  padding: var(--section-py) 0;
}
.test-intro-section,
.test-process-section,
.application-section {
  background: var(--white);
}
.test-fit-section,
.test-focus-section,
.test-legal-note {
  background: var(--bg);
}
.test-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}
.test-intro-card,
.test-panel,
.process-step,
.focus-box,
.application-inner,
.privacy-card {
  background: var(--white);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}
.test-intro-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.test-intro-card p:not(.section-label):not(.book-band-label) {
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}
.test-intro-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.test-intro-card-accent {
  background: linear-gradient(145deg, var(--navy) 0%, #29395F 100%);
  color: var(--white);
  border-color: rgba(255,255,255,.08);
}
.test-intro-card-accent h3,
.test-intro-card-accent p {
  color: var(--white) !important;
}
.test-intro-card-accent .book-band-label {
  color: var(--accent-light);
}

.section-header {
  max-width: 760px;
  margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}
.test-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2rem);
}
.test-panel {
  padding: clamp(1.5rem, 3vw, 2rem);
}
.test-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 1rem;
}
.check-list,
.cross-list {
  display: grid;
  gap: .75rem;
}
.check-list li,
.cross-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}
.check-list li::before,
.cross-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.check-list li::before { content: "✓"; }
.cross-list li::before { content: "—"; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.875rem, 2vw, 1.25rem);
}
.process-step {
  padding: clamp(1.25rem, 3vw, 1.6rem);
  position: relative;
  overflow: hidden;
}
.process-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.process-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--accent-light);
  margin-bottom: .8rem;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: .45rem;
}
.process-step p {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.75;
  font-weight: 300;
}

.focus-box {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
.focus-grid div {
  background: var(--bg-warm);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 6px;
  padding: 1rem;
}
.focus-grid strong {
  display: block;
  color: var(--navy);
  margin-bottom: .25rem;
}
.focus-grid span {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
  font-weight: 300;
}

.application-inner {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.application-copy p:not(.section-label) {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: .8rem;
}
.application-note {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  color: var(--text) !important;
}
.tally-placeholder {
  background: var(--bg-warm);
  border: 1px dashed var(--accent);
  border-radius: 8px;
  padding: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}
.tally-placeholder p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1rem;
}
.tally-placeholder code {
  display: block;
  background: var(--white);
  border: 1px solid var(--bg-warm-mid);
  color: var(--navy);
  padding: .85rem;
  border-radius: 4px;
  font-size: .85rem;
  overflow-wrap: anywhere;
  margin-bottom: 1rem;
}
.privacy-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 820px;
  margin: 0 auto;
}
.privacy-card h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: .75rem;
}
.privacy-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: .8rem;
}
.series-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .test-hero-inner,
  .test-intro-grid,
  .focus-box,
  .application-inner {
    grid-template-columns: 1fr;
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .test-hero-card {
    max-width: 640px;
  }
}

@media (max-width: 768px) {
  .test-hero-inner {
    text-align: center;
  }
  .test-hero-tags {
    justify-content: center;
  }
  .test-columns,
  .process-timeline,
  .focus-grid {
    grid-template-columns: 1fr;
  }
  .test-panel,
  .process-step,
  .privacy-card {
    text-align: left;
  }
  .application-inner {
    text-align: center;
  }
  .application-note {
    text-align: left;
  }
  .series-next-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .series-next-actions .btn {
    justify-content: center;
    width: 100%;
  }
}

@media print {
  .test-hero-card,
  .application-section { display: none; }
}


/* Testlese Band 1 – Abrufseite */
.test-hero-band1 {
  position: relative;
  overflow: hidden;
}
.test-hero-band1::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(201, 106, 82, .18), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(17, 45, 78, .10), transparent 34%);
  pointer-events: none;
}
.test-hero-inner-cover {
  align-items: center;
}
.test-cover-card {
  background: rgba(255, 252, 247, .78);
  backdrop-filter: blur(12px);
}
.test-cover-frame {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
}
.test-cover-frame img {
  width: min(100%, 430px);
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 28px rgba(17, 45, 78, .20));
}
.test-intro-card-image {
  padding: 0;
  overflow: hidden;
  min-height: 340px;
}
.test-intro-card-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}
.test-intro-card-soft img {
  filter: saturate(.95) contrast(.95);
}
.faq-list h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 1.2rem 0 .25rem;
}
.faq-list h3:first-child {
  margin-top: 0;
}
.faq-list p {
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

@media (max-width: 768px) {
  .test-cover-frame img {
    max-width: 320px;
  }
  .test-intro-card-image,
  .test-intro-card-image img {
    min-height: 260px;
  }
}


/* === V0.4 MOBILE TUNING + ICONS === */
.card-icon{
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(193,109,75,.10);
  color: var(--accent);
  margin: .5rem 0 .9rem;
  box-shadow: inset 0 0 0 1px rgba(193,109,75,.16);
}
.card-icon svg{
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}
.card-icon.small{
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
}
.focus-item{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: start;
}
.focus-copy{
  display: flex;
  flex-direction: column;
  gap: .28rem;
}
.process-step{
  position: relative;
}
.process-step .card-icon{
  margin-top: .85rem;
}
.book-cover-wrap img{
  object-fit: contain;
}
.hero-book img{
  object-fit: contain;
}
.book-body .status-badge{
  display: inline-flex;
}
.test-cover-card,
.test-intro-card,
.test-panel,
.process-step,
.focus-box,
.application-inner,
.privacy-card{
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 820px){
  .test-hero-inner-cover,
  .test-intro-grid,
  .test-columns,
  .application-inner{
    max-width: 35rem;
    margin-inline: auto;
  }
  .test-hero .container,
  .test-intro-section .container,
  .test-fit-section .container,
  .test-process-section .container,
  .test-focus-section .container,
  .application-section .container,
  .test-legal-note .container{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .test-hero-copy,
  .test-hero-card,
  .test-intro-card,
  .test-panel,
  .focus-box,
  .application-inner,
  .privacy-card{
    max-width: 35rem;
    margin-inline: auto;
  }
  .test-hero-card{
    padding-left: clamp(1rem, 4vw, 1.4rem);
    padding-right: clamp(1rem, 4vw, 1.4rem);
  }
  .test-brief-card{
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 640px){
  .test-hero{
    padding-top: 1.5rem;
  }
  .test-hero-inner-cover,
  .test-intro-grid,
  .test-columns,
  .process-timeline,
  .application-inner{
    gap: 1rem;
  }
  .test-cover-card,
  .test-intro-card,
  .test-panel,
  .process-step,
  .focus-box,
  .application-inner,
  .privacy-card{
    max-width: 32rem;
    margin-inline: auto;
  }
  .test-cover-frame img{
    max-width: 270px;
  }
  .focus-grid{
    gap: .9rem;
  }
  .focus-item{
    gap: .7rem;
  }
  .book-card .status-badge{
    margin-top: .25rem;
    margin-bottom: .85rem;
  }
  .hero-books{
    gap: .6rem;
  }
}


/* === V0.5 ABRUFSEITE – KOMPAKT === */
.abruf-container{
  max-width: 980px;
}
.abruf-hero{
  padding: clamp(1.75rem, 4vw, 3.25rem) 0 clamp(2rem, 5vw, 3.75rem);
}
.abruf-hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, .72fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}
.abruf-hero-copy,
.abruf-cover-card{
  position: relative;
  z-index: 1;
}
.abruf-hero .hero-title{
  font-size: clamp(2.35rem, 4.8vw, 4.55rem);
  margin-bottom: .65rem;
}
.abruf-hero .hero-sub{
  max-width: 30rem;
}
.abruf-lead{
  max-width: 34rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin: .85rem 0 0;
}
.abruf-cover-card{
  background: rgba(255,252,247,.84);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: clamp(.9rem, 2vw, 1.25rem);
  text-align: center;
}
.abruf-cover-card img{
  width: min(100%, 310px);
  margin: 0 auto;
  filter: drop-shadow(0 18px 26px rgba(17,45,78,.18));
}
.abruf-facts{
  margin-top: .9rem;
  font-size: .78rem;
  line-height: 1.55;
  color: var(--text-muted);
  letter-spacing: .04em;
}
.abruf-application{
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: var(--white);
}
.abruf-form-card{
  padding: clamp(1.3rem, 3vw, 2rem);
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
}
.abruf-section{
  padding: clamp(2.2rem, 5vw, 4.25rem) 0;
}
.abruf-text-card{
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  padding: clamp(1.35rem, 3vw, 2rem);
}
.abruf-text-card p:not(.section-label){
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: .75rem;
}
.abruf-two-columns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
}
.abruf-steps{
  display: grid;
  gap: .75rem;
}
.abruf-step{
  background: var(--white);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  padding: .95rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: start;
}
.abruf-step strong{
  display: block;
  color: var(--navy);
  margin-bottom: .15rem;
  font-weight: 600;
}
.abruf-step span{
  display: block;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.6;
  font-weight: 300;
}
.abruf-focus-box{
  grid-template-columns: minmax(220px,.78fr) minmax(0,1.2fr);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.abruf-focus .focus-grid{
  grid-template-columns: repeat(2,1fr);
}
.faq-list.compact h3{
  margin-top: 1rem;
}
.faq-list.compact p{
  margin-bottom: .6rem;
}
.abruf-legal{
  padding-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 820px){
  .abruf-container{
    max-width: 34rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .abruf-hero-grid,
  .abruf-form-card,
  .abruf-two-columns,
  .abruf-focus-box{
    grid-template-columns: 1fr;
  }
  .abruf-hero{
    padding-top: 1.4rem;
  }
  .abruf-hero-copy{
    text-align: center;
  }
  .abruf-hero .hero-sub,
  .abruf-lead{
    margin-left: auto;
    margin-right: auto;
  }
  .abruf-hero .hero-cta{
    justify-content: center;
  }
  .abruf-cover-card{
    max-width: 22rem;
    margin: 0 auto;
  }
  .abruf-cover-card img{
    max-width: 235px;
  }
  .abruf-application{
    padding-top: 1.65rem;
  }
  .abruf-section{
    padding: 2rem 0;
  }
  .abruf-text-card,
  .test-panel,
  .focus-box,
  .privacy-card,
  .application-inner{
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 560px){
  .abruf-hero .hero-title{
    font-size: clamp(2.05rem, 13vw, 3rem);
  }
  .abruf-hero .hero-sub{
    font-size: 1.05rem;
  }
  .abruf-lead{
    font-size: .95rem;
  }
  .abruf-cover-card img{
    max-width: 210px;
  }
  .abruf-form-card{
    padding: 1.1rem;
  }
  .abruf-focus .focus-grid{
    grid-template-columns: 1fr;
  }
  .abruf-step,
  .focus-item{
    gap: .7rem;
  }
}


/* === V0.5.1 MOBILE WIDTH + HERO TYPO FIX === */
.abruf-hero-copy{
  max-width: 34rem;
}
.abruf-form-card{
  max-width: 58rem;
  margin-left: auto;
  margin-right: auto;
}
.abruf-focus .focus-grid .card-icon,
.abruf-focus .focus-item .card-icon{
  display: inline-flex !important;
  flex: 0 0 auto;
  color: var(--accent);
  background: rgba(193,109,75,.10);
  box-shadow: inset 0 0 0 1px rgba(193,109,75,.16);
}
.abruf-focus .focus-item svg{
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}
.abruf-focus .focus-item{
  align-items: start;
}
@media (max-width: 820px){
  .abruf-hero-copy{
    max-width: 29rem;
    margin-left: auto;
    margin-right: auto;
  }
  .abruf-form-card{
    max-width: 29rem;
    margin-left: auto;
    margin-right: auto;
  }
  .abruf-cover-card{
    max-width: 19.5rem;
  }
}
@media (max-width: 560px){
  .abruf-container{
    max-width: 30rem;
    padding-left: .9rem;
    padding-right: .9rem;
  }
  .abruf-hero-copy{
    max-width: 27.5rem;
  }
  .abruf-form-card{
    max-width: 27.5rem;
    padding: 1rem;
  }
  .abruf-hero .hero-title{
    font-size: clamp(1.8rem, 10vw, 2.45rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
  }
  .abruf-hero .hero-title span:first-child{
    letter-spacing: 0;
  }
  .abruf-hero .hero-sub{
    max-width: 24rem;
    font-size: .98rem;
  }
  .abruf-lead{
    max-width: 24rem;
    font-size: .92rem;
    line-height: 1.68;
  }
  .hero-kicker{
    font-size: .7rem;
    letter-spacing: .22em;
  }
  .test-hero-tags{
    justify-content: center;
    gap: .4rem;
  }
  .test-hero-tags .trope-tag{
    font-size: .68rem;
    padding: .42rem .56rem;
  }
  .hero-cta .btn{
    width: 100%;
    max-width: 19.5rem;
  }
  .abruf-cover-card{
    max-width: 18rem;
    padding: .85rem;
  }
  .abruf-cover-card img{
    max-width: 185px;
  }
  .abruf-facts{
    font-size: .72rem;
  }
  .application-copy,
  .tally-placeholder{
    max-width: 24.75rem;
    margin-left: auto;
    margin-right: auto;
  }
  .section-heading{
    overflow-wrap: anywhere;
  }
}


/* === V0.5.2 ROBUST SYMBOL ICONS + LOCKERER TEXT === */
.focus-symbol{
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.25rem;
  background: rgba(201,106,82,.12);
  color: var(--accent);
  border: 1px solid rgba(201,106,82,.22);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
}
.process-symbol{
  color: var(--navy);
  background: rgba(168,131,74,.12);
  border-color: rgba(168,131,74,.26);
}
.abruf-focus .card-icon,
.abruf-focus .card-icon svg,
.abruf-process .card-icon,
.abruf-process .card-icon svg{
  display: none !important;
}
.abruf-focus .focus-item,
.abruf-step{
  grid-template-columns: 2.25rem 1fr;
  align-items: start;
}
.abruf-focus .focus-item{
  padding: 1rem;
}
.abruf-focus .focus-copy{
  padding-top: .08rem;
}
.abruf-focus .focus-copy strong,
.abruf-step strong{
  font-weight: 650;
}
.abruf-lead,
.abruf-text-card p:not(.section-label),
.application-copy p:not(.section-label),
.test-panel p,
.privacy-card p{
  line-height: 1.78;
}
.abruf-text-card p:not(.section-label) + p,
.test-panel p + p,
.application-copy p:not(.section-label) + p{
  margin-top: .35rem;
}
@media (max-width: 560px){
  .focus-symbol{
    width: 2rem;
    height: 2rem;
    flex-basis: 2rem;
    font-size: .98rem;
  }
  .abruf-focus .focus-item,
  .abruf-step{
    grid-template-columns: 2rem 1fr;
  }
  .abruf-focus .focus-item{
    padding: .95rem;
  }
}


/* === V0.5.3 NINO + RAFI PORTRAITS === */
.character-portrait-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1.35rem;
}
.character-portrait-card{
  background: var(--white);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.character-portrait-card img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.character-portrait-card figcaption{
  padding: .85rem .95rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.character-portrait-card strong{
  color: var(--navy);
  font-size: 1rem;
  font-weight: 650;
}
.character-portrait-card span{
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.55;
  font-weight: 300;
}
@media (max-width: 560px){
  .character-portrait-grid{
    gap: .85rem;
  }
  .character-portrait-card figcaption{
    padding: .75rem .8rem .9rem;
  }
  .character-portrait-card strong{
    font-size: .96rem;
  }
  .character-portrait-card span{
    font-size: .84rem;
  }
}



/* === v0.5.13: Statuskarten verfeinert === */
.book-card--available,
.book-card--in-progress {
  position: relative;
}

/* Grüner Produktstatus: subtile Tönung + Farbstreifen */
.book-card--available {
  background: linear-gradient(
    180deg,
    #F7FCF7 0%,
    #EEF8EE 18%,
    #FFFFFF 72%
  );
  border-color: rgba(98, 142, 92, .22);
}
.book-card--available::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #8EB17A 0%,
    #5F8D62 100%
  );
  z-index: 2;
}

/* In Arbeit: abgeschwächter, früher auslaufender Gelbverlauf */
.book-card--in-progress {
  background: linear-gradient(
    180deg,
    #FFFDF7 0%,
    #FFF9ED 18%,
    #FFFFFF 72%
  );
  border-color: rgba(168, 131, 74, .22);
}
.book-card--in-progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #D0AE61 0%,
    #A8834A 100%
  );
  z-index: 2;
}

/* ruhigeres Newsletter-Placeholder-Modul */
.newsletter-placeholder {
  margin: 1rem 0 0;
  padding: 1rem 1rem 1.1rem;
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(216, 198, 166, .8);
  border-radius: 6px;
  box-shadow: none;
}
.newsletter-placeholder p {
  margin-bottom: .85rem;
}
.newsletter-placeholder .btn[disabled] {
  background: var(--bg-warm);
  border: 1px solid var(--bg-warm-mid);
  color: var(--text-muted);
  opacity: 1;
  cursor: not-allowed;
  box-shadow: none;
}
.newsletter-placeholder .btn[disabled]:hover {
  background: var(--bg-warm);
  color: var(--text-muted);
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .books-grid {
    gap: 1.25rem;
  }
}


/* === v0.5.14: Statussystem finalisiert === */

/* Band 1: Grün etwas deutlicher, ohne Signalwirkung */
.book-card--available {
  background: linear-gradient(
    180deg,
    #F3FAF2 0%,
    #E8F4E6 24%,
    #FFFFFF 72%
  );
  border-color: rgba(82, 126, 82, .28);
}
.book-card--available::before {
  background: linear-gradient(
    90deg,
    #7FA66F 0%,
    #4F7E56 100%
  );
}

/* Status-Badges: Farbe folgt dem Produktionsstatus */
.status-badge--available {
  color: #4F7E56;
  border-color: #6F986B;
  background: rgba(232, 244, 230, .72);
}

.status-badge--in-progress {
  color: #8A6A31;
  border-color: #B99752;
  background: rgba(255, 248, 231, .78);
}

.status-badge--planned {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(201, 106, 82, .08);
}

/* Band-4/5-Label als kompakter Statushinweis */
.series-next .status-badge {
  display: inline-flex;
  width: auto;
  margin-bottom: .75rem;
}

/* Newsletter: statischer Status statt deaktiviertem Button */
.newsletter-placeholder {
  display: grid;
  gap: .75rem;
}

.newsletter-placeholder p {
  margin-bottom: 0;
}

.newsletter-status-note {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
  min-height: 2.75rem;
  padding: .7rem 1rem;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 4px;
  background: var(--bg-warm);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 768px) {
  .newsletter-status-note {
    width: 100%;
    font-size: .95rem;
  }
}


/* === v0.5.15: Buchkarten-Anordnung Desktop / Tablet quer === */
@media (min-width: 769px) {
  .books-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    grid-template-rows: auto auto;
    gap: clamp(1rem, 2.4vw, 1.75rem);
    align-items: start;
  }

  .books-grid > .book-card:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: stretch;
  }

  .books-grid > .book-card:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .books-grid > .book-card:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .books-grid > .book-card:nth-of-type(1) .book-body {
    flex: 1;
  }

  .series-next {
    width: 100%;
  }
}

/* Mobil bleibt die natürliche Reihenfolge erhalten */
@media (max-width: 768px) {
  .books-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .books-grid > .book-card:nth-of-type(1),
  .books-grid > .book-card:nth-of-type(2),
  .books-grid > .book-card:nth-of-type(3) {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
  }
}


/* ================================================================
   v0.6.0 LAUNCH PREP – BAND 1
   ================================================================ */

.btn.is-disabled,
.btn[aria-disabled="true"] {
  background: var(--bg-warm-mid);
  border-color: var(--bg-warm-mid);
  color: var(--text-muted);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

.launch-title span:last-child { color: var(--accent); }

.launch-book-section,
.promise-section,
.book-sales-section,
.sample-teaser-section,
.series-link-section {
  padding: var(--section-py) 0;
}

.launch-book-section {
  background: var(--white);
}

.launch-book-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.launch-cover-card {
  position: relative;
  max-width: 430px;
  justify-self: center;
  background: linear-gradient(180deg, #F3FAF2 0%, #E8F4E6 24%, #FFFFFF 72%);
  border: 1px solid rgba(82,126,82,.28);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-book);
}

.launch-cover-card::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #7FA66F, #4F7E56);
}

.launch-cover-card figcaption {
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.launch-book-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: .75rem;
}

.launch-hook,
.book-detail-hook {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  font-style: italic;
  color: var(--accent);
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.launch-book-copy > p:not(.launch-hook):not(.launch-meta):not(.amazon-pending-note) {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.launch-fit {
  margin: 1.5rem 0;
  padding: 1.25rem 1.4rem;
  background: var(--bg-warm);
  border-left: 4px solid var(--gold);
}

.launch-fit .fit-label,
.book-sales-card .fit-label {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: .65rem;
}

.launch-fit ul,
.launch-checklist {
  display: grid;
  gap: .55rem;
}

.launch-fit li,
.launch-checklist li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text);
  line-height: 1.55;
}

.launch-fit li::before,
.launch-checklist li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.launch-meta {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
  margin: 1rem 0 1.25rem;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
}

.amazon-pending-note {
  margin-top: .8rem;
  color: var(--text-muted);
  font-size: .85rem;
  line-height: 1.5;
}

.promise-section {
  background: var(--bg-warm);
}

.section-header {
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.promise-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promise-card {
  background: var(--white);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 6px;
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
}

.promise-card > span {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: .7rem;
}

.promise-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: .45rem;
}

.promise-card p {
  color: var(--text-muted);
  line-height: 1.65;
}

.future-books-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
}

.series-next--quiet {
  background: linear-gradient(135deg, var(--white), #FAF3EF);
  box-shadow: var(--shadow-card);
}

.series-next--quiet .btn-primary { display: none; }

.newsletter-section--quiet {
  background: var(--bg);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.newsletter-box--quiet {
  max-width: 720px;
  box-shadow: none;
}

.newsletter-box--quiet::before {
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

/* Band-1-Detailseite */
.book-detail-hero {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(240,196,182,.35), transparent 45%),
    linear-gradient(180deg, var(--bg), var(--bg-warm));
}

.book-detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.book-detail-cover {
  max-width: 420px;
  justify-self: center;
  box-shadow: var(--shadow-book);
}

.book-detail-copy h1,
.sample-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: .98;
  color: var(--navy);
  font-weight: 500;
  margin: .85rem 0 1rem;
}

.book-detail-lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 65ch;
}

.book-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 1.35rem 0 1.5rem;
}

.book-sales-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.book-sales-copy p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1rem;
}

.book-sales-card {
  background: var(--white);
  border: 1px solid var(--bg-warm-mid);
  border-top: 4px solid var(--gold);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.sample-teaser-section {
  background: var(--white);
}

.sample-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background: linear-gradient(135deg, var(--bg-warm), var(--white));
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
}

.sample-teaser p:not(.section-label) {
  max-width: 58ch;
  color: var(--text-muted);
}

/* Leseprobe */
.sample-hero {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201,106,82,.16), transparent 34%),
    linear-gradient(180deg, var(--bg), var(--bg-warm));
}

.sample-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, .55fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.sample-hero-cover {
  max-width: 300px;
  justify-self: center;
  box-shadow: var(--shadow-book);
}

.sample-hero-copy > p:not(.hero-kicker):not(.book-detail-hook) {
  max-width: 62ch;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.75;
}

.sample-toc {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.2rem 0;
}

.sample-toc a {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: .4rem .75rem;
  border-radius: 3px;
  font-size: .85rem;
}

.sample-reading-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.sample-container {
  max-width: 860px;
}

.sample-chapter {
  scroll-margin-top: 90px;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--bg-warm-mid);
}

.sample-chapter:first-child { padding-top: 0; }

.sample-chapter-label {
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.sample-chapter h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.sample-prose {
  max-width: 720px;
  margin: 0 auto;
}

.sample-prose p,
.sample-prose blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.04rem, 1.4vw, 1.16rem);
  line-height: 1.85;
  color: #25212D;
  margin-bottom: 1.15rem;
}

.sample-prose blockquote {
  padding-left: 1.25rem;
  border-left: 3px solid var(--accent-light);
  font-style: italic;
}

.sample-end-card {
  margin-top: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-warm);
  border: 1px solid var(--bg-warm-mid);
  border-top: 4px solid var(--accent);
  text-align: center;
}

.sample-end-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: .8rem;
}

.sample-end-card p {
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0 auto 1.25rem;
}

.sample-end-card .launch-actions {
  justify-content: center;
}

@media (max-width: 1024px) {
  .promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promise-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .launch-book-grid,
  .book-detail-grid,
  .book-sales-grid,
  .sample-hero-grid {
    grid-template-columns: 1fr;
  }

  .launch-cover-card,
  .book-detail-cover,
  .sample-hero-cover {
    max-width: 320px;
  }

  .launch-book-copy,
  .book-detail-copy,
  .sample-hero-copy {
    text-align: left;
  }

  .launch-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .launch-actions .btn {
    width: 100%;
  }

  .promise-grid,
  .promise-grid--three,
  .future-books-grid {
    grid-template-columns: 1fr;
  }

  .sample-teaser {
    flex-direction: column;
    align-items: flex-start;
  }

  .sample-teaser .btn {
    width: 100%;
  }

  .sample-prose p,
  .sample-prose blockquote {
    font-size: 1.05rem;
    line-height: 1.78;
  }
}

@media (max-width: 480px) {
  .book-detail-copy h1,
  .sample-hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .launch-book-copy h3 {
    font-size: 2.35rem;
  }
}


/* === v0.6.1: Mobile Lesbarkeit der Hero-Subline === */
@media (max-width: 768px) {
  .launch-hero .hero-sub {
    font-size: 1.68rem;
    line-height: 1.35;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
  }
}


/* === v0.6.2: Mobile Lesbarkeit der zweiten Sales-Subline === */
@media (max-width: 768px) {
  .launch-book-copy .launch-hook {
    font-size: 1.65rem;
    line-height: 1.35;
    max-width: 25ch;
  }
}


/* === v0.6.3: Mobile Subline auf Buchdetail- und Leseprobenseite === */
@media (max-width: 768px) {
  .book-detail-copy .book-detail-hook,
  .sample-hero-copy .book-detail-hook {
    font-size: 1.62rem;
    line-height: 1.35;
    max-width: 24ch;
  }
}


/* === v0.6.4: Launch-Fakten === */
.product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin: 1.25rem 0 1.5rem;
}
.product-facts > div {
  padding: .85rem 1rem;
  background: var(--bg-warm);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 4px;
}
.product-facts span,
.product-facts strong { display: block; }
.product-facts span {
  color: var(--text-muted);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.product-facts strong {
  color: var(--navy);
  font-size: .95rem;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .product-facts { grid-template-columns: 1fr; }
}


/* ================================================================
   v0.6.5 VISUAL STORYTELLING + ICON SYSTEM
   ================================================================ */

.ui-icon,
.status-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.status-icon {
  width: .95rem;
  height: .95rem;
}

/* Semantische Feature-Icons */
.icon-feature-list {
  display: grid;
  gap: .65rem;
}

.icon-feature-list li {
  display: grid;
  grid-template-columns: 1.45rem minmax(0, 1fr);
  align-items: start;
  gap: .65rem;
  padding-left: 0;
}

.icon-feature-list li::before {
  display: none;
}

.feature-icon {
  color: var(--accent);
  margin-top: .14rem;
}

.feature-icon .ui-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Produktdaten mit Icons */
.product-facts > div {
  display: grid;
  grid-template-columns: 1.55rem minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
}

.fact-icon {
  color: var(--accent);
  padding-top: .12rem;
}

.fact-copy {
  min-width: 0;
}

.fact-copy > span,
.fact-copy > strong {
  display: block;
}

/* Promise Cards */
.promise-icon {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--bg-warm);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 50%;
  margin-bottom: .85rem;
}

.promise-icon .ui-icon {
  width: 1.15rem;
  height: 1.15rem;
}

/* Startseite: emotionales Mid-Page-Visual */
.story-visual-section {
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
  background: var(--bg);
}

.story-visual-card {
  position: relative;
  min-height: clamp(420px, 56vw, 690px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-book);
  background: var(--navy);
}

.story-visual-card picture,
.story-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-visual-card img {
  object-fit: cover;
  object-position: center;
}

.story-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,25,46,.18) 0%, rgba(17,25,46,.08) 36%, rgba(17,25,46,.78) 100%);
}

.story-visual-copy {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 5vw, 4.5rem);
  bottom: clamp(1.25rem, 5vw, 4rem);
  width: min(42%, 540px);
  color: var(--white);
  text-align: left;
}

.story-visual-copy .section-label {
  color: #F4C9B9;
}

.story-visual-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 1rem;
}

.story-visual-copy p:not(.section-label) {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.2rem;
}

.btn-light {
  background: rgba(255,255,255,.95);
  color: var(--navy);
  border-color: rgba(255,255,255,.95);
}

.btn-light:hover {
  background: var(--white);
  border-color: var(--white);
}

/* Hannover/Café */
.hannover-photo--cafe {
  overflow: hidden;
}

.hannover-photo--cafe picture,
.hannover-photo--cafe img {
  display: block;
  width: 100%;
  height: 100%;
}

.hannover-photo--cafe img {
  object-fit: cover;
}

.hannover-photo--cafe figcaption {
  padding: .7rem .85rem;
  background: rgba(16,24,45,.88);
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  line-height: 1.45;
  letter-spacing: .04em;
}

/* Autor / Behind the Scenes */
.about-workspace-visual {
  display: block;
}

.about-workspace-visual .about-image-inner {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-workspace-visual picture,
.about-workspace-visual img {
  display: block;
  width: 100%;
}

.about-workspace-visual img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.about-workspace-visual figcaption {
  display: grid;
  gap: .25rem;
  padding-top: .8rem;
  color: var(--text-muted);
  font-size: .78rem;
  line-height: 1.45;
}

.about-workspace-visual figcaption strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* Band-1-Seite: Figurenvisualisierung */
.characters-section {
  padding: var(--section-py) 0;
  background: var(--bg-warm);
}

.section-intro {
  max-width: 68ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.relationship-visual {
  position: relative;
  margin: clamp(1.75rem, 4vw, 3rem) 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-book);
  background: var(--navy);
}

.relationship-visual picture,
.relationship-visual img {
  display: block;
  width: 100%;
}

.relationship-visual img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.relationship-visual figcaption {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 2.5rem);
  max-width: 520px;
  padding: 1rem 1.2rem;
  background: rgba(17,25,46,.86);
  color: var(--white);
  border-left: 4px solid var(--accent-light);
  backdrop-filter: blur(4px);
}

.relationship-visual figcaption span {
  display: block;
  color: #F4C9B9;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}

.relationship-visual figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.25;
  font-weight: 500;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.character-card {
  display: grid;
  grid-template-columns: minmax(180px, .78fr) minmax(0, 1.22fr);
  background: var(--white);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.character-portrait {
  min-height: 100%;
  background: var(--navy);
}

.character-portrait picture,
.character-portrait img {
  display: block;
  width: 100%;
  height: 100%;
}

.character-portrait img {
  object-fit: cover;
  object-position: center top;
}

.character-copy {
  padding: clamp(1rem, 2.5vw, 1.5rem);
}

.character-role {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.character-copy h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.12;
  margin-bottom: .7rem;
}

.character-copy > p:not(.character-role) {
  color: var(--text-muted);
  line-height: 1.65;
}

.character-traits {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1rem;
}

.character-traits li {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .55rem;
  background: var(--bg-warm);
  color: var(--navy);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
}

.character-traits .ui-icon {
  width: .9rem;
  height: .9rem;
  color: var(--accent);
}

/* Leseprobenabschluss mit Bild */
.sample-end-card--visual {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.sample-end-image {
  min-height: 100%;
  background: var(--navy);
}

.sample-end-image picture,
.sample-end-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.sample-end-image img {
  object-fit: cover;
  object-position: center;
}

.sample-end-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  align-self: center;
}

.sample-end-card--visual .sample-end-copy > p {
  margin-left: 0;
  margin-right: 0;
}

.sample-end-card--visual .launch-actions {
  justify-content: flex-start;
}

/* Mobile */
@media (max-width: 900px) {
  .character-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .story-visual-card {
    min-height: 0;
    background: var(--white);
  }

  .story-visual-card picture,
  .story-visual-card img {
    position: static;
  }

  .story-visual-card img {
    aspect-ratio: 4 / 3;
    object-position: 62% center;
  }

  .story-visual-card::after {
    display: none;
  }

  .story-visual-copy {
    position: static;
    width: auto;
    color: var(--navy);
    padding: 1.35rem;
    background: var(--white);
  }

  .story-visual-copy .section-label {
    color: var(--accent);
  }

  .story-visual-copy h2 {
    font-size: 2.15rem;
  }

  .story-visual-copy p:not(.section-label) {
    color: var(--text-muted);
  }

  .story-visual-copy .btn-light {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    width: 100%;
  }

  .relationship-visual figcaption {
    position: static;
    max-width: none;
    backdrop-filter: none;
  }

  .character-card {
    grid-template-columns: minmax(125px, .72fr) minmax(0, 1.28fr);
  }

  .sample-end-card--visual {
    grid-template-columns: 1fr;
  }

  .sample-end-image img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 540px) {
  .character-card {
    grid-template-columns: 1fr;
  }

  .character-portrait img {
    aspect-ratio: 4 / 5;
    object-position: center 20%;
  }

  .product-facts > div {
    grid-template-columns: 1.45rem minmax(0, 1fr);
  }
}


/* ================================================================
   v0.6.6 QA PATCH
   ================================================================ */

:root {
  --accent-text: #A94B37;
  --gold-text: #806231;
}

/* Kleine Akzenttexte mit höherem Kontrast */
.section-label,
.hero-kicker,
.character-role,
.sample-chapter-label,
.relationship-visual figcaption span {
  color: var(--accent-text);
}

.launch-meta,
.hero-status span:first-child,
.fact-icon,
.feature-icon,
.character-traits .ui-icon,
.promise-icon {
  color: var(--gold-text);
}

/* Autorenbereich Desktop ausbalancieren */
@media (min-width: 901px) {
  .about-inner {
    grid-template-columns: minmax(360px, .92fr) minmax(420px, 1.08fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
  }

  .about-content {
    min-width: 0;
  }

  .about-workspace-visual {
    width: 100%;
    max-width: 720px;
    justify-self: end;
  }
}

.about-workspace-visual img {
  aspect-ratio: 3 / 2;
  object-position: center;
}

/* Leserorientierte Überschriften */
.promise-section .section-heading {
  max-width: 22ch;
}

/* Leseprobe: Orientierung und Rendering */
.sample-toc {
  scroll-margin-top: 100px;
}

.chapter-return {
  margin-top: 2rem;
  text-align: right;
}

.chapter-return a {
  color: var(--accent-text);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}

.sample-chapter {
  content-visibility: auto;
  contain-intrinsic-size: 1500px;
}

/* Abschluss-CTA */
.sample-end-copy .launch-actions {
  margin-top: 1.25rem;
}

.sample-end-card .amazon-pending-note {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .about-inner {
    gap: 1.75rem;
  }

  .about-workspace-visual {
    order: 2;
  }

  .about-workspace-visual img {
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  .chapter-return {
    text-align: left;
  }

  .sample-end-copy .launch-actions {
    margin-bottom: .75rem;
  }

  .sample-end-card .amazon-pending-note {
    margin-top: 1rem;
  }
}


/* ================================================================
   v0.6.7 ICON ALIGNMENT PATCH
   ================================================================ */

/* Promise-Icons im Kreis sauber zentrieren */
.promise-icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  line-height: 0;
  vertical-align: middle;
}

.promise-icon .ui-icon {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  flex: 0 0 auto;
}

.promise-card > .promise-icon {
  align-self: start;
  justify-self: start;
}


/* ================================================================
   v0.6.8 ICON CENTER FIX
   ================================================================ */

/* Promise-Icons: visuell exakt mittig statt nur layout-technisch zentriert */
.promise-card > .promise-icon {
  position: relative;
  display: block;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  margin: 0 0 .85rem 0;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
}

.promise-card > .promise-icon .ui-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 1rem;
  margin: 0;
  display: block;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

/* Feine optische Korrektur, da die Strichicons leicht oben links wirken */
.promise-card > .promise-icon .ui-icon path,
.promise-card > .promise-icon .ui-icon circle,
.promise-card > .promise-icon .ui-icon rect {
  vector-effect: non-scaling-stroke;
}


/* ================================================================
   v0.6.9 AUTHOR SIGNATURE PATCH
   ================================================================ */

.author-signature {
  width: clamp(220px, 30vw, 290px);
  margin: 1.5rem 0 0;
}

.author-signature picture,
.author-signature img {
  display: block;
  width: 100%;
}

.author-signature img {
  height: auto;
}

@media (max-width: 768px) {
  .author-signature {
    width: clamp(175px, 56vw, 215px);
    margin-top: 1.25rem;
  }
}


/* ================================================================
   v0.6.10 COUPLE SUBLINE SIZE
   ================================================================ */

/* Band 2 und 3: Paarnamen so groß wie die Band-1-Sales-Subline */
.future-books-grid .book-couple {
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  line-height: 1.35;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .future-books-grid .book-couple {
    font-size: 1.65rem;
    line-height: 1.35;
  }
}


/* ================================================================
   v0.6.11 CARD SPACING MICRO PATCH
   ================================================================ */

/* Band 2 und 3: Paarname näher an die Beschreibung rücken */
.future-books-grid .book-couple {
  margin-bottom: .65rem;
}

/* Unteren Innenabstand der beiden Karten leicht reduzieren */
.future-books-grid .book-card .book-body {
  padding-bottom: 1.1rem;
}


/* ================================================================
   v0.6.12 FLOATING CHAPTER BUTTON
   ================================================================ */

.sample-floating-toc {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.5rem);
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 3rem;
  padding: .7rem 1rem;
  border: 1px solid rgba(30, 43, 74, .2);
  border-radius: 999px;
  background: rgba(30, 43, 74, .96);
  color: #fff;
  box-shadow: 0 8px 26px rgba(30, 43, 74, .25);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(.75rem);
  transition:
    opacity .2s ease,
    transform .2s ease,
    visibility .2s ease,
    background-color .2s ease;
}

.sample-floating-toc.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sample-floating-toc:hover {
  background: #11192E;
  color: #fff;
}

.sample-floating-toc:focus-visible {
  outline: 3px solid rgba(201, 106, 82, .5);
  outline-offset: 3px;
}

.sample-floating-toc svg {
  display: block;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

@media (max-width: 480px) {
  .sample-floating-toc {
    right: .85rem;
    bottom: calc(.85rem + env(safe-area-inset-bottom, 0px));
    min-height: 2.9rem;
    padding: .65rem .9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sample-floating-toc {
    transition: none;
  }
}


/* ================================================================
   v0.6.13 SAMPLE END BOX + HEADER LOGO FIX
   ================================================================ */

/* Nur die Jonas-Stein-Wortmarke bleibt im sichtbaren Header. */
.header-logo-center {
  display: none !important;
}

/* Abschlussbox darf niemals breiter als ihr Container werden. */
.sample-container,
.sample-end-card--visual,
.sample-end-image,
.sample-end-copy {
  min-width: 0;
  max-width: 100%;
}

.sample-end-card--visual {
  width: 100%;
}

.sample-end-copy {
  width: 100%;
  overflow-wrap: break-word;
}

.sample-end-card--visual .launch-actions {
  min-width: 0;
  max-width: 100%;
}

.sample-end-card--visual .launch-actions .btn {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 768px) {
  .sample-end-card--visual {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
  }

  .sample-end-copy {
    padding-left: clamp(1.15rem, 5vw, 1.5rem);
    padding-right: clamp(1.15rem, 5vw, 1.5rem);
  }

  .sample-end-card--visual .launch-actions,
  .sample-end-card--visual .launch-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .sample-end-card--visual .launch-actions .btn {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.35;
    padding-left: .8rem;
    padding-right: .8rem;
    text-align: center;
  }

  .sample-end-card--visual h2,
  .sample-end-card--visual p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}


/* ================================================================
   v0.6.14 HEADER RESTORE
   ================================================================ */

/* Mittiges JS-Monogramm wieder sichtbar; linke Jonas-Stein-Wortmarke bleibt erhalten. */
.header-logo-center {
  display: flex !important;
}


/* ================================================================
   v0.6.15 HEADER WORDMARK CONSISTENCY
   ================================================================ */

/* Links auf allen Seiten nur die Wortmarke „Jonas Stein“. */
.site-header .logo-img {
  display: none !important;
}

.site-header .logo-text {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .01em;
  color: var(--navy);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .site-header .logo-text {
    font-size: clamp(1.45rem, 7vw, 1.8rem);
  }
}


/* ================================================================
   v0.6.18 SAMPLE END JUMP LINK
   ================================================================ */

.sample-end-jump {
  margin: .85rem 0 1.25rem;
  text-align: center;
}

.sample-end-jump a {
  color: var(--accent-text, #A94B37);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.sample-end-jump a:hover {
  color: var(--navy);
}

.sample-end-jump a:focus-visible {
  outline: 3px solid rgba(201, 106, 82, .35);
  outline-offset: 4px;
  border-radius: 2px;
}

#leseprobe-ende {
  scroll-margin-top: 90px;
}


/* ================================================================
   v0.6.19 ANCHOR JUMP FIX
   ================================================================ */

/*
  content-visibility mit geschätzten Kapitelhöhen verfälscht lange
  Ankersprünge. Für die Leseprobe müssen alle Kapitelhöhen exakt sein.
*/
.sample-chapter {
  content-visibility: visible !important;
  contain-intrinsic-size: none !important;
  contain: none !important;
}

#sample-toc,
#leseprobe-ende {
  scroll-margin-top: 96px;
}


/* ================================================================
   v0.6.20 DESKTOP HERO SCENE
   ================================================================ */

.hero-books--launch-scene {
  display: block;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.hero-books--launch-scene .hero-book,
.hero-books--launch-scene .hero-book:first-child {
  transform: none;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-book);
  background: var(--bg-warm);
}

.hero-books--launch-scene .hero-book:hover {
  transform: translateY(-.2rem) !important;
}

.hero-books--launch-scene picture,
.hero-books--launch-scene img {
  display: block;
  width: 100%;
}

.hero-books--launch-scene img {
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 768px) {
  .hero-books--launch-scene {
    display: none;
  }
}


/* ================================================================
   v0.6.21 HOUSE QUOTE
   ================================================================ */

.series-quote-section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  background: var(--bg);
}

.series-quote {
  display: grid;
  justify-items: center;
  gap: clamp(.8rem, 2vw, 1.15rem);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.series-quote blockquote {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.015em;
}

.series-quote figcaption {
  color: var(--gold-text, #806231);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.series-quote-line {
  display: block;
  width: clamp(3.5rem, 8vw, 6.5rem);
  height: 1px;
  background: var(--gold-text, #806231);
  opacity: .65;
}

@media (max-width: 768px) {
  .series-quote-section {
    padding: 3.5rem 0;
  }

  .series-quote {
    padding-inline: .75rem;
  }

  .series-quote blockquote {
    font-size: clamp(1.9rem, 8.8vw, 2.5rem);
    line-height: 1.15;
  }

  .series-quote figcaption {
    max-width: 24ch;
    font-size: .72rem;
  }
}


/* ================================================================
   v0.6.22 QUOTE SPACING PATCH
   ================================================================ */

@media (max-width: 768px) {
  .series-quote-section {
    padding: 3.5rem 0 2rem;
  }

  .series-quote figcaption {
    max-width: none;
    font-size: .66rem;
    letter-spacing: .08em;
    white-space: nowrap;
  }
}


/* ================================================================
   v0.6.23 CONVERSION PATCH
   ================================================================ */

/* Physisches Stimmungsbild klar als Visualisierung kennzeichnen */
.hero-books--launch-scene {
  position: relative;
}

.hero-format-note {
  margin: .65rem 0 0;
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

/* Deaktivierter Amazon-Link ist Status, kein toter Button */
.launch-actions [data-amazon-link].is-disabled {
  order: 3;
  width: 100%;
  min-height: auto;
  padding: .25rem 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--text-muted);
  cursor: default;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.4;
  text-align: left;
  text-transform: none;
  pointer-events: none;
}

.launch-actions [data-amazon-link]:not(.is-disabled) {
  order: -1;
}

/* Newsletter nur noch als kompakter Statushinweis */
.newsletter-section--status {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  background: var(--bg-warm);
}

.newsletter-status-strip {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold-text, #806231);
  background: rgba(255, 255, 255, .72);
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.55;
}

.newsletter-status-strip strong {
  color: var(--navy);
}

/* Kontrollierte Humorzeile auf der Leseprobenseite */
.sample-humor {
  margin: .7rem 0 .9rem;
  color: var(--accent-text, #A94B37);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-style: italic;
  line-height: 1.3;
}

/* FAQ */
.book-faq-section {
  padding: var(--section-py) 0;
  background: var(--bg-warm);
}

.book-faq-list {
  display: grid;
  gap: .75rem;
  max-width: 860px;
}

.book-faq-item {
  border: 1px solid var(--bg-warm-mid);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.book-faq-item summary {
  position: relative;
  padding: 1rem 3rem 1rem 1.15rem;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
}

.book-faq-item summary::-webkit-details-marker {
  display: none;
}

.book-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  color: var(--accent-text, #A94B37);
  font-family: var(--font-body);
  font-size: 1.35rem;
  transform: translateY(-50%);
}

.book-faq-item[open] summary::after {
  content: "–";
}

.book-faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .hero-format-note {
    display: none;
  }

  .launch-actions [data-amazon-link].is-disabled {
    text-align: center;
  }

  .newsletter-status-strip {
    font-size: .86rem;
  }
}


/* ================================================================
   v0.6.24 SIMULATED READER VOICES
   ================================================================ */

.reader-voice-feature,
.reader-voices-section {
  padding: var(--section-py) 0;
}

.reader-voices-section {
  background: var(--white);
}

.reader-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.reader-voice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.25rem, 2.5vw, 1.7rem);
  border: 1px solid var(--bg-warm-mid);
  border-top: 4px solid var(--gold-text, #806231);
  border-radius: 7px;
  background: var(--bg-warm);
  box-shadow: var(--shadow-card);
}

.reader-voice-card-label {
  position: relative;
  z-index: 1;
  margin-bottom: .8rem;
  color: var(--accent-text, #A94B37);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.reader-voice-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 1.1rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.4;
}

.reader-voice-source {
  margin-top: auto;
  color: var(--gold-text, #806231);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.reader-voices-transparency {
  max-width: 72ch;
  margin: 1.25rem auto 0;
  color: var(--text-muted);
  font-size: .8rem;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 900px) {
  .reader-voices-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .reader-voices-section {
    padding: clamp(2.5rem, 8vw, 4rem) 0;
  }
}


/* ================================================================
   v0.6.25 DESKTOP HEADER FIX
   ================================================================ */

/*
  Ursache des Überlaufs:
  Das Monogramm war absolut bei 50 % positioniert, während die lange
  Desktop-Navigation denselben horizontalen Raum belegte.

  Ab 1280 px erhält der Header drei feste Zonen:
  Wortmarke | Monogramm | Navigation.
*/
@media (min-width: 1280px) {
  .site-header .container {
    max-width: 1440px;
  }

  .site-header .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: clamp(1.5rem, 2.5vw, 2.5rem);
    align-items: center;
  }

  .site-header .logo {
    grid-column: 1;
    justify-self: start;
  }

  .site-header .header-logo-center {
    grid-column: 2;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    justify-self: center;
    z-index: 3;
  }

  .site-header .nav-main {
    grid-column: 3;
    justify-self: end;
    gap: clamp(.85rem, 1.25vw, 1.2rem);
    white-space: nowrap;
  }

  .site-header .nav-main a {
    font-size: .74rem;
    letter-spacing: .045em;
  }

  .site-header .nav-toggle {
    display: none;
  }
}

/*
  Zwischen Tablet und schmalem Desktop wird die Navigation als Menü
  geführt. So kann das mittige Monogramm nicht erneut mit Links kollidieren.
  Die eigentliche Mobile-Ansicht bis 768 px bleibt unverändert.
*/
@media (min-width: 769px) and (max-width: 1279px) {
  .site-header {
    z-index: 1000;
  }

  .site-header .nav-main {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: calc(100dvh - 64px);
    background: var(--bg) !important;
    opacity: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    z-index: 999;
    border-top: 1px solid var(--bg-warm-mid);
    box-shadow: 0 14px 36px rgba(26, 24, 37, .12);
    overflow-y: auto;
  }

  .site-header .nav-main.open {
    display: flex;
  }

  .site-header .nav-main a {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: none;
  }

  .site-header .nav-main a::after {
    display: none;
  }

  .site-header .nav-toggle {
    display: flex;
  }

  .site-header .header-logo-center {
    z-index: 3;
  }
}


/* ================================================================
   v0.6.26 DESKTOP NAV RESTORE
   ================================================================ */

/*
  Browser im „Desktopmodus“ verwenden häufig eine CSS-Viewportbreite
  um 980 px. Deshalb wird die vollständige Navigation bereits ab
  920 px dargestellt, nicht erst ab 1280 px.
*/
@media (min-width: 920px) {
  .site-header .container {
    max-width: 1440px;
  }

  .site-header .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: clamp(.8rem, 1.8vw, 2.25rem);
    align-items: center;
  }

  .site-header .logo {
    grid-column: 1;
    justify-self: start;
  }

  .site-header .header-logo-center {
    grid-column: 2;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    justify-self: center;
    z-index: 3;
  }

  .site-header .nav-main,
  .site-header .nav-main.open {
    display: flex;
    grid-column: 3;
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    min-height: 0;
    width: auto;
    background: transparent !important;
    opacity: 1;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(.55rem, 1vw, 1.1rem);
    justify-self: end;
    border: 0;
    box-shadow: none;
    overflow: visible;
    white-space: nowrap;
    z-index: 2;
  }

  .site-header .nav-main a {
    padding-bottom: 2px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: clamp(.64rem, .72vw, .74rem);
    font-weight: 500;
    letter-spacing: .025em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .site-header .nav-main a::after {
    display: block;
  }

  .site-header .nav-toggle {
    display: none !important;
  }
}

/* Kompakte Desktopdarstellung für 920–1279 px */
@media (min-width: 920px) and (max-width: 1279px) {
  .site-header .logo-text {
    font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  }

  .site-header .header-logo-center-img {
    height: 36px;
    max-width: 52px;
  }

  .site-header .nav-main,
  .site-header .nav-main.open {
    gap: clamp(.45rem, .8vw, .7rem);
  }

  .site-header .nav-main a {
    font-size: clamp(.6rem, .68vw, .67rem);
    letter-spacing: .015em;
  }
}

/*
  Nur der echte Zwischenbereich bleibt als Menüschalter.
  Die Mobile-Regeln bis 768 px bleiben unverändert.
*/
@media (min-width: 769px) and (max-width: 919px) {
  .site-header .nav-main {
    display: none;
  }

  .site-header .nav-main.open {
    display: flex;
  }

  .site-header .nav-toggle {
    display: flex;
  }
}


/* ================================================================
   v0.6.27 DESKTOP BRAND GROUP
   ================================================================ */

/*
  Desktop: Wortmarke und Monogramm bilden links eine gemeinsame
  Markeneinheit. Die Navigation erhält den restlichen Platz.
  Mobile/Tablet bis 919 px bleibt unverändert.
*/
@media (min-width: 920px) {
  .site-header .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
  }

  .site-header .logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: clamp(.75rem, 1.1vw, 1.05rem);
    min-width: max-content;
  }

  .site-header .header-logo-center {
    grid-column: 1;
    grid-row: 1;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    justify-self: start;
    margin-left: clamp(8.8rem, 10.5vw, 10.8rem);
    z-index: 3;
  }

  .site-header .header-logo-center-img {
    height: clamp(32px, 2.8vw, 38px);
    width: auto;
    max-width: 54px;
  }

  .site-header .nav-main,
  .site-header .nav-main.open {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: clamp(.85rem, 1.45vw, 1.35rem);
  }

  .site-header .nav-main a {
    font-size: clamp(.7rem, .78vw, .8rem);
    letter-spacing: .035em;
  }
}

/* Kompaktere Markenabstände für schmale Desktopbreiten */
@media (min-width: 920px) and (max-width: 1099px) {
  .site-header .header-inner {
    column-gap: 1rem;
  }

  .site-header .logo-text {
    font-size: 1.2rem;
  }

  .site-header .header-logo-center {
    margin-left: 7.55rem;
  }

  .site-header .header-logo-center-img {
    height: 31px;
  }

  .site-header .nav-main,
  .site-header .nav-main.open {
    gap: .62rem;
  }

  .site-header .nav-main a {
    font-size: .67rem;
    letter-spacing: .02em;
  }
}

/*
  Ab 1280 px bewusst größere Navigation:
  Der durch die aufgegebene Mittelposition gewonnene Platz wird
  für bessere Lesbarkeit genutzt.
*/
@media (min-width: 1280px) {
  .site-header .header-inner {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: clamp(2rem, 3vw, 3.25rem);
  }

  .site-header .header-logo-center {
    margin-left: clamp(9.4rem, 10vw, 10.5rem);
  }

  .site-header .nav-main,
  .site-header .nav-main.open {
    gap: clamp(1rem, 1.5vw, 1.5rem);
  }

  .site-header .nav-main a {
    font-size: .79rem;
    letter-spacing: .045em;
  }
}


/* ================================================================
   v0.6.28 DIGITAL HERO
   ================================================================ */

.hero-books--launch-scene .hero-book--scene {
  background: #17110d;
}

.hero-books--launch-scene .hero-book--scene img {
  aspect-ratio: 3 / 2;
  object-position: center;
}


/* ================================================================
   v0.6.29 MOBILE EBOOK CUE
   ================================================================ */

.mobile-ebook-cue {
  display: none;
}

@media (max-width: 768px) {
  .mobile-ebook-cue {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: min(100%, 320px);
    margin: 1.25rem auto 0;
    padding: .7rem 1rem .7rem .72rem;
    border: 1px solid var(--bg-warm-mid);
    border-radius: 8px;
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow-card);
    text-align: left;
  }

  .mobile-ebook-cue-media {
    display: block;
    flex: 0 0 78px;
    width: 78px;
  }

  .mobile-ebook-cue-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
  }

  .mobile-ebook-cue-copy {
    min-width: 0;
  }

  .mobile-ebook-cue-copy span {
    display: block;
    margin-bottom: .18rem;
    color: var(--accent-text, #A94B37);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .mobile-ebook-cue-copy p {
    margin: 0;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.3;
  }
}

@media (max-width: 359px) {
  .mobile-ebook-cue {
    gap: .8rem;
    padding-right: .8rem;
  }

  .mobile-ebook-cue-media {
    flex-basis: 66px;
    width: 66px;
  }

  .mobile-ebook-cue-copy p {
    font-size: 1rem;
  }
}

/* === v0.6.58: MailerLite Click-to-load === */
.launch-reminder-click-to-load {
  scroll-margin-top: 88px;
  max-width: 660px;
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--bg-warm-mid);
  min-width: 0;
}
.launch-reminder-loader {
  display: grid;
  gap: .95rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 6px;
  background: var(--white);
  text-align: left;
}
.launch-reminder-loader h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.2;
}
.sample-end-card .launch-reminder-loader p {
  max-width: none;
  margin: 0;
}
.launch-reminder-privacy-note {
  color: var(--text-muted) !important;
  font-size: .86rem;
  line-height: 1.6;
}
.launch-reminder-privacy-note code {
  font-size: .92em;
}
.launch-reminder-loader .btn {
  width: 100%;
  min-height: 48px;
}
.launch-reminder-loader [hidden] {
  display: none !important;
}
.launch-reminder-load-status {
  min-height: 1.4em;
  color: var(--text-muted) !important;
  font-size: .86rem;
  line-height: 1.5;
}
.launch-reminder-load-status.is-error {
  color: #8D3027 !important;
  font-weight: 600;
}
.launch-reminder-load-status.is-success {
  color: #315D47 !important;
  font-weight: 600;
}
.launch-reminder-form-host {
  min-width: 0;
  margin-top: 1rem;
}
.launch-reminder-form-host[hidden] {
  display: none !important;
}
.launch-reminder-form-host .ml-embedded {
  min-width: 0;
}
.launch-reminder-noscript {
  margin: 1rem 0 0;
  padding: .85rem 1rem;
  border-left: 3px solid var(--gold);
  background: var(--gold-light);
  color: var(--navy);
  line-height: 1.55;
}
@media (max-width: 480px) {
  .launch-reminder-click-to-load {
    scroll-margin-top: 76px;
  }
  .launch-reminder-loader {
    padding: 1rem;
  }
}

/* === v0.6.46: P1.7 Mobile und Accessibility === */
:root {
  --accent: #A94B37;
  --accent-hover: #8D3E2D;
  --gold: #765B2E;
}
html, body { max-width: 100%; }
@supports (overflow: clip) { html, body { overflow-x: clip; } }
main, main section, .container, .hero-inner, .book-detail-grid, .sample-hero-grid,
.launch-actions, .chapter-footer, .launch-reminder-click-to-load,
.launch-reminder-form-host, .ml-embedded { min-width: 0; }
h1, h2, h3, .hero-title, .section-heading, .book-detail-title {
  max-width: 100%; overflow-wrap: break-word; hyphens: auto;
}
.skip-link {
  position: fixed; z-index: 10000; top: .75rem; left: .75rem;
  max-width: calc(100vw - 1.5rem); min-height: 44px; padding: .7rem 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  border: 3px solid var(--white); border-radius: 4px;
  background: var(--navy); color: var(--white); font-weight: 700; line-height: 1.2;
  box-shadow: 0 6px 24px rgba(26,24,37,.28);
  transform: translateY(calc(-100% - 1.5rem)); transition: transform .15s ease;
}
.skip-link:focus, .skip-link:focus-visible {
  transform: translateY(0); outline: 3px solid var(--accent); outline-offset: 3px;
}
a:focus, a:focus-visible,
button:focus, button:focus-visible,
input:focus, input:focus-visible,
textarea:focus, textarea:focus-visible,
select:focus, select:focus-visible {
  outline: 3px solid currentColor !important;
  outline-offset: 3px !important;
}
.btn, .button, button, input, textarea, select { min-height: 44px; }
.btn { max-width: 100%; white-space: normal; overflow-wrap: anywhere; line-height: 1.35; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible {
  background: var(--accent-hover);
  color: var(--white);
}
.nav-toggle {
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.reading-text, .sample-prose {
  width: 100%; max-width: 68ch; margin-inline: auto;
}
.reading-text p, .reading-text blockquote {
  font-size: clamp(1.0625rem, 2vw, 1.125rem); line-height: 1.75;
}
.chapter-footer {
  width: 100%; max-width: 68ch; margin: 2.25rem auto 0; padding-top: 1.25rem;
  border-top: 1px solid var(--bg-warm-mid); display: flex;
  align-items: center; justify-content: space-between; gap: 1rem;
}
.chapter-footer .chapter-next {
  width: auto; min-width: 0; flex: 1 1 auto; justify-content: center; text-align: center;
}
.chapter-overview-link, .sample-toc a {
  min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
}
.chapter-overview-link {
  flex: 0 0 auto; color: var(--navy); font-weight: 700;
  text-decoration: underline; text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}
.required-note { color: var(--text-muted); font-size: .88em; font-weight: 500; }
.launch-reminder-click-to-load, .launch-reminder-form-host, .ml-embedded {
  width: 100%; max-width: 100%; min-width: 0;
}
@media (max-width: 919px) {
  .nav-main a { min-height: 44px; display: flex; align-items: center; }
}
@media (max-width: 430px) {
  :root { --pad-x: 1rem; }
  .hero-cta, .launch-actions, .book-actions, .series-next-actions, .chapter-footer {
    width: 100%; max-width: 100%;
  }
  .chapter-footer { align-items: stretch; flex-direction: column; }
  .chapter-footer .chapter-next, .chapter-overview-link { width: 100%; }
  .sample-toc { width: 100%; }
  .sample-toc a { width: 100%; max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) { .skip-link { transition: none; } }
@media (forced-colors: active) {
  .skip-link, a:focus-visible, button:focus-visible, input:focus-visible,
  textarea:focus-visible, select:focus-visible {
    outline: 3px solid CanvasText !important;
  }
}



/* === v0.6.46: P1.7 focus fallback for programmatic and keyboard focus === */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
.btn:focus {
  outline: 3px solid currentColor !important;
  outline-offset: 3px !important;
}

/* === v0.6.48: Mobile menu viewport portal fix === */
body.menu-viewport-open {
  overscroll-behavior: none;
}

@media (max-width: 919px) {
  .nav-main.nav-main--viewport {
    display: flex !important;
    position: fixed !important;
    top: var(--mobile-nav-top, 64px) !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    height: calc(100dvh - var(--mobile-nav-top, 64px)) !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding:
      max(1.5rem, env(safe-area-inset-top))
      var(--pad-x)
      max(1.5rem, env(safe-area-inset-bottom)) !important;
    background: var(--bg) !important;
    opacity: 1 !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.75rem !important;
    border-top: 1px solid var(--bg-warm-mid) !important;
    box-shadow: 0 14px 36px rgba(26, 24, 37, .12) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    transform: none !important;
    z-index: 2000 !important;
  }

  .nav-main.nav-main--viewport a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 1.75rem);
    font-weight: 400;
    letter-spacing: .04em;
    line-height: 1.2;
    text-align: center;
    text-transform: none;
  }

  .nav-main.nav-main--viewport a::after {
    display: none;
  }
}

@media (max-height: 560px) and (max-width: 919px) {
  .nav-main.nav-main--viewport {
    justify-content: flex-start !important;
    gap: 1rem !important;
  }
}



/* === v0.6.49: P2 fit-label semantics === */
.fit-label {
  font-weight: 500;
}

/* === v0.6.50: P2.19 book hero meta line === */
.book-detail-meta {
  max-width: 65ch;
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-size: clamp(.9rem, 1.4vw, 1rem);
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

/* === v0.6.52: Leseproben-Zwischen-CTA === */
.sample-mid-cta {
  width: 100%;
  max-width: 68ch;
  margin: clamp(2.5rem, 6vw, 4.5rem) auto;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--bg-warm-mid);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  background: var(--bg-warm);
  text-align: center;
  overflow-wrap: anywhere;
}

.sample-mid-cta p {
  max-width: 52ch;
  margin: 0 auto 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.sample-mid-cta .btn {
  max-width: 100%;
  min-height: 44px;
  white-space: normal;
  text-align: center;
}

@media (max-width: 430px) {
  .sample-mid-cta {
    padding: 1.1rem;
  }

  .sample-mid-cta .btn {
    width: 100%;
  }
}

/* === v0.6.69: Newsletter-Embed-UX === */

/*
  Nach erfolgreichem Laden bleibt der Status für assistive Technologien
  verfügbar, die sichtbare Einleitung verschwindet jedoch. Damit erscheint
  die Newsletter-Botschaft nicht doppelt.
*/
#newsletter-anmeldung.is-form-visible {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding-top: 0;
  border-top: 0;
}

#newsletter-anmeldung.is-form-visible .launch-reminder-loader {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Ruhiger, markenkonformer Rahmen um das extern geladene Formular. */
#newsletter-anmeldung .launch-reminder-form-host {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

#newsletter-anmeldung .launch-reminder-form-host .ml-embedded,
#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedContainer {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedWrapper {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedBody,
#newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody {
  padding: clamp(1.35rem, 4vw, 2rem) !important;
  background: var(--white) !important;
}

#newsletter-anmeldung .launch-reminder-form-host h4,
#newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody h4 {
  margin: 0 0 .8rem !important;
  color: var(--navy) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.85rem, 4vw, 2.45rem) !important;
  font-weight: 500 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  overflow-wrap: break-word !important;
}

#newsletter-anmeldung .launch-reminder-form-host p,
#newsletter-anmeldung .launch-reminder-form-host label,
#newsletter-anmeldung .launch-reminder-form-host input,
#newsletter-anmeldung .launch-reminder-form-host button,
#newsletter-anmeldung .launch-reminder-form-host a {
  font-family: var(--font-body) !important;
}

#newsletter-anmeldung .launch-reminder-form-host p {
  color: var(--text) !important;
  font-size: .98rem !important;
  line-height: 1.62 !important;
}

#newsletter-anmeldung .launch-reminder-form-host a {
  color: var(--navy) !important;
  text-decoration-thickness: .08em !important;
  text-underline-offset: .16em !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-fieldRow {
  margin: 1rem 0 0 !important;
}

#newsletter-anmeldung .launch-reminder-form-host input[type="email"],
#newsletter-anmeldung .launch-reminder-form-host input[type="text"] {
  width: 100% !important;
  min-height: 48px !important;
  padding: .72rem .85rem !important;
  border: 1px solid var(--navy-mid) !important;
  border-radius: 4px !important;
  background: var(--white) !important;
  color: var(--text) !important;
  font-size: 1rem !important;
  line-height: 1.35 !important;
  box-shadow: none !important;
}

#newsletter-anmeldung .launch-reminder-form-host input:focus,
#newsletter-anmeldung .launch-reminder-form-host input:focus-visible {
  border-color: var(--accent) !important;
  outline: 3px solid var(--accent-light) !important;
  outline-offset: 2px !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedSubmit {
  margin: 1rem 0 0 !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedSubmit button {
  width: 100% !important;
  min-height: 48px !important;
  padding: .75rem 1rem !important;
  border: 1px solid var(--accent) !important;
  border-radius: 4px !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  font-size: .98rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  box-shadow: none !important;
  transition: background-color var(--trans), border-color var(--trans) !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedSubmit button:hover,
#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedSubmit button:focus,
#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedSubmit button:focus-visible {
  border-color: var(--accent-hover) !important;
  background: var(--accent-hover) !important;
  color: var(--white) !important;
}

@media (max-width: 480px) {
  #newsletter-anmeldung .launch-reminder-form-host {
    max-width: 100%;
    border-radius: 6px;
  }

  #newsletter-anmeldung .launch-reminder-form-host .ml-form-embedBody,
  #newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody {
    padding: 1.15rem !important;
  }

  #newsletter-anmeldung .launch-reminder-form-host h4,
  #newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody h4 {
    font-size: clamp(1.7rem, 9vw, 2.1rem) !important;
  }
}

/* === v0.6.70: Newsletter-Embed-Polish === */

.sample-floating-toc.is-suppressed {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(.75rem) !important;
}

#newsletter-anmeldung .launch-reminder-form-host {
  max-width: 620px;
}

#newsletter-anmeldung .launch-reminder-form-host h4,
#newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody h4 {
  max-width: 100% !important;
  font-size: clamp(1.8rem, 3.4vw, 2.35rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.015em !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody,
#newsletter-anmeldung .launch-reminder-form-host .ml-form-successContent {
  min-height: 0 !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-successContent {
  width: 100% !important;
  max-width: 36rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-successContent p {
  margin: 0 0 .75rem !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-successContent p:last-child {
  margin-bottom: 0 !important;
}

#newsletter-anmeldung .launch-reminder-form-host button[type="submit"],
#newsletter-anmeldung .launch-reminder-form-host button.primary {
  border-color: var(--accent) !important;
  background: var(--accent) !important;
  background-color: var(--accent) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

#newsletter-anmeldung .launch-reminder-form-host button[type="submit"]:hover,
#newsletter-anmeldung .launch-reminder-form-host button[type="submit"]:focus,
#newsletter-anmeldung .launch-reminder-form-host button[type="submit"]:focus-visible,
#newsletter-anmeldung .launch-reminder-form-host button.primary:hover,
#newsletter-anmeldung .launch-reminder-form-host button.primary:focus,
#newsletter-anmeldung .launch-reminder-form-host button.primary:focus-visible {
  border-color: var(--accent-hover) !important;
  background: var(--accent-hover) !important;
  background-color: var(--accent-hover) !important;
  color: var(--white) !important;
}

#newsletter-anmeldung .launch-reminder-form-host input[type="email"]:focus,
#newsletter-anmeldung .launch-reminder-form-host input[type="email"]:focus-visible,
#newsletter-anmeldung .launch-reminder-form-host input[type="text"]:focus,
#newsletter-anmeldung .launch-reminder-form-host input[type="text"]:focus-visible {
  border-color: var(--navy) !important;
  outline: 3px solid rgba(183, 142, 55, .32) !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}

@media (max-width: 600px) {
  #newsletter-anmeldung .launch-reminder-form-host {
    max-width: 100%;
  }

  #newsletter-anmeldung .launch-reminder-form-host .ml-form-embedBody,
  #newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody {
    padding: 1.2rem !important;
  }

  #newsletter-anmeldung .launch-reminder-form-host h4,
  #newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody h4 {
    font-size: clamp(1.55rem, 6.6vw, 1.9rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -.02em !important;
  }

  #newsletter-anmeldung .launch-reminder-form-host p {
    font-size: .96rem !important;
    line-height: 1.55 !important;
  }

  #newsletter-anmeldung .launch-reminder-form-host input[type="email"],
  #newsletter-anmeldung .launch-reminder-form-host input[type="text"],
  #newsletter-anmeldung .launch-reminder-form-host button[type="submit"],
  #newsletter-anmeldung .launch-reminder-form-host button.primary {
    min-height: 46px !important;
  }
}

/* === v0.6.71: Newsletter-Typography-Polish === */

/* Einheitliche Schriftfamilien, Grade und Zeilenhöhen im externen Formular. */
#newsletter-anmeldung .launch-reminder-form-host,
#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedContainer,
#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedWrapper,
#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedBody,
#newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody {
  font-family: var(--font-body) !important;
  font-style: normal !important;
}

#newsletter-anmeldung .launch-reminder-form-host h4,
#newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody h4 {
  margin: 0 0 .9rem !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.9rem, 3.1vw, 2.3rem) !important;
  font-weight: 500 !important;
  font-style: normal !important;
  line-height: 1.08 !important;
  letter-spacing: -.015em !important;
  text-transform: none !important;
}

#newsletter-anmeldung .launch-reminder-form-host .newsletter-no-break {
  display: inline-block !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

#newsletter-anmeldung .launch-reminder-form-host p,
#newsletter-anmeldung .launch-reminder-form-host label,
#newsletter-anmeldung .launch-reminder-form-host .ml-form-successContent p {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
}

#newsletter-anmeldung .launch-reminder-form-host input[type="email"],
#newsletter-anmeldung .launch-reminder-form-host input[type="text"] {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

#newsletter-anmeldung .launch-reminder-form-host button[type="submit"],
#newsletter-anmeldung .launch-reminder-form-host button.primary {
  font-family: var(--font-body) !important;
  font-size: .98rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  line-height: 1.3 !important;
  letter-spacing: .015em !important;
  text-transform: none !important;
}

/* Weniger Leeraum unter dem Submit-Button. */
#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedBody {
  padding-bottom: 1rem !important;
}

#newsletter-anmeldung .launch-reminder-form-host form,
#newsletter-anmeldung .launch-reminder-form-host .ml-block-form,
#newsletter-anmeldung .launch-reminder-form-host .ml-form-formContent {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedSubmit {
  margin: 1rem 0 0 !important;
  padding: 0 !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedSubmit button {
  margin: 0 !important;
}

/* Erfolgsansicht enger an denselben vertikalen Rhythmus binden. */
#newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody {
  padding-top: 1.35rem !important;
  padding-bottom: 1.35rem !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-successContent {
  max-width: 34rem !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-successContent p {
  margin: 0 0 .7rem !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-successContent p:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 600px) {
  #newsletter-anmeldung .launch-reminder-form-host h4,
  #newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody h4 {
    font-size: clamp(1.48rem, 6vw, 1.78rem) !important;
    line-height: 1.08 !important;
  }

  #newsletter-anmeldung .launch-reminder-form-host p,
  #newsletter-anmeldung .launch-reminder-form-host label,
  #newsletter-anmeldung .launch-reminder-form-host .ml-form-successContent p {
    font-size: .96rem !important;
    line-height: 1.52 !important;
  }

  #newsletter-anmeldung .launch-reminder-form-host .ml-form-embedBody {
    padding-bottom: .85rem !important;
  }

  #newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody {
    padding-top: 1.05rem !important;
    padding-bottom: 1.05rem !important;
  }
}

/* === v0.6.72: Newsletter-Spacing-Alignment === */

#newsletter-anmeldung {
  --newsletter-action-bottom-space: clamp(1rem, 2vw, 1.25rem);
}

/*
  Die leere Live-Statuszeile darf vor der Interaktion keinen unsichtbaren
  Platz unter dem Button reservieren. Sobald Text gesetzt wird, erscheint sie.
*/
#newsletter-anmeldung .launch-reminder-load-status:empty {
  display: none !important;
}

/* Vorladezustand: identischer Abstand unter dem CTA. */
#newsletter-anmeldung .launch-reminder-loader {
  padding-bottom: var(--newsletter-action-bottom-space) !important;
}

/* Geladenes Formular: Abstand sitzt direkt unter dem Submit-Button. */
#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedBody {
  padding-bottom: 0 !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedSubmit {
  margin: 1rem 0 0 !important;
  padding: 0 0 var(--newsletter-action-bottom-space) !important;
}

/* Erfolgsansicht nutzt denselben unteren Kartenabstand. */
#newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody {
  padding-bottom: var(--newsletter-action-bottom-space) !important;
}

@media (max-width: 600px) {
  #newsletter-anmeldung {
    --newsletter-action-bottom-space: 1rem;
  }
}

/* === v0.6.73: KI-Bildhinweise === */

.footer-ai-notice {
  margin: .7rem 0 0;
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.5;
}

.footer-ai-notice a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: .07em;
  text-underline-offset: .16em;
}

.footer-ai-notice a:hover,
.footer-ai-notice a:focus-visible {
  color: var(--white);
}

.ai-image-disclosure {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: .01em;
}

.ai-image-disclosure--location {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: .65rem 0 0;
  text-align: right;
}

.hannover-photo .ai-image-disclosure--figure {
  margin-top: .65rem;
  color: var(--text-muted);
  text-align: left;
}

@media (max-width: 768px) {
  .footer-ai-notice {
    font-size: .8rem;
  }

  .ai-image-disclosure--location {
    width: min(100% - 2rem, 44rem);
    padding-top: .55rem;
    text-align: left;
  }

  .hannover-photo .ai-image-disclosure--figure {
    font-size: .76rem;
  }
}

/* === v0.6.74: KI-Bildhinweis-Kontrast === */

.ai-image-disclosure--direct {
  box-sizing: border-box;
  margin: 0;
  padding: .78rem 1rem;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(
      180deg,
      rgba(13,22,42,.82) 0%,
      rgba(13,22,42,.94) 100%
    );
  color: #ffffff !important;
  font-family: var(--font-body);
  font-size: clamp(.78rem, 1.15vw, .88rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .01em;
  text-align: left;
  text-shadow: 0 1px 2px rgba(0,0,0,.72);
  box-shadow: 0 -6px 18px rgba(0,0,0,.16);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Das Rathaus-Label sitzt immer am unteren Rand des Hintergrundbildes. */
.hannover-bg .ai-image-disclosure--location {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  padding-right: max(var(--pad-x), 1rem);
  padding-left: max(var(--pad-x), 1rem);
}

.hannover-bg::after {
  z-index: 1;
}

.hannover-bg img {
  position: relative;
  z-index: 0;
}

/* Inhalt erhält Luft für den festen Hinweisbalken. */
.hannover-inner {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3.4rem, 6vw, 4.3rem);
}

/* Café: gleicher Kontraststil unmittelbar unter dem Bild. */
.hannover-photo .ai-image-disclosure--figure {
  margin-top: 0;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.hannover-photo picture img {
  border-radius: 4px 4px 0 0;
}

/* Bestehende Mobile-Regel bleibt bestehen: Café ist unter 900 px verborgen. */
@media (max-width: 900px) {
  .hannover-photo--cafe {
    display: none;
  }
}

@media (max-width: 768px) {
  .ai-image-disclosure--direct {
    padding: .72rem 1rem;
    font-size: .82rem;
    line-height: 1.4;
  }

  .hannover-bg .ai-image-disclosure--location {
    text-align: left;
  }

  .hannover-inner {
    padding-bottom: 4rem;
  }
}

/* === v0.6.75: KI-Bildhinweis-ausgewogener-Kontrast === */

.ai-image-disclosure--direct {
  border-color: rgba(255,255,255,.10) !important;
  background:
    linear-gradient(
      180deg,
      rgba(13,22,42,.54) 0%,
      rgba(13,22,42,.66) 100%
    ) !important;
  color: rgba(255,255,255,.90) !important;
  font-weight: 400 !important;
  text-shadow: 0 1px 1px rgba(0,0,0,.34) !important;
  box-shadow: 0 -3px 10px rgba(0,0,0,.08) !important;
  backdrop-filter: blur(1px) !important;
  -webkit-backdrop-filter: blur(1px) !important;
}

/* === v0.6.76: KI-Bildhinweis-sehr-zurueckhaltend === */

.ai-image-disclosure--direct {
  border-color: rgba(255,255,255,.05) !important;
  background:
    linear-gradient(
      180deg,
      rgba(13,22,42,.27) 0%,
      rgba(13,22,42,.33) 100%
    ) !important;
  color: rgba(255,255,255,.84) !important;
  font-weight: 400 !important;
  text-shadow: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(.5px) !important;
  -webkit-backdrop-filter: blur(.5px) !important;
}

/* === v0.6.77: Newsletter-einheitliche-Textquelle === */

/*
  Die lokale Überschrift und Nutzenbeschreibung sind die einzige dauerhafte
  Einführung. Vorladeaktion, Formular und Erfolg bleiben eine Karte.
*/
#newsletter-anmeldung.newsletter-single-copy,
#newsletter-anmeldung.newsletter-single-copy.is-form-visible {
  width: 100%;
  max-width: 620px;
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

#newsletter-anmeldung .newsletter-local-copy {
  display: grid;
  gap: .8rem;
  padding: clamp(1.25rem, 4vw, 1.8rem)
           clamp(1.2rem, 4vw, 2rem)
           .35rem;
  text-align: left;
}

#newsletter-anmeldung .newsletter-local-copy h3 {
  max-width: 100%;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.01em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

#newsletter-anmeldung .newsletter-local-copy p {
  max-width: none;
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.62;
}

/* Vorladeaktion ist kein zweiter Kartenrahmen mehr. */
#newsletter-anmeldung .launch-reminder-loader {
  gap: .85rem;
  padding: .85rem clamp(1.2rem, 4vw, 2rem)
           var(--newsletter-action-bottom-space) !important;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/*
  Nach dem Laden wird weiterhin nur die technische Vorladeaktion visuell
  ausgeblendet. Die lokale Einführung liegt außerhalb und bleibt sichtbar.
*/
#newsletter-anmeldung.is-form-visible .launch-reminder-loader {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* MailerLite ist nur noch Funktionsbereich, nicht zweite Textquelle. */
#newsletter-anmeldung .launch-reminder-form-host {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedWrapper {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#newsletter-anmeldung .launch-reminder-form-host
.ml-form-embedBody .ml-form-embedContent,
#newsletter-anmeldung .launch-reminder-form-host
.newsletter-embed-intro-hidden {
  display: none !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedBody {
  padding: .45rem clamp(1.2rem, 4vw, 2rem) 0 !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-fieldRow {
  margin-top: 0 !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-embedSubmit {
  margin-top: 1rem !important;
  padding-bottom: var(--newsletter-action-bottom-space) !important;
}

/* Erfolg bleibt bewusst als zweiter, zustandsbezogener Text sichtbar. */
#newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody {
  padding: .6rem clamp(1.2rem, 4vw, 2rem)
           var(--newsletter-action-bottom-space) !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-successContent {
  max-width: none !important;
}

#newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody h4 {
  margin: 0 0 .7rem !important;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem) !important;
  line-height: 1.12 !important;
}

@media (max-width: 600px) {
  #newsletter-anmeldung.newsletter-single-copy,
  #newsletter-anmeldung.newsletter-single-copy.is-form-visible {
    border-radius: 6px;
  }

  #newsletter-anmeldung .newsletter-local-copy {
    padding: 1.15rem 1rem .3rem;
  }

  #newsletter-anmeldung .newsletter-local-copy h3 {
    font-size: clamp(1.45rem, 7vw, 1.78rem);
  }

  #newsletter-anmeldung .newsletter-local-copy p {
    font-size: .96rem;
    line-height: 1.55;
  }

  #newsletter-anmeldung .launch-reminder-loader {
    padding: .8rem 1rem var(--newsletter-action-bottom-space) !important;
  }

  #newsletter-anmeldung .launch-reminder-form-host .ml-form-embedBody {
    padding: .4rem 1rem 0 !important;
  }

  #newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody {
    padding: .55rem 1rem var(--newsletter-action-bottom-space) !important;
  }
}

/* === v0.6.78: Newsletter-Feldabstand-und-Erfolgsakzent === */

#newsletter-anmeldung {
  --newsletter-success-accent: #B55A44;
}

/* DOI-Hinweis klar vom E-Mail-Feld trennen. */
#newsletter-anmeldung .launch-reminder-form-host .ml-form-fieldRow {
  margin-bottom: .9rem !important;
}

/* Positives Signal, ohne Fehler- oder Warnwirkung. */
#newsletter-anmeldung .launch-reminder-form-host .ml-form-successBody h4 {
  color: var(--newsletter-success-accent) !important;
}

/* === v0.6.80: skalierbare Navigation und Seitenrollen === */

.nav-main a[aria-current] {
  color: var(--accent);
}

.nav-main a[aria-current]::after {
  transform: scaleX(1);
}

.role-page-hero {
  padding: clamp(6.5rem, 10vw, 9rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(201,106,82,.10), transparent 36%),
    var(--bg-warm);
}

.role-page-intro {
  max-width: 760px;
}

.role-page-intro h1 {
  margin: .35rem 0 1rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 4.3rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.025em;
}

.role-page-intro > p:not(.section-label) {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.role-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}

.role-page-next {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--bg-warm);
}

.role-page-next-inner {
  max-width: 760px;
}

.role-page-next-inner h2 {
  margin: .35rem 0 1rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.08;
}

.contact-page-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.contact-page-card {
  padding: clamp(1.5rem, 4vw, 2.3rem);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.contact-page-card--quiet {
  background: var(--bg-warm);
  box-shadow: none;
}

.contact-page-card h2 {
  margin: .35rem 0 .8rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .role-page-hero {
    padding-top: 5.5rem;
  }

  .role-page-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .role-page-actions .btn {
    width: 100%;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

/* === v0.6.81: fokussierte Startseite === */

.home-book-summary,
.home-sample-teaser,
.home-series-teaser,
.home-author-teaser {
  padding: var(--section-py) 0;
}

.home-book-summary { background: var(--white); }

.home-book-summary-grid {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.home-book-cover { max-width: 320px; margin: 0 auto; }
.home-book-cover img {
  display: block; width: 100%; height: auto;
  border-radius: 5px; box-shadow: var(--shadow-book);
}

.home-book-summary-copy { max-width: 720px; }
.home-book-summary-copy .section-heading { margin-bottom: 1.1rem; }
.home-book-summary-copy > p { max-width: 66ch; line-height: 1.7; }

.home-feature-list {
  display: grid; gap: .7rem; margin: 1.25rem 0 0; padding: 0; list-style: none;
}
.home-feature-list li {
  position: relative; padding-left: 1.55rem;
  color: var(--navy); font-weight: 600; line-height: 1.5;
}
.home-feature-list li::before {
  content: "•"; position: absolute; left: .2rem; color: var(--accent);
}

.home-section-actions {
  display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem;
}
.home-book-meta {
  margin-top: 1rem !important; color: var(--text-muted); font-size: .9rem;
}

.home-reader-voices { background: var(--bg-warm); }
.home-reader-voices .reader-voices-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 940px; margin: 0 auto;
}

.home-sample-teaser { background: var(--navy); }
.home-sample-teaser .section-label { color: var(--gold-light); }
.home-sample-teaser .home-teaser-panel,
.home-sample-teaser .home-teaser-panel h2,
.home-sample-teaser .home-teaser-panel p { color: var(--white); }

.home-series-teaser { background: var(--white); }
.home-author-teaser { background: var(--bg-warm); }

.home-teaser-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.home-sample-teaser .home-teaser-panel {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  box-shadow: none;
}
.home-teaser-panel h2 {
  margin: .35rem 0 .9rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}
.home-teaser-panel p:not(.section-label) {
  max-width: 68ch; margin: 0; line-height: 1.7;
}

.home-hannover-teaser .hannover-inner {
  min-height: clamp(420px, 54vw, 620px); align-items: center;
}
.home-hannover-teaser .hannover-content { max-width: 650px; }
.home-hannover-teaser .hannover-content .section-label {
  margin-bottom: .75rem; color: var(--gold-light);
}
.home-hannover-teaser .hannover-content h2 { margin-bottom: 1rem; }

@media (max-width: 900px) {
  .home-book-summary-grid {
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    gap: 2rem;
  }
  .home-reader-voices .reader-voices-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .home-book-summary-grid,
  .home-teaser-panel { grid-template-columns: 1fr; }
  .home-book-cover { max-width: 230px; }
  .home-section-actions {
    align-items: stretch; flex-direction: column;
  }
  .home-section-actions .btn,
  .home-teaser-panel > .btn { width: 100%; }
  .home-hannover-teaser .hannover-inner { min-height: 520px; }
}

/* === v0.6.82: Hero-CTA-Abgleich === */

.hero-newsletter-note {
  max-width: 48ch;
  margin: .8rem 0 0;
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.5;
}

#start .hero-cta .btn-primary {
  box-shadow: 0 10px 24px rgba(201,106,82,.22);
}

#start .hero-cta .btn-primary:hover {
  box-shadow: 0 13px 30px rgba(201,106,82,.28);
}

@media (max-width: 760px) {
  .hero-newsletter-note {
    margin-top: .7rem;
    font-size: .84rem;
  }
}

/* === v0.6.83: Reader-MVP === */

.sample-reader-toolbar {
  position: sticky;
  z-index: 20;
  top: 72px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: center;
  gap: .9rem 1.25rem;
  margin: 0 0 2rem;
  padding: .9rem 1rem;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 6px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 10px 28px rgba(26,24,37,.10);
  backdrop-filter: blur(10px);
}

.sample-reader-toolbar[hidden],
.sample-reader-resume[hidden] {
  display: none !important;
}

.sample-reader-progress {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.sample-reader-progress-track {
  width: 100%;
  height: 4px;
  margin-top: .45rem;
  overflow: hidden;
  border-radius: 999px;
  background: var(--bg-warm-mid);
}

.sample-reader-progress-track span {
  display: block;
  width: 16.6667%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width .18s ease;
}

.sample-reader-toc-details {
  position: relative;
}

.sample-reader-toc-details summary {
  min-height: 44px;
  padding: .65rem .8rem;
  cursor: pointer;
  color: var(--navy);
  font-weight: 700;
}

.sample-reader-toc {
  position: absolute;
  right: 0;
  top: calc(100% + .45rem);
  display: grid;
  min-width: 210px;
  padding: .55rem;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 5px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.sample-reader-toc a {
  min-height: 44px;
  padding: .7rem .8rem;
  border-radius: 3px;
  color: var(--navy);
  font-weight: 600;
}

.sample-reader-toc a:hover,
.sample-reader-toc a:focus-visible,
.sample-reader-toc a[aria-current="step"] {
  background: var(--bg-warm);
  color: var(--accent);
}

.sample-reader-resume {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .8rem;
  border-top: 1px solid var(--bg-warm-mid);
}

.sample-reader-resume p {
  margin: 0;
}

html.reader-enhanced .sample-chapter[hidden],
html.reader-enhanced [data-reader-after][hidden] {
  display: none !important;
}

html.reader-enhanced .sample-chapter {
  min-height: 50vh;
  border-bottom: 0;
}

.chapter-reader-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: .75rem;
  margin-top: clamp(2.25rem, 5vw, 4rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--bg-warm-mid);
}

.chapter-reader-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: .7rem .85rem;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 4px;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
}

.chapter-reader-nav a:hover,
.chapter-reader-nav a:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.chapter-reader-prev {
  justify-self: start;
}

.chapter-overview-link {
  justify-self: center;
}

.chapter-reader-next {
  justify-self: end;
}

@media (max-width: 760px) {
  .sample-reader-toolbar {
    top: 64px;
    grid-template-columns: 1fr;
  }

  .sample-reader-toc-details {
    width: 100%;
  }

  .sample-reader-toc-details summary {
    width: 100%;
  }

  .sample-reader-toc {
    position: static;
    width: 100%;
    margin-top: .4rem;
  }

  .sample-reader-resume {
    align-items: stretch;
    flex-direction: column;
  }

  .sample-reader-resume .btn {
    width: 100%;
  }

  .chapter-reader-nav {
    grid-template-columns: 1fr 1fr;
  }

  .chapter-overview-link {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
  }

  .chapter-reader-prev,
  .chapter-reader-next {
    width: 100%;
    justify-self: stretch;
  }
}

/* === v0.6.84: kompakte Reader-Toolbar und freier Abschlussbereich === */

.sample-reader-toolbar {
  gap: .55rem .8rem;
  padding: .55rem .75rem;
  transition:
    opacity .16s ease,
    transform .16s ease,
    visibility .16s ease;
}

.sample-reader-toolbar.is-reader-finished {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-.45rem);
}

.sample-reader-progress {
  font-size: .96rem;
  line-height: 1.25;
}

.sample-reader-progress-track {
  margin-top: .28rem;
}

.sample-reader-toc-details summary {
  min-height: 40px;
  padding: .42rem .58rem;
  font-size: .94rem;
  line-height: 1.2;
  white-space: nowrap;
}

#newsletter-anmeldung {
  scroll-margin-top: 82px;
}

@media (max-width: 760px) {
  .sample-reader-toolbar {
    top: 64px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .4rem .55rem;
    padding: .5rem .65rem;
  }

  .sample-reader-progress {
    font-size: .91rem;
  }

  .sample-reader-progress-track {
    margin-top: .22rem;
  }

  .sample-reader-toc-details {
    width: auto;
  }

  .sample-reader-toc-details summary {
    width: auto;
    min-height: 40px;
    padding: .4rem .5rem;
    font-size: .9rem;
  }

  .sample-reader-toc {
    position: absolute;
    right: 0;
    left: auto;
    width: min(82vw, 270px);
    max-height: 52vh;
    margin-top: .35rem;
    overflow-y: auto;
  }

  .sample-reader-resume {
    grid-column: 1 / -1;
  }

  #newsletter-anmeldung {
    scroll-margin-top: 76px;
  }
}

/* === v0.6.85: Reader-Toolbar-Regressionsfix === */

#leseprobe-ende {
  scroll-margin-top: 76px;
}

@media (max-width: 760px) {
  #leseprobe-ende {
    scroll-margin-top: 70px;
  }
}

/* === v0.6.86: Reader-Toolbar-Baseline === */

.sample-reader-status,
.sample-reader-toc-details {
  align-self: center;
}

.sample-reader-toc-details summary {
  display: flex;
  align-items: center;
}

@media (max-width: 760px) {
  .sample-reader-progress {
    display: flex;
    min-height: 40px;
    align-items: center;
  }

  .sample-reader-toc-details summary {
    min-height: 40px;
    transform: translateY(1px);
  }
}

/* === v0.6.87: Reader-Toolbar-Zeilenausrichtung === */

/*
  Der Statusblock enthält zusätzlich die Fortschrittsleiste und ist deshalb
  höher als der geschlossene Details-Block. Beide Spalten werden am oberen
  Rand statt als Gesamtblöcke mittig ausgerichtet.
*/
.sample-reader-toolbar {
  align-items: start;
}

.sample-reader-status,
.sample-reader-toc-details {
  align-self: start;
}

@media (max-width: 760px) {
  .sample-reader-progress,
  .sample-reader-toc-details summary {
    min-height: 40px;
    font-size: .91rem;
    line-height: 1.25;
  }

  .sample-reader-toc-details summary {
    transform: none;
  }
}

/* === v0.6.88: Reader-Abstand oben === */

@media (max-width: 760px) {
  .sample-reading-section {
    padding-top: 3rem;
  }
}

/* === v0.6.89: Abstand Toolbar zu Kapitel === */

@media (max-width: 760px) {
  .sample-reader-toolbar {
    margin-bottom: 1rem;
  }

  .sample-reader-toolbar + .sample-chapter {
    padding-top: .75rem;
  }
}

/* === v0.6.90: oberer Innenabstand der Reader-Toolbar === */

@media (max-width: 760px) {
  /*
    Rücknahme der zuvor missverstandenen Außenabstandsänderungen.
  */
  .sample-reading-section {
    padding-top: var(--section-py);
  }

  .sample-reader-toolbar {
    margin-bottom: 2rem;
  }

  .sample-reader-toolbar + .sample-chapter {
    padding-top: clamp(2rem, 5vw, 4rem);
  }

  /*
    Gemeinter Abstand:
    Oberkante der Sticky-Toolbar bis zur Beschriftungszeile.
  */
  .sample-reader-toolbar {
    padding: .25rem .65rem .5rem;
  }

  .sample-reader-progress,
  .sample-reader-toc-details summary {
    min-height: 32px;
    line-height: 1.2;
  }

  .sample-reader-toc-details summary {
    padding-block: 0;
  }
}

/* === v0.6.91: Reader-Conversion nach Kapitel 1, 3 und 6 === */

.sample-conversion-note {
  width: 100%;
  max-width: 66ch;
  margin: clamp(1.75rem, 4vw, 2.75rem) auto;
  padding: 1rem 1.15rem;
  border-top: 1px solid var(--bg-warm-mid);
  border-bottom: 1px solid var(--bg-warm-mid);
  background: transparent;
}

.sample-conversion-kicker {
  margin: 0 0 .35rem;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.sample-conversion-note h3,
.sample-conversion-card h3 {
  margin: 0 0 .65rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
}

.sample-conversion-note > p:not(.sample-conversion-kicker) {
  margin: 0 0 .7rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.sample-conversion-text-link,
.sample-conversion-continue {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--accent);
  font-weight: 700;
  line-height: 1.4;
}

.sample-conversion-text-link:hover,
.sample-conversion-text-link:focus-visible,
.sample-conversion-continue:hover,
.sample-conversion-continue:focus-visible {
  color: var(--navy);
}

.sample-conversion-card {
  text-align: left;
}

.sample-conversion-card .sample-conversion-kicker {
  max-width: none;
  margin: 0 0 .35rem;
  color: var(--accent);
}

.sample-conversion-card h3 {
  max-width: 28ch;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.sample-conversion-card > p:not(.sample-conversion-kicker) {
  max-width: 54ch;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.sample-conversion-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem 1rem;
  margin-top: 1rem;
}

@media (max-width: 760px) {
  .sample-conversion-note {
    margin-block: 1.35rem;
    padding: .9rem .2rem;
  }

  .sample-conversion-card {
    padding: 1.1rem;
  }

  .sample-conversion-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sample-conversion-actions .btn,
  .sample-conversion-continue {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* === v0.6.92: Reader-Conversion-UX === */

/*
  Im erweiterten Reader übernimmt die Sticky-Toolbar die Kapitelübersicht.
  Die alten Navigationszugänge werden deshalb nur im JS-Reader ausgeblendet.
  Ohne JavaScript bleiben sie als progressive Fallbacks verfügbar.
*/
html.reader-enhanced .chapter-overview-link,
html.reader-enhanced .sample-floating-toc {
  display: none !important;
}

html.reader-enhanced .chapter-reader-nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

html.reader-enhanced .chapter-reader-nav--first {
  grid-template-columns: 1fr;
}

html.reader-enhanced .chapter-reader-nav--first .chapter-reader-next {
  width: 100%;
  justify-self: stretch;
}

/* Kapitel 1: nur eine kompakte, leseflussnahe Hinweiszeile. */
.sample-conversion-inline {
  width: 100%;
  max-width: 66ch;
  margin: 1.25rem auto;
  padding: .8rem 0;
  border-top: 1px solid var(--bg-warm-mid);
  border-bottom: 1px solid var(--bg-warm-mid);
}

.sample-conversion-inline p {
  margin: 0;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.55;
}

.sample-conversion-inline strong {
  color: var(--navy);
}

.sample-conversion-inline a {
  display: inline;
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

.sample-conversion-inline a:hover,
.sample-conversion-inline a:focus-visible {
  color: var(--navy);
}

/* Kapitel 3: mittlere Intensität, aber weniger vertikale Last. */
.sample-conversion-card {
  padding-block: clamp(1.25rem, 3vw, 1.75rem);
}

.sample-conversion-card > p:not(.sample-conversion-kicker) {
  max-width: 46ch;
}

.sample-conversion-card .sample-conversion-actions {
  margin-top: .8rem;
}

@media (max-width: 760px) {
  html.reader-enhanced .chapter-reader-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html.reader-enhanced .chapter-reader-nav--first {
    grid-template-columns: 1fr;
  }

  .sample-conversion-inline {
    margin-block: 1rem;
    padding: .7rem 0;
  }

  .sample-conversion-inline p {
    font-size: .9rem;
  }

  .sample-conversion-card {
    padding: .95rem;
  }

  .sample-conversion-card h3 {
    margin-bottom: .5rem;
  }

  .sample-conversion-card > p:not(.sample-conversion-kicker) {
    line-height: 1.55;
  }
}

/* === v0.6.93: Hannover-Landingpage === */

.hannover-page {
  background: var(--bg);
}

.hannover-campaign-hero {
  position: relative;
  min-height: clamp(620px, 78vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

.hannover-campaign-hero-picture,
.hannover-campaign-hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hannover-campaign-hero-picture img {
  object-fit: cover;
  object-position: center 56%;
}

.hannover-campaign-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9,17,34,.92) 0%, rgba(9,17,34,.78) 42%, rgba(9,17,34,.26) 72%, rgba(9,17,34,.16) 100%),
    linear-gradient(0deg, rgba(9,17,34,.55) 0%, transparent 42%);
}

.hannover-campaign-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.hannover-campaign-hero-copy {
  max-width: 720px;
  color: var(--white);
}

.hannover-campaign-eyebrow {
  margin-bottom: .75rem;
  color: #f0d7a8;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hannover-campaign-hero h1 {
  max-width: 13ch;
  margin: 0 0 1rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.25rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.hannover-campaign-lead {
  max-width: 52ch;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.93);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hannover-campaign-genre {
  margin-bottom: 1.4rem;
  color: #f4dfc0;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1.55;
}

.hannover-campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.hannover-campaign-secondary {
  border-color: rgba(255,255,255,.86);
  color: var(--white);
  background: rgba(9,17,34,.22);
}

.hannover-campaign-secondary:hover,
.hannover-campaign-secondary:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.hannover-campaign-note {
  margin-top: .85rem;
  color: rgba(255,255,255,.82);
  font-size: .86rem;
}

.hannover-campaign-image-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding-right: max(var(--pad-x), 1rem);
  padding-left: max(var(--pad-x), 1rem);
  font-size: .74rem;
}

.hannover-campaign-section {
  padding: var(--section-py) 0;
}

.hannover-campaign-section--warm {
  background: var(--bg-warm);
}

.hannover-campaign-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hannover-campaign-split--reverse .hannover-campaign-figure {
  order: 2;
}

.hannover-campaign-figure {
  overflow: hidden;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.hannover-campaign-picture,
.hannover-campaign-picture img {
  width: 100%;
}

.hannover-campaign-picture img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hannover-campaign-figure figcaption {
  padding: .72rem .9rem;
  background: var(--white);
}

.hannover-campaign-copy > p:not(.section-label, .hannover-campaign-transparency) {
  margin-bottom: .9rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hannover-campaign-copy .btn {
  margin-top: .85rem;
}

.hannover-campaign-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.25rem 0 .4rem;
}

.hannover-campaign-tags li {
  padding: .42rem .7rem;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.3;
}

.hannover-campaign-transparency {
  margin-top: 1.15rem;
  padding: .9rem 1rem;
  border-left: 3px solid var(--gold);
  background: var(--gold-light);
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.65;
}

.hannover-campaign-divider {
  position: relative;
  min-height: clamp(340px, 48vw, 570px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

.hannover-campaign-divider-picture,
.hannover-campaign-divider-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hannover-campaign-divider-picture img {
  object-fit: cover;
  object-position: center 54%;
}

.hannover-campaign-divider-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9,17,34,.9) 0%, rgba(9,17,34,.5) 54%, rgba(9,17,34,.24) 100%),
    linear-gradient(0deg, rgba(9,17,34,.5), transparent 62%);
}

.hannover-campaign-divider-copy {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: .98;
}

.hannover-campaign-divider-copy p,
.hannover-campaign-divider-copy strong {
  display: block;
}

.hannover-campaign-divider-copy strong {
  color: #f2d29a;
  font-weight: 500;
}

.hannover-campaign-newsletter-section {
  padding: var(--section-py) 0;
  background: var(--bg-warm);
}

.hannover-campaign-newsletter-intro {
  max-width: 740px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.hannover-campaign-newsletter-intro .section-label {
  justify-content: center;
}

.hannover-campaign-newsletter-intro > p:not(.section-label) {
  color: var(--text-muted);
  line-height: 1.7;
}

.hannover-newsletter-card {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.hannover-newsletter-card .newsletter-local-copy h2 {
  margin-bottom: .7rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
}

.hannover-newsletter-card .newsletter-local-copy > p:not(.section-label) {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hannover-campaign-closing {
  padding: var(--section-py) 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.hannover-campaign-closing-inner {
  max-width: 820px;
}

.hannover-campaign-closing .section-label {
  justify-content: center;
  color: #f2d29a;
}

.hannover-campaign-closing h2 {
  margin-bottom: .8rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 500;
  line-height: 1;
}

.hannover-campaign-closing p:not(.section-label) {
  margin-bottom: 1.4rem;
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
}

.hannover-campaign-actions--center {
  justify-content: center;
}

.hannover-campaign-closing .btn-secondary {
  border-color: rgba(255,255,255,.8);
  color: var(--white);
}

.hannover-campaign-closing .btn-secondary:hover,
.hannover-campaign-closing .btn-secondary:focus-visible {
  background: var(--white);
  color: var(--navy);
}

.home-hannover-teaser .hannover-content .btn {
  margin-top: 1rem;
}

@media (max-width: 860px) {
  .hannover-campaign-split,
  .hannover-campaign-split--reverse {
    grid-template-columns: 1fr;
  }

  .hannover-campaign-split--reverse .hannover-campaign-figure {
    order: 0;
  }
}

@media (max-width: 760px) {
  .hannover-campaign-hero {
    min-height: 690px;
    align-items: end;
  }

  .hannover-campaign-hero-picture img {
    object-position: 62% center;
  }

  .hannover-campaign-hero-overlay {
    background:
      linear-gradient(0deg, rgba(9,17,34,.96) 0%, rgba(9,17,34,.8) 48%, rgba(9,17,34,.2) 100%);
  }

  .hannover-campaign-hero-inner {
    padding-top: 13rem;
    padding-bottom: 4.8rem;
  }

  .hannover-campaign-hero h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .hannover-campaign-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hannover-campaign-actions .btn {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }

  .hannover-campaign-section {
    padding-block: 3.25rem;
  }

  .hannover-campaign-figure figcaption {
    font-size: .74rem;
  }

  .hannover-campaign-picture img {
    aspect-ratio: 4 / 3;
  }

  .hannover-campaign-tags {
    gap: .45rem;
  }

  .hannover-campaign-divider {
    min-height: 430px;
  }

  .hannover-campaign-divider-picture img {
    object-position: 56% center;
  }

  .hannover-campaign-divider-copy {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

  .hannover-newsletter-card {
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hannover-page .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* === v0.6.94: Hannover-Bildhinweise im Bild === */

/*
  Alle Bildhinweise der Hannover-Landingpage sitzen direkt unten links
  innerhalb des jeweiligen Motivs. Keine zusätzliche weiße Fläche.
*/
.hannover-page .hannover-campaign-figure {
  position: relative;
}

.hannover-page .hannover-campaign-figure figcaption.ai-image-disclosure,
.hannover-page .hannover-campaign-image-label.ai-image-disclosure--direct {
  position: absolute;
  z-index: 4;
  right: auto;
  bottom: .62rem;
  left: .78rem;
  width: auto;
  max-width: calc(100% - 1.56rem);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  color: rgba(255,255,255,.58) !important;
  font-size: .69rem;
  font-weight: 400 !important;
  line-height: 1.35;
  letter-spacing: .005em;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0,0,0,.34) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Der Hinweis belegt keinen eigenen Bereich unterhalb des Bildes. */
.hannover-page .hannover-campaign-figure figcaption.ai-image-disclosure {
  inset-inline-end: auto;
}

/* Bestehende direkte Label-Regel auf eine kleine linke Textzeile begrenzen. */
.hannover-page .hannover-campaign-image-label {
  right: auto;
  left: .78rem;
  padding-right: 0;
  padding-left: 0;
}

/* Auf helleren Bildbereichen etwas zurückhaltender, aber weiterhin lesbar. */
.hannover-page .hannover-campaign-figure::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3.2rem;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    rgba(8,15,28,.20) 0%,
    rgba(8,15,28,.08) 58%,
    transparent 100%
  );
}

.hannover-page .hannover-campaign-figure picture,
.hannover-page .hannover-campaign-figure img {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .hannover-page .hannover-campaign-figure figcaption.ai-image-disclosure,
  .hannover-page .hannover-campaign-image-label.ai-image-disclosure--direct {
    bottom: .5rem;
    left: .62rem;
    max-width: calc(100% - 1.24rem);
    font-size: .64rem;
    line-height: 1.3;
  }

  .hannover-page .hannover-campaign-image-label {
    left: .62rem;
  }
}

/* === v0.6.95: Worttrennung „Immer“ verhindern === */

.hannover-page .no-break-word {
  white-space: nowrap;
  hyphens: none;
  -webkit-hyphens: none;
}
/* === v0.6.96: Hannover in Hauptnavigation === */
.nav-main a[aria-current="page"],
.nav-main a.is-active {
  color: var(--accent);
}
.nav-main a[aria-current="page"]::after,
.nav-main a.is-active::after {
  width: 100%;
}

/* === v0.7.0: Hannover-Hero-Bildausschnitt === */

/*
  Desktop: mehr Balance zwischen Himmel, Eckhaus und Café.
  Tablet/Mobile: Motiv schrittweise nach rechts führen, damit das
  beleuchtete Eckhaus im schmalen Hochformat erhalten bleibt.
*/
.hannover-page .hannover-campaign-hero-picture img {
  object-position: 55% 52%;
}

@media (max-width: 980px) {
  .hannover-page .hannover-campaign-hero-picture img {
    object-position: 60% 51%;
  }
}

@media (max-width: 760px) {
  .hannover-page .hannover-campaign-hero-picture img {
    object-position: 64% 50%;
  }
}

@media (max-width: 420px) {
  .hannover-page .hannover-campaign-hero-picture img {
    object-position: 66% 50%;
  }
}

/* === v0.7.5: Reader-Schriftgrößensteuerung === */

.sample-reader-toc-panel {
  position: absolute;
  z-index: 4;
  right: 0;
  top: calc(100% + .45rem);
  display: grid;
  width: min(300px, calc(100vw - 2rem));
  min-width: 260px;
  max-height: min(72vh, 620px);
  overflow-y: auto;
  padding: .55rem;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 5px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.sample-reader-toc-panel .sample-reader-toc {
  position: static;
  right: auto;
  top: auto;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sample-reader-font-size {
  margin-top: .55rem;
  padding: .8rem .55rem .55rem;
  border-top: 1px solid var(--bg-warm-mid);
}

.sample-reader-font-size[hidden] {
  display: none !important;
}

.sample-reader-font-size-label {
  margin: 0 0 .55rem;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 700;
}

.sample-reader-font-size-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .4rem;
}

.sample-reader-font-size-buttons button {
  min-width: 0;
  min-height: 44px;
  padding: .55rem .35rem;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 4px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.sample-reader-font-size-buttons button:hover,
.sample-reader-font-size-buttons button:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.sample-reader-font-size-buttons button[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

/*
  Nur der Kapitel-Fließtext wird skaliert.
  Standard erhält exakt die bisherigen CSS-Werte.
*/
.sample-reading-section[data-reader-font-size="small"] .sample-prose p,
.sample-reading-section[data-reader-font-size="small"] .sample-prose blockquote {
  font-size: clamp(.95625rem, 1.8vw, 1.0125rem);
}

.sample-reading-section[data-reader-font-size="large"] .sample-prose p,
.sample-reading-section[data-reader-font-size="large"] .sample-prose blockquote {
  font-size: clamp(1.25375rem, 2.36vw, 1.3275rem);
}

@media (max-width: 340px) {
  .sample-reader-toc-panel {
    width: calc(100vw - 1rem);
    min-width: 0;
  }

  .sample-reader-font-size-buttons button {
    font-size: .76rem;
  }
}

/* === v0.7.6: Seiteneinstiegs-Konsistenz === */

/*
  Autorenseite an die redaktionellen Seiteneinstiege angleichen.
  Die H1 bleibt semantisch korrekt und erhält die Display-Schrift.
*/
.about-section {
  padding: clamp(6.5rem, 10vw, 9rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.about-content h1 {
  max-width: 100%;
  margin: .35rem 0 1rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 4.3rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.025em;
}

.about-content p {
  font-weight: 400;
}

/*
  Zentrale Seiteneinstiegs-H1 werden nur an Wortgrenzen umbrochen.
  Automatische Trennungen wie „Liebesgeschich-ten“ sind deaktiviert.
*/
.hero h1,
.role-page-hero h1,
.sample-hero h1,
.book-detail-hero h1,
.about-section h1,
.hannover-campaign-hero h1 {
  max-width: 15ch;
  -webkit-hyphens: none;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

/*
  Lange Kampagnenwörter benötigen auf schmalen Geräten mehr reale Breite.
  Die Größen bleiben deutlich, ohne in den Viewport zu laufen.
*/
@media (max-width: 760px) {
  .about-section {
    padding-top: 5.5rem;
  }

  .role-page-hero .role-page-intro h1 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .hannover-campaign-hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 12.5vw, 3.7rem);
  }
}

@media (max-width: 340px) {
  .role-page-hero .role-page-intro h1 {
    font-size: 2.25rem;
  }

  .hannover-campaign-hero h1 {
    font-size: 2.65rem;
  }
}

/* === v0.7.7: Hannover-Interlinking und Startseiten-CTA === */

/* P1: Der bestehende CTA muss auf dem dunklen Rathausmotiv klar sichtbar sein. */
.home-hannover-teaser .home-hannover-cta {
  margin-top: 1.4rem;
  border-color: #fff;
  background: rgba(10,22,47,.22);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.home-hannover-teaser .home-hannover-cta:hover,
.home-hannover-teaser .home-hannover-cta:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

/* Zwei klar getrennte Wege im Reihenabschluss, ohne den Hero zu überladen. */
.series-next-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .7rem;
}

.series-next-actions .btn {
  flex: 0 1 auto;
}

/* Bücherseite: zusätzlicher Kontextlink erst am Ende des Reihenabschnitts. */
.contextual-link-row {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

/* Autorenseite: bewusster Textlink statt zusätzlichem gleichrangigem Button. */
.author-context-link {
  margin-top: -.15rem;
  margin-bottom: 1.35rem;
}

.contextual-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .22em;
}

.contextual-text-link:hover,
.contextual-text-link:focus-visible {
  color: var(--accent-hover);
}

@media (max-width: 760px) {
  .home-hannover-teaser .home-hannover-cta {
    width: 100%;
    justify-content: center;
  }

  .series-next-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .series-next-actions .btn,
  .contextual-link-row .btn {
    width: 100%;
  }

  .contextual-link-row {
    align-items: stretch;
  }
}

/* === v0.8.0: Café Treppenlicht als Reihenwelt-Schauplatz === */
@media (max-width: 760px) {
  .hannover-campaign-picture--cafe img {
    aspect-ratio: 4 / 3;
  }
}
/* === v0.9.0: Newsletter-Landingpage-Prototyp === */

.newsletter-page {
  background:
    radial-gradient(circle at 14% 9%, rgba(240,196,182,.34), transparent 24rem),
    var(--bg);
}

.newsletter-page main {
  overflow: hidden;
}

.newsletter-page .newsletter-hero,
.newsletter-page .newsletter-benefits,
.newsletter-page .newsletter-expectation,
.newsletter-page .newsletter-trust,
.newsletter-page .newsletter-signup-section,
.newsletter-page .newsletter-steps,
.newsletter-page .newsletter-final-cta {
  scroll-margin-top: 5rem;
}

.newsletter-hero {
  padding: clamp(3rem, 7vw, 6.75rem) 0 clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--bg-warm-mid);
}

.newsletter-hero-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

.newsletter-hero-copy {
  max-width: 46rem;
}

.newsletter-hero h1,
.newsletter-confirmation-copy h1 {
  margin: 0;
  max-width: 13ch;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 5.25rem);
  font-weight: 430;
  letter-spacing: -.035em;
  line-height: .98;
}

.newsletter-hero h1 > span {
  display: block;
}

.newsletter-brand-word {
  white-space: nowrap;
  font-size: .69em;
  letter-spacing: -.02em;
}

.newsletter-hero-accent {
  color: var(--accent);
}

.newsletter-hero-lead {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: var(--text);
  font-size: clamp(1.08rem, 2.5vw, 1.3rem);
  line-height: 1.65;
}

.newsletter-hero-book-note {
  max-width: 40rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: .98rem;
}

.newsletter-hero-actions,
.newsletter-final-actions,
.newsletter-confirmation-actions {
  display: grid;
  gap: .8rem;
  margin-top: 1.75rem;
}

.newsletter-hero-actions .btn,
.newsletter-final-actions .btn,
.newsletter-confirmation-actions .btn {
  width: 100%;
  min-height: 48px;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.newsletter-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .7rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: .85rem;
}

.newsletter-trust-line li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.newsletter-trust-line li:not(:last-child)::after {
  content: "·";
  color: var(--gold);
}

.newsletter-hero-visual,
.newsletter-confirmation-visual {
  width: min(78vw, 21rem);
  margin: 0 auto;
}

.newsletter-hero-visual img,
.newsletter-confirmation-visual img {
  width: 100%;
  filter: drop-shadow(0 20px 32px rgba(26,24,37,.18));
}

.newsletter-hero-visual figcaption {
  margin-top: .8rem;
  color: var(--text-muted);
  font-size: .8rem;
  line-height: 1.5;
  text-align: center;
}

.newsletter-benefits,
.newsletter-trust,
.newsletter-steps {
  padding: var(--section-py) 0;
}

.newsletter-section-intro {
  max-width: 45rem;
  margin-bottom: 2rem;
}

.newsletter-section-intro > p:last-child {
  max-width: 42rem;
  color: var(--text-muted);
}

.newsletter-benefit-grid,
.newsletter-trust-grid {
  display: grid;
  gap: 1rem;
}

.newsletter-benefit-card,
.newsletter-trust-item {
  position: relative;
  padding: 1.4rem;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-card);
}

.newsletter-benefit-card {
  min-height: 13rem;
}

.newsletter-card-number {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .12em;
}

.newsletter-benefit-card h3,
.newsletter-trust-item h3,
.newsletter-form-gate h3,
.newsletter-doi-state h3,
.newsletter-step-list h3 {
  margin-bottom: .55rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 520;
  line-height: 1.15;
}

.newsletter-benefit-card p,
.newsletter-trust-item p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
}

.newsletter-expectation {
  padding: var(--section-py) 0;
  background: var(--navy);
}

.newsletter-expectation-grid {
  display: grid;
  gap: 2rem;
}

.newsletter-expectation .section-label {
  color: var(--accent-light);
}

.newsletter-expectation .section-label::before {
  background: var(--accent-light);
}

.newsletter-expectation .section-heading {
  color: var(--white);
}

.newsletter-expectation-copy {
  color: rgba(255,255,255,.86);
}

.newsletter-expectation-copy p + p {
  margin-top: 1rem;
}

.newsletter-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.4rem;
}

.newsletter-tag-list li {
  padding: .45rem .72rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: .78rem;
  line-height: 1.3;
}

.newsletter-trust {
  background: var(--bg-warm);
}

.newsletter-trust-item {
  background: var(--white);
}

.newsletter-privacy-summary {
  margin-top: 1.35rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.72);
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.65;
}

.newsletter-privacy-summary a,
.newsletter-inline-link,
.newsletter-error-summary a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}

.newsletter-signup-section {
  padding: var(--section-py) 0;
}

.newsletter-signup-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.newsletter-signup-copy > p {
  max-width: 41rem;
  color: var(--text-muted);
}

.newsletter-signup-copy > p + p {
  margin-top: .85rem;
}

.newsletter-inline-link {
  display: inline-block;
  margin-top: 1rem;
}

.newsletter-form-gate {
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.newsletter-form-gate [data-newsletter-gate-intro] > p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}

.newsletter-prototype-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: .38rem .65rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--navy);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
}

.newsletter-form-status {
  min-height: 1.65rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: .88rem;
}

.newsletter-form-status.is-success {
  color: #35643d;
}

.newsletter-form-status.is-error {
  color: #9b2f2f;
  font-weight: 650;
}

.newsletter-local-form-shell {
  margin-top: 1rem;
}

.newsletter-form-ready-note {
  margin-bottom: 1.25rem;
  padding: .85rem 1rem;
  border-radius: 6px;
  background: var(--bg-warm);
  color: var(--text-muted);
  font-size: .88rem;
}

.newsletter-local-form {
  display: grid;
  gap: 1.25rem;
}

.newsletter-field label {
  display: block;
  margin-bottom: .45rem;
  color: var(--navy);
  font-weight: 650;
}

.newsletter-field input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: .75rem .85rem;
  border: 1.5px solid var(--bg-warm-mid);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  font: inherit;
}

.newsletter-field input[type="email"]:focus-visible,
.newsletter-consent input[type="checkbox"]:focus-visible {
  border-color: var(--navy);
  outline: 3px solid rgba(183,142,55,.32);
  outline-offset: 2px;
}

.newsletter-field input[aria-invalid="true"] {
  border-color: #9b2f2f;
}

.newsletter-field-help,
.newsletter-field-error {
  margin-top: .35rem;
  font-size: .8rem;
  line-height: 1.45;
}

.newsletter-field-help {
  color: var(--text-muted);
}

.newsletter-field-error {
  color: #9b2f2f;
  font-weight: 600;
}

.newsletter-consent {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: .55rem .7rem;
  align-items: start;
}

.newsletter-consent input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .2rem;
  accent-color: var(--accent);
}

.newsletter-consent label {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.55;
}

.newsletter-consent .newsletter-field-error {
  grid-column: 2;
  margin-top: -.25rem;
}

.newsletter-error-summary {
  margin-bottom: 1.25rem;
  padding: 1rem;
  border: 2px solid #9b2f2f;
  border-radius: 6px;
  background: #fff5f4;
}

.newsletter-error-summary h4 {
  margin-bottom: .45rem;
  color: #7a2525;
  font-size: .95rem;
}

.newsletter-error-summary ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.newsletter-error-summary li + li {
  margin-top: .3rem;
}

.newsletter-doi-state {
  padding: 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: var(--gold-light);
}

.newsletter-doi-state p + p {
  margin-top: .7rem;
}

.newsletter-doi-state .btn {
  margin-top: 1rem;
  white-space: normal;
}

.newsletter-prototype-note {
  color: var(--text-muted);
  font-size: .84rem;
  font-style: italic;
}

.newsletter-noscript {
  margin-top: 1rem;
  padding: .85rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-warm);
  color: var(--text-muted);
}

.newsletter-step-list {
  display: grid;
  gap: .9rem;
}

.newsletter-step-list > li {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  border-top: 1px solid var(--bg-warm-mid);
}

.newsletter-step-list > li > span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.newsletter-step-list p {
  color: var(--text-muted);
}

.newsletter-final-cta {
  padding: var(--section-py) 0;
  background: var(--bg-warm);
}

.newsletter-final-inner {
  max-width: 48rem;
  text-align: left;
}

.newsletter-final-inner h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 430;
  line-height: 1.05;
}

.newsletter-final-inner > p:not(.section-label) {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.newsletter-confirmation-hero {
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.newsletter-confirmation-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

.newsletter-confirmation-copy {
  max-width: 45rem;
}

.newsletter-confirmation-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.75rem, 9vw, 5rem);
}

.newsletter-confirmation-copy > p:not(.section-label, .newsletter-prototype-note) {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.newsletter-confirmation-copy .newsletter-prototype-badge {
  margin-bottom: 1.25rem;
}

.newsletter-confirmation-copy .newsletter-prototype-note {
  margin-top: 1.2rem;
}

@media (min-width: 620px) {
  .newsletter-hero-actions,
  .newsletter-final-actions,
  .newsletter-confirmation-actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
    align-items: center;
  }

  .newsletter-hero-actions .btn,
  .newsletter-final-actions .btn,
  .newsletter-confirmation-actions .btn {
    width: auto;
  }

  .newsletter-benefit-grid,
  .newsletter-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .newsletter-hero-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(17rem, .72fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .newsletter-hero-copy {
    order: 1;
  }

  .newsletter-hero-visual {
    order: 2;
    width: min(100%, 23rem);
  }

  .newsletter-benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .newsletter-expectation-grid,
  .newsletter-signup-layout {
    grid-template-columns: minmax(0, .9fr) minmax(26rem, 1.1fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .newsletter-trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .newsletter-final-inner {
    text-align: center;
  }

  .newsletter-final-inner .section-label {
    justify-content: center;
  }

  .newsletter-final-inner .section-label::before {
    display: none;
  }

  .newsletter-final-inner > p:not(.section-label) {
    margin-right: auto;
    margin-left: auto;
  }

  .newsletter-final-actions {
    justify-content: center;
  }

  .newsletter-confirmation-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(16rem, .75fr);
    gap: clamp(3rem, 8vw, 7rem);
  }

  .newsletter-confirmation-visual {
    width: min(100%, 21rem);
  }
}

@media (max-width: 619px) {
  .newsletter-hero h1 br,
  .newsletter-confirmation-copy h1 br {
    display: none;
  }

  .newsletter-form-gate .btn,
  .newsletter-doi-state .btn {
    width: 100%;
    min-height: 48px;
  }

  .newsletter-trust-line {
    display: grid;
    gap: .35rem;
  }

  .newsletter-trust-line li:not(:last-child)::after {
    display: none;
  }

  .newsletter-trust-line li::before {
    content: "—";
    color: var(--gold);
  }
}

@media (prefers-reduced-motion: reduce) {
  .newsletter-page *,
  .newsletter-page *::before,
  .newsletter-page *::after {
    scroll-behavior: auto !important;
  }
}
.newsletter-compatibility-card {
  margin: clamp(2rem, 5vw, 4rem) auto;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.newsletter-compatibility-card h2,
.newsletter-compatibility-card h3 {
  margin-bottom: .7rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.3rem);
  font-weight: 500;
  line-height: 1.15;
}

.newsletter-compatibility-card > p:not(.section-label),
.newsletter-compatibility-card .newsletter-local-copy > p:not(.section-label) {
  max-width: 46rem;
  color: var(--text-muted);
}

.newsletter-compatibility-card .btn {
  margin-top: 1rem;
  white-space: normal;
  min-height: 48px;
}

@media (max-width: 619px) {
  .newsletter-compatibility-card .btn {
    width: 100%;
  }
}

/* === v0.9.1: Newsletter Mobile-Verdichtung === */

.newsletter-signup-section {
  border-bottom: 1px solid var(--bg-warm-mid);
  background: rgba(255,255,255,.56);
}

.newsletter-signup-frequency {
  margin: .65rem 0 1rem;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 650;
}

.newsletter-benefit-note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: .9rem;
  font-style: italic;
}

.newsletter-trust-list {
  display: grid;
  gap: .8rem;
}

.newsletter-trust-list-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .75rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 7px;
  background: var(--white);
}

.newsletter-trust-check {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--navy);
  font-weight: 800;
  line-height: 1;
}

.newsletter-trust-list-item strong,
.newsletter-trust-list-item span {
  display: block;
}

.newsletter-trust-list-item strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.2;
}

.newsletter-trust-list-item span {
  margin-top: .2rem;
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.55;
}

@media (min-width: 620px) {
  .newsletter-trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .newsletter-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 619px) {
  .newsletter-hero {
    padding-top: 2.4rem;
    padding-bottom: 2.8rem;
  }

  .newsletter-hero-grid {
    gap: 1.5rem;
  }

  .newsletter-hero-lead {
    margin-top: 1.1rem;
  }

  .newsletter-hero-actions {
    margin-top: 1.35rem;
  }

  .newsletter-hero-visual {
    width: min(54vw, 12.5rem);
  }

  .newsletter-hero-visual figcaption {
    margin-top: .45rem;
    font-size: .74rem;
  }

  .newsletter-signup-section,
  .newsletter-benefits,
  .newsletter-trust,
  .newsletter-steps,
  .newsletter-final-cta {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .newsletter-signup-layout,
  .newsletter-expectation-grid {
    gap: 1.4rem;
  }

  .newsletter-section-intro {
    margin-bottom: 1.35rem;
  }

  .newsletter-benefit-grid {
    gap: .75rem;
  }

  .newsletter-benefit-card {
    min-height: 0;
    padding: 1.1rem;
  }

  .newsletter-card-number {
    margin-bottom: .55rem;
  }

  .newsletter-benefit-card h3 {
    font-size: 1.38rem;
  }

  .newsletter-expectation {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .newsletter-tag-list {
    gap: .4rem;
    margin-top: 1rem;
  }

  .newsletter-tag-list li {
    padding: .38rem .58rem;
    font-size: .73rem;
  }

  .newsletter-trust-list {
    gap: .65rem;
  }

  .newsletter-trust-list-item {
    padding: .85rem .9rem;
  }

  .newsletter-privacy-summary {
    margin-top: 1rem;
  }

  .newsletter-step-list {
    gap: .35rem;
  }

  .newsletter-step-list > li {
    grid-template-columns: 2.45rem 1fr;
    gap: .75rem;
    padding: .9rem .25rem;
  }

  .newsletter-step-list > li > span {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 1.05rem;
  }
}

/* === v0.9.2: bestehendes MailerLite-Formular auf der Newsletterseite === */

.newsletter-anchor-alias {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter-external-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: .38rem .65rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--navy);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
}

.newsletter-mailerlite-loader > h3 {
  margin-bottom: .55rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 520;
  line-height: 1.15;
}

.newsletter-mailerlite-loader .launch-reminder-privacy-note {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.65;
}

.newsletter-mailerlite-host {
  margin-top: 1rem;
}

.newsletter-mailerlite-fallback {
  margin-top: .9rem;
  padding: .8rem .9rem;
  border-left: 3px solid var(--accent);
  background: #fff5f4;
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.55;
}

.newsletter-mailerlite-fallback a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: .18em;
}

.newsletter-doi-reminder {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bg-warm-mid);
  color: var(--text-muted);
  font-size: .84rem;
  line-height: 1.6;
}

#newsletter-anmeldung.is-form-visible .newsletter-external-badge,
#newsletter-anmeldung.is-form-visible .newsletter-doi-reminder {
  display: none;
}

@media (max-width: 619px) {
  .newsletter-mailerlite-loader .btn {
    width: 100%;
    min-height: 48px;
  }
}

/* === v0.9.3: Footer-Bildhinweis wie Copyright === */
.footer-bottom .footer-ai-notice {
  color: inherit;
  font-size: inherit;
}

/* === v0.9.4: Autorenstimme als Zitat === */
.author-quote {
  position: relative;
  margin: 1.35rem 0 1.5rem;
  padding: 1.25rem 1.35rem 1.15rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-warm);
  color: var(--navy);
}

.author-quote p {
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2.1vw, 1.52rem);
  font-weight: 500;
  line-height: 1.48;
}

.author-quote footer {
  margin-top: .8rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.author-quote cite {
  font-style: normal;
}

@media (max-width: 768px) {
  .author-quote {
    margin: 1.2rem 0 1.35rem;
    padding: 1.05rem 1rem 1rem;
  }

  .author-quote p {
    font-size: 1.18rem;
    line-height: 1.52;
  }
}

/* === v0.9.5: Hannover-Newsletter ohne Textredundanzen === */
.hannover-campaign-newsletter-intro {
  margin-bottom: 1rem;
}

.hannover-newsletter-card .newsletter-local-copy {
  padding-bottom: .9rem;
}

.hannover-newsletter-card .hannover-newsletter-benefit {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.68;
}

@media (max-width: 760px) {
  .hannover-campaign-newsletter-intro {
    margin-bottom: .8rem;
  }

  .hannover-newsletter-card .newsletter-local-copy {
    padding-bottom: .75rem;
  }
}

/* === v0.9.6: finaler Copy- und Conversion-Cleanup === */
.newsletter-signup-section + .newsletter-benefits {
  border-top: 1px solid var(--bg-warm-mid);
}

.newsletter-form-gate .newsletter-mailerlite-loader {
  margin-top: 0;
}

.series-link-section .series-next-actions .btn-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

@media (max-width: 619px) {
  .series-link-section .series-next-actions {
    display: grid;
    gap: .7rem;
  }

  .series-link-section .series-next-actions .btn {
    width: 100%;
  }
}

/* === v0.10.0: Printinteresse auf der Newsletter-Danke-Seite === */
.print-interest-section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  border-top: 1px solid var(--bg-warm-mid);
  background: var(--bg-warm);
}

.print-interest-card {
  max-width: 48rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.print-interest-card h2 {
  max-width: 17ch;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 430;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.print-interest-card > p:not(.section-label, .print-interest-note) {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.print-interest-actions {
  margin-top: 1.5rem;
}

.print-interest-actions .btn {
  min-height: 48px;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.print-interest-note {
  margin-top: .7rem;
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.5;
}

.print-interest-navigation {
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--bg-warm-mid);
}

@media (max-width: 619px) {
  .print-interest-actions .btn {
    width: 100%;
  }
}

/* === v0.10.3: Bücherseite – Buch zuerst, Reihe zweitens === */
.role-page-hero .role-page-book-hook {
  max-width: 37rem;
  margin: 1rem 0 0;
  color: var(--text);
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
  font-weight: 500;
  line-height: 1.6;
}

.role-page-hero .role-page-book-context {
  max-width: 42rem;
  margin: .8rem 0 0;
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.65;
}

.role-page-hero .role-page-book-context + .role-page-actions {
  margin-top: 1.45rem;
}

/* =========================================================
   v0.10.8 – Zweifarbiger Buchtitel auf der Bücherseite
   ========================================================= */

.role-page-book-title .title-base {
  color: var(--navy);
}

.role-page-book-title .title-accent {
  color: var(--accent);
}

/* =========================================================
   v0.10.9 – Fester Titelumbruch nach „Zwischen uns“
   ========================================================= */

.role-page-book-title > .title-line {
  display: block;
}


/* v0.11.0 – Testlese-Preview */
.testreader-status-note{max-width:46rem;margin:1rem 0 0;color:var(--text-muted);line-height:1.65}

.testreader-section{padding:clamp(4rem,8vw,7rem) 0}
.testreader-section--soft{background:var(--surface-soft)}



.testreader-two-column{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(17rem,.8fr);gap:clamp(1.5rem,4vw,3.5rem);align-items:start}
.testreader-checklist{margin:1.5rem 0 0;padding-left:1.25rem}
.testreader-checklist li+li{margin-top:.7rem}
.testreader-steps{list-style:none;padding:0;margin:2rem 0 0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.testreader-steps>li{display:grid;grid-template-columns:3rem 1fr;gap:1rem;align-items:start;border:1px solid var(--border);border-radius:var(--radius-lg);background:var(--surface);padding:1.35rem}
.testreader-steps>li>span{font-weight:800;color:var(--accent);letter-spacing:.06em}
.testreader-steps h3{margin:0 0 .35rem}.testreader-steps p{margin:0}
@media(max-width:760px){.testreader-two-column,
.testreader-steps{grid-template-columns:1fr}}


/* v0.11.5 – Button-Beschriftungen immer zentriert */
.btn {
  justify-content: center;
  text-align: center;
}

/* v0.11.5A – Runde Icon-Badges */








/* =========================================================
   v0.12.0 – /testlesen Conversion-Patch
   Scope: .testreader-page only
   ========================================================= */

.testreader-page .testreader-conversion-hero {
  padding: clamp(5.25rem, 8vw, 7.25rem) 0 clamp(3.25rem, 6vw, 4.75rem);
}

.testreader-page .testreader-conversion-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 250px);
  grid-template-areas:
    "eyebrow cover"
    "title cover"
    "hook cover"
    "genre cover"
    "lead cover"
    "actions cover"
    "sample cover";
  gap: 0 2.5rem;
  align-items: start;
}

.testreader-page .testreader-hero-eyebrow { grid-area: eyebrow; }
.testreader-page .testreader-conversion-hero h1 {
  grid-area: title;
  max-width: 13ch;
  margin: .35rem 0 .8rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5.8vw, 4.75rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.03em;
}

.testreader-page .testreader-hero-hook {
  grid-area: hook;
  margin: .25rem 0 .45rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.15;
  font-weight: 600;
}

.testreader-page .testreader-hero-genre {
  grid-area: genre;
  margin: 0;
  color: var(--accent-hover);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.45;
}

.testreader-page .testreader-hero-genre-explainer {
  display: block;
  max-width: 62ch;
  margin-top: .3rem;
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.55;
}

.testreader-page .testreader-hero-lead {
  grid-area: lead;
  max-width: 58ch;
  margin: 1rem 0 0;
  color: var(--text);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.65;
}

.testreader-page .testreader-hero-cover {
  grid-area: cover;
  width: 100%;
  max-width: 240px;
  margin: 0;
  justify-self: end;
  align-self: center;
  box-shadow: var(--shadow-book);
}

.testreader-page .testreader-hero-cover img {
  display: block;
  width: 100%;
  height: auto;
}















.testreader-page .testreader-hero-actions {
  grid-area: actions;
  margin-top: 1.15rem;
}

.testreader-page .testreader-primary-cta {
  min-height: 50px;
  white-space: normal;
  line-height: 1.25;
}

.testreader-page .testreader-sample-link {
  grid-area: sample;
  margin: .55rem 0 0;
  font-size: .86rem;
}

.testreader-page .testreader-sample-link a,
.testreader-page .testreader-text-link {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(30,43,74,.35);
  text-underline-offset: .18em;
}

.testreader-page .testreader-sample-link a:hover,
.testreader-page .testreader-sample-link a:focus-visible,
.testreader-page .testreader-text-link:hover,
.testreader-page .testreader-text-link:focus-visible {
  color: var(--accent-hover);
  text-decoration-color: currentColor;
}

.testreader-page .testreader-section {
  padding: clamp(3.6rem, 7vw, 6rem) 0;
}

.testreader-page .testreader-section--soft {
  background: var(--bg-warm);
}



.testreader-page .testreader-privacy-card{
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.testreader-page .testreader-privacy-card p{
  margin-bottom: 0;
}









.testreader-page .testreader-expect-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1.75rem;
}

.testreader-page .testreader-expect-fact {
  padding: 1rem;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 8px;
  background: var(--white);
}

.testreader-page .testreader-expect-fact strong,
.testreader-page .testreader-expect-fact span {
  display: block;
}

.testreader-page .testreader-expect-fact strong {
  color: var(--navy);
}

.testreader-page .testreader-expect-fact span {
  margin-top: .25rem;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.4;
}







.testreader-page .testreader-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.testreader-page .testreader-checklist--conversion {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.testreader-page .testreader-checklist--conversion li {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.55;
}

.testreader-page .testreader-checklist--conversion li + li {
  margin-top: .65rem;
}

.testreader-page .testreader-checklist--conversion li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-hover);
  font-weight: 800;
}



.testreader-page .testreader-feedback-questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem 1.25rem;
  max-width: 900px;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.testreader-page .testreader-feedback-questions li {
  position: relative;
  padding: .8rem .9rem .8rem 2rem;
  border-bottom: 1px solid var(--bg-warm-mid);
  line-height: 1.45;
}

.testreader-page .testreader-feedback-questions li::before {
  content: "→";
  position: absolute;
  left: .55rem;
  color: var(--accent-hover);
  font-weight: 700;
}

.testreader-page .testreader-feedback-closing {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.testreader-page .testreader-steps--conversion {
  margin-top: 1.6rem;
}

.testreader-page .testreader-steps--conversion > li {
  border-color: var(--bg-warm-mid);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.testreader-page .testreader-rules-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.testreader-page .testreader-rules-grid > div > p:not(.section-label) {
  max-width: 65ch;
  line-height: 1.7;
}

.testreader-page .testreader-rule-note {
  color: var(--text-muted);
  font-size: .92rem;
}

.testreader-page .testreader-privacy-card h3 {
  margin: .2rem 0 .65rem;
  color: var(--navy);
}

.testreader-page .testreader-final-cta--conversion .newsletter-final-inner {
  max-width: 700px;
}

.testreader-page .testreader-final-cta--conversion .newsletter-final-actions {
  max-width: 470px;
  margin-inline: auto;
}



.testreader-page .testreader-sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  .testreader-page .testreader-expect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .testreader-page {
    padding-bottom: 4.75rem;
  }

  .testreader-page .testreader-conversion-hero {
    padding-top: 4.4rem;
    padding-bottom: 2.8rem;
  }

  .testreader-page .testreader-conversion-hero-grid {
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-areas:
      "eyebrow eyebrow"
      "title title"
      "cover hook"
      "cover genre"
      "lead lead"
      "actions actions"
      "sample sample";
    gap: 0 .85rem;
  }

  .testreader-page .testreader-conversion-hero h1 {
    max-width: none;
    margin-bottom: .8rem;
    font-size: clamp(2.15rem, 10.2vw, 3.1rem);
    line-height: 1;
  }

  .testreader-page .testreader-hero-cover {
    width: 72px;
    margin-top: .1rem;
    align-self: start;
    justify-self: start;
  }

  .testreader-page .testreader-hero-hook {
    margin: 0 0 .3rem;
    font-size: 1.12rem;
    line-height: 1.12;
  }

  .testreader-page .testreader-hero-genre {
    font-size: .8rem;
    line-height: 1.35;
  }

  .testreader-page .testreader-hero-lead {
    margin-top: .9rem;
    font-size: .98rem;
    line-height: 1.55;
  }

  

  

  

  

  .testreader-page .testreader-hero-actions {
    margin-top: .9rem;
  }

  .testreader-page .testreader-hero-actions .btn {
    width: 100%;
  }

  .testreader-page .testreader-section {
    padding: 3.25rem 0;
  }

  .testreader-page .testreader-two-column,
.testreader-page .testreader-rules-grid,
.testreader-page .testreader-feedback-questions,
.testreader-page .testreader-steps--conversion{
    grid-template-columns: 1fr;
  }

  

  .testreader-page .testreader-expect-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testreader-page .testreader-expect-fact {
    padding: .8rem;
  }

  .testreader-page .testreader-feedback-questions {
    gap: 0;
  }

  .testreader-page .testreader-sticky-cta {
    position: fixed;
    z-index: 80;
    left: 50%;
    bottom: calc(.65rem + env(safe-area-inset-bottom));
    display: block;
    width: min(calc(100% - 1.5rem), 360px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 125%);
    transition: opacity .2s ease, transform .25s ease, visibility .2s ease;
  }

  .testreader-page .testreader-sticky-cta.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .testreader-page .testreader-sticky-cta .btn {
    width: 100%;
    min-height: 50px;
    padding: .8rem 1rem;
    box-shadow: 0 7px 26px rgba(30,43,74,.22);
  }
}

@media (max-width: 360px) {
  .testreader-page .testreader-expect-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testreader-page .testreader-sticky-cta {
    transition: none;
  }
}

@media (max-width: 760px) {

  

  

  

  

  

  

  

}

@media (max-width: 360px) {
  .testreader-page .testreader-conversion-hero {
    padding-top: 4rem;
  }
  .testreader-page .testreader-hero-lead {
    margin-top: .7rem;
  }
  
  .testreader-page .testreader-hero-actions {
    margin-top: .7rem;
  }
}


/* =========================================================
   v0.12.1 – /testlesen Conversion Polish
   Scope: .testreader-page only
   ========================================================= */

.testreader-page .testreader-mid-cta {
  display: flex;
  justify-content: center;
  padding: 0 1rem 3.2rem;
}

.testreader-page .testreader-mid-cta .btn {
  min-width: min(100%, 360px);
}

@media (max-width: 760px) {
  .testreader-page .testreader-conversion-hero-grid {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .testreader-page .testreader-hero-cover {
    width: 92px;
  }

  .testreader-page .testreader-steps--conversion {
    gap: 0;
  }

  .testreader-page .testreader-steps--conversion > li {
    grid-template-columns: 2.35rem minmax(0, 1fr);
    gap: .7rem;
    padding: .95rem 0;
    border: 0;
    border-top: 1px solid var(--bg-warm-mid);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .testreader-page .testreader-steps--conversion > li:last-child {
    border-bottom: 1px solid var(--bg-warm-mid);
  }

  .testreader-page .testreader-steps--conversion > li > span {
    padding-top: .05rem;
    font-size: .88rem;
  }

  .testreader-page .testreader-steps--conversion h3 {
    margin-bottom: .2rem;
    font-size: 1rem;
  }

  .testreader-page .testreader-steps--conversion p {
    font-size: .94rem;
    line-height: 1.55;
  }
}

@media (max-width: 900px) {
  .testreader-page .testreader-mid-cta {
    display: none;
  }
}


/* =========================================================
   v0.12.2 – /testlesen Story & Character Layer
   Scope: .testreader-page only
   ========================================================= */

.testreader-page .testreader-story-copy {
  max-width: 820px;
  margin-top: 1.75rem;
}

.testreader-page .testreader-story-copy p {
  max-width: 72ch;
}

.testreader-page .testreader-story-copy p + p {
  margin-top: 1rem;
}





.testreader-page .testreader-character-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.testreader-page .testreader-character-card {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.testreader-page .testreader-character-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--navy);
}

.testreader-page .testreader-character-card--rafi::before {
  background: var(--accent);
}







.testreader-page .testreader-character-kicker {
  margin: 0;
  color: var(--text-muted);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
}





.testreader-page .testreader-expect-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .testreader-page .testreader-character-grid {
    grid-template-columns: 1fr;
  }

  .testreader-page .testreader-expect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .testreader-page .testreader-story-copy {
    margin-top: 1.35rem;
  }

  

  .testreader-page .testreader-character-grid {
    gap: .75rem;
    margin-top: 1.35rem;
  }

  .testreader-page .testreader-character-card {
    padding: 1.25rem 1.15rem 1.3rem 1.3rem;
    border-radius: 14px;
  }

  .testreader-page .testreader-expect-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   v0.12.3 – /testlesen Story & Character Photos Polish
   Scope: .testreader-page only
   ========================================================= */

.testreader-page .testreader-story-copy {
  max-width: 780px;
}

.testreader-page .testreader-story-copy p + p {
  margin-top: .9rem;
}

.testreader-page .testreader-character-card {
  display: grid;
  grid-template-columns: minmax(150px, 36%) minmax(0, 1fr);
  padding: 0;
  min-height: 240px;
}

.testreader-page .testreader-character-photo {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.testreader-page .testreader-character-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.testreader-page .testreader-character-card-body h3 {
  margin: .15rem 0 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.08;
}

.testreader-page .testreader-character-card--rafi .testreader-character-card-body h3 {
  color: var(--accent-hover);
}

.testreader-page .testreader-character-quote {
  margin: 1rem 0 0;
  padding: 0;
  border: 0;
  color: var(--text);
}

.testreader-page .testreader-character-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-style: italic;
  line-height: 1.35;
}

@media (max-width: 560px) {
  .testreader-page .testreader-character-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 154px;
    border-radius: 14px;
  }

  .testreader-page .testreader-character-photo {
    min-height: 154px;
  }

  .testreader-page .testreader-character-card-body {
    padding: 1rem .95rem;
  }

  .testreader-page .testreader-character-card-body h3 {
    font-size: 1.25rem;
  }

  .testreader-page .testreader-character-quote {
    margin-top: .65rem;
  }

  .testreader-page .testreader-character-quote p {
    font-size: 1.02rem;
    line-height: 1.32;
  }

  .testreader-page .testreader-expect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .6rem;
  }

  .testreader-page .testreader-expect-fact {
    padding: .7rem;
  }

  .testreader-page .testreader-expect-fact strong {
    font-size: .92rem;
    line-height: 1.25;
  }

  .testreader-page .testreader-expect-fact span {
    font-size: .78rem;
    line-height: 1.3;
  }
}

@media (max-width: 340px) {
  .testreader-page .testreader-character-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .testreader-page .testreader-character-card-body {
    padding: .9rem .8rem;
  }

  .testreader-page .testreader-character-quote p {
    font-size: .96rem;
  }
}


/* =========================================================
   v0.12.4 – /testlesen Content Cleanup & Character Contrast
   Scope: .testreader-page only
   ========================================================= */

.testreader-page .testreader-conversion-hero-grid {
  grid-template-areas:
    "eyebrow cover"
    "title cover"
    "hook cover"
    "genre cover"
    "lead cover"
    "actions cover"
    "sample cover";
}

.testreader-page .testreader-hero-actions {
  margin-top: 1.15rem;
}

.testreader-page .testreader-character-card--rafi {
  grid-template-columns: minmax(0, 1fr) minmax(150px, 36%);
}

.testreader-page .testreader-character-card--rafi .testreader-character-card-body {
  order: 1;
}

.testreader-page .testreader-character-card--rafi .testreader-character-photo {
  order: 2;
}

.testreader-page .testreader-fit-note {
  max-width: 66ch;
  margin: 1.25rem 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}





.testreader-page .testreader-final-cta--conversion {
  padding-top: clamp(2.2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.2rem, 5vw, 3.5rem);
}

@media (max-width: 760px) {
  .testreader-page .testreader-conversion-hero-grid {
    grid-template-areas:
      "eyebrow eyebrow"
      "title title"
      "cover hook"
      "cover genre"
      "lead lead"
      "actions actions"
      "sample sample";
  }

  .testreader-page .testreader-character-card,
  .testreader-page .testreader-character-card--rafi {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .testreader-page .testreader-character-photo,
  .testreader-page .testreader-character-card--rafi .testreader-character-photo {
    order: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    object-position: center 12%;
  }

  .testreader-page .testreader-character-card--nino .testreader-character-photo {
    object-position: center 10%;
  }

  .testreader-page .testreader-character-card--rafi .testreader-character-photo {
    object-position: center 14%;
  }

  .testreader-page .testreader-character-card-body,
  .testreader-page .testreader-character-card--rafi .testreader-character-card-body {
    order: 2;
  }

  
}

/* =========================================================
   v0.12.17 – /testlesen Visual Polish
   Scope: facts grid, free-participation note, mobile sticky CTA
   ========================================================= */

.testreader-page .testreader-expect-note {
  margin: .9rem 0 0;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.5;
}

/* Four balanced facts on desktop; 2x2 on tablet/mobile. */
.testreader-page .testreader-expect-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .testreader-page .testreader-expect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 340px) {
  .testreader-page .testreader-expect-grid {
    grid-template-columns: 1fr;
  }
}

/* Keep the mobile conversion affordance, but reduce visual obstruction. */
@media (max-width: 760px) {
  .testreader-page {
    padding-bottom: 4.25rem;
  }

  .testreader-page .testreader-sticky-cta {
    bottom: calc(.4rem + env(safe-area-inset-bottom));
    width: min(calc(100% - 2rem), 340px);
  }

  .testreader-page .testreader-sticky-cta .btn {
    min-height: 44px;
    padding: .62rem .85rem;
    font-size: .95rem;
    line-height: 1.2;
  }
}

/* =========================================================
   v0.12.18 – /testlesen Process Grid Polish
   Scope: process cards on desktop only
   ========================================================= */

@media (min-width: 901px) {
  .testreader-page .testreader-steps--conversion {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* =========================================================
   v0.12.19 – Global Button Consistency
   /testlesen primary CTAs intentionally use the global
   .btn-primary color system. No page-specific color override.
   ========================================================= */

/* === v0.12.22: SOCIAL LINKS === */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  padding: .55rem .75rem;
  border: 1px solid var(--bg-warm-mid);
  border-radius: 3px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  transition: color var(--trans), border-color var(--trans), background var(--trans);
}
.social-link:hover,
.social-link:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}
.social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.social-icon-dot {
  fill: currentColor;
  stroke: none;
}
.social-icon--facebook {
  fill: currentColor;
  stroke: none;
}

.footer-social {
  margin-top: .9rem;
}
.footer-social-label {
  display: block;
  margin-bottom: .35rem;
  color: rgba(255,255,255,.46);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.social-links--footer .social-link {
  min-height: 44px;
  padding: .45rem .6rem;
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.72);
  font-size: .8125rem;
}
.social-links--footer .social-link:hover,
.social-links--footer .social-link:focus-visible {
  border-color: var(--accent-light);
  color: var(--white);
}

.author-social {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bg-warm-mid);
}
.author-social-label {
  margin-bottom: .3rem !important;
  color: var(--navy) !important;
  font-size: .875rem !important;
  font-weight: 600 !important;
  letter-spacing: .03em;
}
.author-social-copy {
  margin-bottom: .75rem !important;
  font-size: .9375rem !important;
  color: var(--text-muted) !important;
}
.author-social-links {
  gap: .6rem;
}

@media (max-width: 760px) {
  .social-links--footer {
    gap: .4rem;
  }
  .social-links--footer .social-link {
    font-size: .9rem;
  }
}

/* === v0.12.29: dezente Manuskriptversion im Leseproben-Reader === */

.sample-reader-progress::after {
  content: " (V0.43)";
  display: inline-block;
  margin-left: .3rem;
  color: rgba(30, 43, 74, .30);
  font-size: .60em;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .01em;
  white-space: nowrap;
  vertical-align: baseline;
}

@media (max-width: 360px) {
  .sample-reader-progress::after {
    margin-left: .2rem;
    font-size: .52em;
  }
}

/* === v0.12.35: robuste temporäre Ausblendung ===
   Reversibel: Inhalte bleiben im HTML erhalten.
   Verhindert, dass bestehende display-Regeln das HTML-hidden überschreiben. */
[data-temporarily-hidden] {
  display: none !important;
}

/* === v0.12.39: KI-Transparenz === */
.ai-transparency-note {
  width: 100%;
  max-width: 68ch;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid var(--bg-warm-mid);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  background: var(--bg-warm);
  box-shadow: var(--shadow-card);
}

.ai-transparency-note .section-label {
  margin-bottom: .35rem;
}

.ai-transparency-note h2,
.ai-transparency-note h3 {
  margin: 0 0 .7rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.18;
}

.ai-transparency-note p {
  margin: 0 0 .75rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.ai-transparency-note .contextual-text-link {
  margin-top: .15rem;
}

.ai-image-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .3rem;
  width: 100%;
  min-height: 30px;
  margin-top: 0;
  padding: .3rem .45rem;
  color: var(--text-muted);
  font-size: .84rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.ai-image-caption a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: .18em;
}

.ai-image-caption a:hover,
.ai-image-caption a:focus-visible {
  color: var(--accent-hover);
}

/* === v0.12.44: compact reader KI note === */

.ai-transparency-note--reader {
  margin: clamp(1rem, 2.5vw, 1.6rem) auto clamp(1.75rem, 4vw, 2.5rem);
  padding: clamp(.9rem, 2vw, 1.1rem);
  border-left-width: 3px;
  box-shadow: none;
}

.ai-transparency-note--reader p {
  margin: 0 0 .35rem;
  font-size: .95rem;
  line-height: 1.6;
}

.ai-transparency-note--reader .contextual-text-link {
  margin-top: 0;
  font-size: .92rem;
}

/* === v0.12.48: Leseprobe CTA spacing === */
.sample-hero-copy > .hero-cta {
  margin-top: 1.25rem;
}
