:root {
  --bg: #080705;
  --panel: #12100c;
  --panel-soft: rgba(255,255,255,.035);
  --gold: #c49238;
  --gold-soft: #e0c078;
  --text: #f3ead7;
  --muted: #b7aa91;
  --line: rgba(196,146,56,.35);
  --shadow: rgba(0,0,0,.75);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  background:
    radial-gradient(circle at 50% 0%, #1d1710 0%, var(--bg) 42%, #030302 100%);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7vw;
  background: rgba(8,7,5,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 1.15rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

nav {
  display: flex;
  gap: 26px;
  font-size: .95rem;
  color: var(--muted);
}

nav a {
  transition: color .2s ease, opacity .2s ease;
}

nav a:hover {
  color: var(--gold-soft);
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 7vw;
  align-items: center;
  padding: 70px 7vw 95px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .82rem;
  margin: 0 0 18px;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0;
  font-weight: 500;
}

h1 {
  font-size: clamp(3.2rem, 9vw, 7.8rem);
  letter-spacing: .12em;
  color: var(--gold-soft);
  text-shadow: 0 0 28px rgba(196,146,56,.18);
}

h1 span {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  color: var(--text);
  letter-spacing: .35em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--gold-soft);
}

h3 {
  color: var(--gold-soft);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Leseprobe – ruhiger Buchsatz, ohne das restliche Design zu verändern */
.reading-sample {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.reading-sample .sample-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.reading-sample .sample-kicker {
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  margin: 0 0 14px;
}

.reading-sample .sample-card h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 34px;
}

.reading-sample .sample-text {
  max-width: 660px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(1.02rem, 1.35vw, 1.13rem);
  line-height: 1.85;
}

.reading-sample .sample-text p {
  color: var(--text);
  font-size: inherit;
  max-width: 100%;
  margin: 0 0 1rem;
  text-align: left;
  text-indent: 1.55em;
}

.reading-sample .sample-text p.no-indent,
.reading-sample .sample-text p:first-child,
.reading-sample .sample-text p:nth-child(2),
.reading-sample .sample-text p:nth-child(3) {
  text-indent: 0;
}

.reading-sample .sample-text p.short {
  margin-bottom: .35rem;
}

.reading-sample .sample-text.collapsed {
  max-height: 430px;
  overflow: hidden;
  position: relative;
}

.reading-sample .sample-text.collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--panel));
}

.reading-sample #sampleToggle {
  display: block;
  margin: 28px auto 0;
}

.lead {
  max-width: 680px;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  color: var(--text);
  margin: 34px 0;
}

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

.btn {
  display: inline-block;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--gold);
  color: #090806;
}

.btn.secondary {
  color: var(--gold-soft);
}

.cover-wrap img {
  width: 100%;
  border-radius: 6px;
  box-shadow:
    0 35px 90px var(--shadow),
    0 0 0 1px rgba(224,192,120,.22);
}

.section {
  padding: 88px 7vw;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 34px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: start;
}

blockquote {
  margin: 0;
  padding: 34px;
  border-left: 2px solid var(--gold);
  background: var(--panel-soft);
  color: var(--text);
  font-size: 1.45rem;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.highlights article {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  min-height: 210px;
}

.author,
.contact {
  max-width: 980px;
}

.mail {
  display: inline-block;
  color: var(--gold-soft);
  font-size: 1.25rem;
  border-bottom: 1px solid var(--gold);
}

.small {
  font-size: .9rem;
  opacity: .65;
}

footer {
  padding: 34px 7vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
}

/* Impressum / rechtliche Seite */

.legal-page {
  min-height: calc(100vh - 96px);
  padding-top: 92px;
  padding-bottom: 110px;
}

.legal-page .section-heading {
  margin-bottom: 56px;
}

.legal-page h1 {
  max-width: 1000px;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  letter-spacing: .14em;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  margin: 3.1rem 0 1rem;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  color: var(--gold-soft);
  letter-spacing: .02em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 1.35rem;
  max-width: 760px;
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

.legal-content .mail {
  font-size: 1.08rem;
}

.legal-content .btn {
  margin-top: 1.2rem;
}

.legal-content::before {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin-bottom: 34px;
  background: var(--line);
}

/* Feinere Darstellung, falls die Impressumseite nur einfache HTML-Tags nutzt */

main > h1:first-child,
main > h2:first-child {
  color: var(--gold-soft);
}

/* Mobile */

@media (max-width: 850px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .cover-wrap {
    max-width: 380px;
    margin: 0 auto;
  }

  .two-col,
  .highlights {
    grid-template-columns: 1fr;
  }

  h1 span {
    letter-spacing: .18em;
  }

  .legal-page {
    padding-top: 64px;
  }

  .legal-page h1 {
    letter-spacing: .1em;
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .legal-content h2 {
    margin-top: 2.3rem;
  }
}

@media (max-width: 520px) {
  .site-header,
  .section,
  .hero,
  footer {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  nav {
    font-size: .88rem;
  }

  .brand {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  blockquote {
    padding: 24px;
    font-size: 1.2rem;
  }
}


@media (max-width: 520px) {
  .reading-sample .sample-card {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .reading-sample .sample-text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.75;
  }

  .reading-sample .sample-text p {
    text-indent: 1.1em;
    margin-bottom: .9rem;
  }
}
