:root {
  --bone: #F7F4EE;
  --bone-deep: #EFEAE0;
  --night: #1A2433;
  --sand: #C9B89A;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --rule: rgba(26,26,26,0.12);
  --serif: "Cormorant Garamond", "EB Garamond", Garamond, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--sand); color: var(--ink); }

/* — Navigation — */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: linear-gradient(to bottom, var(--bone) 60%, rgba(247,244,238,0));
  transition: padding 0.4s ease;
}
nav.top .mark { font-weight: 500; color: var(--ink); }
nav.top ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 36px;
}
nav.top a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}
nav.top a:hover { color: var(--ink); }

@media (max-width: 720px) {
  nav.top {
    padding: 14px 20px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: linear-gradient(to bottom, var(--bone) 85%, rgba(247,244,238,0.96));
  }
  nav.top .mark { font-size: 12px; }
  nav.top ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 10.5px;
    letter-spacing: 0.1em;
  }
}

/* — Layout primitives — */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.narrow {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .wrap { padding: 0 28px; }
}

section { padding: 160px 0; }
@media (max-width: 720px) { section { padding: 96px 0; } }

/* — Hero — */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
  padding: 180px 0 120px;
}
.hero .left { padding-right: 20px; }
.hero .author {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 56px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero .subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 96px;
}
.hero .note {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  max-width: 360px;
}
.hero .note a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: border-color 0.3s ease;
}
.hero .note a:hover { border-bottom-color: var(--ink); }

/* — Cover — */
.cover-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  background: var(--night);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 30px 60px -20px rgba(26,36,51,0.35),
    0 60px 120px -40px rgba(26,36,51,0.25);
  overflow: hidden;
  color: var(--bone);
  font-family: var(--serif);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14% 8% 9%;
}
/* placeholder painted cover — sky gradient + lake band */
.cover-frame::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      #0c1422 0%,
      #142136 32%,
      #1f3556 58%,
      #2d4d75 72%,
      #6b7d88 80%,
      #b9b39c 86%,
      #d8c9a8 92%,
      #c8b696 100%);
  z-index: 0;
}
.cover-frame::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 18%;
  height: 6%;
  background: linear-gradient(to bottom, rgba(40,55,75,0.55), rgba(120,130,130,0.25));
  filter: blur(2px);
  z-index: 0;
}
.cover-frame > * { position: relative; z-index: 1; }

/* Real cover image — overlays placeholder when present, removed on 404 */
.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.cover-author {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 19px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #EFE9DC;
  margin-bottom: auto;
}
.cover-eagle {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: rgba(247,244,238,0.85);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 18px,
    rgba(255,255,255,0.025) 18px 36px
  );
}
.cover-eagle span {
  opacity: 0.45;
  border: 1px solid rgba(247,244,238,0.25);
  padding: 6px 14px;
}
.cover-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F4EFE2;
  margin: 0 0 16px;
}
.cover-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(11px, 1.1vw, 13px);
  line-height: 1.45;
  color: rgba(244,239,226,0.85);
  max-width: 80%;
}

/* When the real image is loaded, hide the placeholder text overlays */
.cover-frame:has(.cover-img) .cover-author,
.cover-frame:has(.cover-img) .cover-eagle,
.cover-frame:has(.cover-img) .cover-title,
.cover-frame:has(.cover-img) .cover-sub { display: none; }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 140px 0 80px;
    min-height: auto;
  }
  .hero .left { padding-right: 0; order: 2; }
  .hero .right { order: 1; }
  .cover-frame { max-width: 320px; }
}

/* — Section heads — */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 56px;
  text-align: center;
}
.eyebrow .dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--sand);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 14px 3px;
}

/* — Worum es geht — */
.blurb {
  text-align: center;
}
.blurb p {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 1.6em;
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}
.blurb p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  padding: 0.08em 0.12em 0 0;
  color: var(--night);
  font-weight: 400;
}
.blurb .closing {
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 21px);
  color: var(--ink-soft);
  margin-top: 2em;
}

/* — Für wen — */
.audience {
  text-align: center;
}
.audience p {
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 30em;
  margin: 0 auto;
  text-wrap: pretty;
}

/* — Inhalt — */
.toc {
  max-width: 720px;
  margin: 0 auto;
}
.toc ol {
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: chapter;
}
.toc li {
  counter-increment: chapter;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}
.toc li:last-child { border-bottom: 1px solid var(--rule); }
.toc li::before {
  content: counter(chapter, upper-roman);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--sand);
  font-weight: 400;
}
.toc .title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
}

/* — Autor — */
.author-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 880px;
  margin: 0 auto;
}
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bone-deep);
  background-image:
    repeating-linear-gradient(135deg,
      transparent 0 14px,
      rgba(26,36,51,0.04) 14px 28px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.35);
  overflow: hidden;
}
.portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.portrait-fallback {
  position: relative;
  z-index: 1;
}
.portrait:has(.portrait-img) .portrait-fallback { display: none; }

.author-text p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.8;
  color: var(--ink);
  margin: 0 0 1.4em;
  text-wrap: pretty;
}
.author-text .name {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
@media (max-width: 800px) {
  .author-block { grid-template-columns: 1fr; gap: 48px; max-width: 480px; }
  .portrait { max-width: 240px; }
}

/* — Leseprobe — */
.excerpt {
  text-align: center;
}
.excerpt p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 1.8vw, 22px);
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.excerpt a {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: opacity 0.3s ease;
}
.excerpt a:hover { opacity: 0.6; }
.excerpt .meta {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* — Kontakt — */
.contact-wrap {
  max-width: 540px;
  margin: 0 auto;
}
form.contact {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 8px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field textarea {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 6px 0 10px;
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
}
.field textarea {
  min-height: 110px;
  line-height: 1.6;
}
.field input:focus,
.field textarea:focus { border-bottom-color: var(--night); }
button.send {
  align-self: flex-start;
  margin-top: 12px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 6px 2px 5px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink);
  cursor: pointer;
  transition: opacity 0.3s ease;
}
button.send:hover { opacity: 0.55; }
.form-status {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--ink-soft);
  margin: 0;
  min-height: 1em;
}
.form-noscript {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 24px;
}
.form-noscript a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}

/* — Footer — */
footer {
  padding: 80px 0 56px;
  border-top: 1px solid var(--rule);
  margin-top: 80px;
}
footer .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
footer a {
  color: var(--ink-soft);
  text-decoration: none;
  margin-right: 28px;
  transition: color 0.3s ease;
}
footer a:last-child { margin-right: 0; }
footer a:hover { color: var(--ink); }

/* — Fade-in on scroll — */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* — Quiet ornament — */
.ornament {
  display: block;
  width: 1px;
  height: 56px;
  background: var(--rule);
  margin: 0 auto;
}

/* ========================================================== */
/* — Multi-Page Erweiterungen — */
/* ========================================================== */

/* — Nav: Mark als Link, aktive Seite — */
nav.top a.mark { text-decoration: none; }
nav.top a.is-active { color: var(--ink); }

/* — Eyebrow links-bündig (Home-Hero, Legal) — */
.eyebrow.eyebrow--left { text-align: left; margin-bottom: 18px; }
.eyebrow.eyebrow--left .dot { margin-left: 0; margin-right: 14px; }

/* — Home-Hero: Foto links + Text rechts — */
.home-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
  padding: 180px 48px 120px;
  max-width: 1240px;
  margin: 0 auto;
}
.home-hero__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone-deep);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 30px 60px -20px rgba(26,36,51,0.35),
    0 60px 120px -40px rgba(26,36,51,0.20);
}
.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-hero__text { padding-left: 8px; }
.home-hero__text h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.005em;
  margin: 0 0 36px;
  color: var(--ink);
}
.lede {
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.7;
  color: var(--ink);
  max-width: 32em;
  margin: 0 0 1.4em;
  text-wrap: pretty;
}
.lede--soft { color: var(--ink-soft); }

@media (max-width: 900px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 130px 28px 80px;
    min-height: auto;
  }
  .home-hero__media { max-width: 420px; margin: 0 auto; }
}

/* — Book-Teaser auf Home — */
.book-teaser {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}
.book-teaser__cover {
  display: block;
  text-decoration: none;
  transition: transform 0.4s ease;
}
.book-teaser__cover:hover { transform: translateY(-3px); }
.book-teaser__cover img {
  width: 100%;
  height: auto;
  display: block;
}
.book-teaser__text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--ink);
}
.book-teaser__text .subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink-soft);
  margin: 0 0 32px;
}
.book-teaser__text p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.75;
  color: var(--ink);
  max-width: 30em;
  margin: 0 0 1.4em;
  text-wrap: pretty;
}
.cta-row { margin-top: 28px; }
.cta-link {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: opacity 0.3s ease;
}
.cta-link:hover { opacity: 0.55; }

@media (max-width: 800px) {
  .book-teaser {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 480px;
    text-align: center;
  }
  .book-teaser__cover { max-width: 240px; margin: 0 auto; }
  .book-teaser__text p { margin-left: auto; margin-right: auto; }
}

/* — Book-Hero: Text + Mockup — */
.book-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
  padding: 180px 48px 120px;
  max-width: 1240px;
  margin: 0 auto;
}
.book-hero__text { padding-right: 20px; }
.book-hero__text .author {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 56px;
}
.book-hero__text h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--ink);
}
.book-hero__text .subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 56px;
}
.book-hero__cover img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 480px;
  margin: 0 auto;
}
.isbn {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 36px 0 0;
}

/* — Buy Buttons — */
.buy-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 8px;
}
.buy {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px 28px;
  min-width: 240px;
  border: 1px solid var(--ink);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.buy:hover { transform: translateY(-1px); }
.buy--primary {
  background: var(--ink);
  color: var(--bone);
}
.buy--primary:hover {
  background: var(--night);
  border-color: var(--night);
}
.buy--secondary {
  background: transparent;
  color: var(--ink);
}
.buy--secondary:hover {
  background: var(--ink);
  color: var(--bone);
}
.buy__hint {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  opacity: 0.85;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .book-hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 130px 28px 80px;
    min-height: auto;
  }
  .book-hero__text { padding-right: 0; order: 2; }
  .book-hero__cover { order: 1; max-width: 280px; margin: 0 auto; }
  .book-hero__text h1 { font-size: clamp(40px, 11vw, 64px); }
  .book-hero__text .subtitle { margin-bottom: 40px; }

  .buy-buttons {
    gap: 12px;
    margin-bottom: 24px;
  }
  .buy {
    width: 100%;
    min-width: 0;
    padding: 16px 20px;
    text-align: center;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.12em;
    gap: 8px;
  }
  .buy__hint {
    font-size: 12.5px;
    line-height: 1.4;
    max-width: 26em;
  }
  .isbn { margin-top: 28px; text-align: center; }
}

/* — Kontakt (mailto only) — */
.contact-simple {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}
.contact-intro {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.contact-mail {
  margin: 0;
}
.contact-mail a {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}
.contact-mail a:hover { border-bottom-color: var(--ink); }

/* — Blog: Liste — */
.blog-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 160px 48px 120px;
}
.blog-list h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 64px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}
.post-card {
  border-top: 1px solid var(--rule);
  padding: 40px 0;
}
.post-list .post-card:last-child {
  border-bottom: 1px solid var(--rule);
}
.post-card a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.post-card a:hover { opacity: 0.7; }
.post-card time {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin: 0 0 14px;
}
.post-card h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--ink);
  text-wrap: balance;
}
.post-card__lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 36em;
  text-wrap: pretty;
}
.post-card__cta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.post-empty {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 19px;
}

@media (max-width: 720px) {
  .blog-list { padding: 120px 28px 80px; }
  .post-card { padding: 32px 0; }
}

/* — Blog: Einzel-Post — */
.blog-post {
  max-width: 680px;
  margin: 0 auto;
  padding: 160px 48px 120px;
}
.blog-post h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 20px;
  color: var(--ink);
  text-wrap: balance;
}
.blog-post .post-meta {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 48px;
}
.post-body {
  font-family: var(--serif);
}
.post-body p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 1.4em;
  text-wrap: pretty;
}
.post-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  margin: 2em 0 0.6em;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.post-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.25;
  margin: 1.8em 0 0.5em;
  color: var(--ink);
}
.post-body a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: border-color 0.3s ease;
}
.post-body a:hover { border-bottom-color: var(--ink); }
.post-body em { font-style: italic; }
.post-body strong { font-weight: 500; }
.post-body blockquote {
  margin: 1.6em 0;
  padding: 0 0 0 24px;
  border-left: 2px solid var(--sand);
  font-style: italic;
  color: var(--ink-soft);
}
.post-body ul, .post-body ol {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 1.4em;
  padding-left: 1.4em;
}
.post-body li { margin-bottom: 0.4em; }
.post-back {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}

@media (max-width: 720px) {
  .blog-post { padding: 120px 28px 80px; }
}

/* — Testimonial / Stimme — */
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 32px 32px;
  position: relative;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.testimonial::before {
  content: "\201C";
  display: block;
  font-family: var(--serif);
  font-size: 96px;
  line-height: 0.6;
  color: var(--sand);
  margin: 0 0 -8px;
  font-weight: 400;
}
.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 1.2em;
  text-wrap: pretty;
}
.testimonial p:last-of-type { margin-bottom: 1.6em; }
.testimonial__source {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 720px) {
  .testimonial { padding: 16px 16px 28px; }
  .testimonial::before { font-size: 72px; }
}

/* — Legal Pages — */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 160px 48px 120px;
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 56px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.legal-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.3;
  margin: 56px 0 16px;
  color: var(--ink);
}
.legal-body p,
.legal-body ul,
.legal-body ol {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 1.2em;
  text-wrap: pretty;
}
.legal-body a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: border-color 0.3s ease;
}
.legal-body a:hover { border-bottom-color: var(--ink); }

@media (max-width: 720px) {
  .legal { padding: 120px 28px 80px; }
}
