/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #c8a64e;
  --gold-deep:   #a08236;
  --gold-light:  #f5e6b8;
  --ink:         #2a2520;
  --ink-soft:    #5a5249;
  --parchment:   #faf5eb;
  --parchment-2: #f3ebd9;
  --white:       #ffffff;
  --sapphire:    #2c4a6b;
  --radius:      8px;
  --shadow:      0 4px 24px rgba(60, 40, 20, .12);
  --shadow-deep: 0 12px 40px rgba(60, 40, 20, .18);
  --serif:       Georgia, 'Times New Roman', 'DejaVu Serif', serif;
  --sans:        system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.75;
  background: var(--white);
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 em, h2 em, h3 em, p em, .big-quote, .book-title {
  font-style: italic;
  font-family: var(--serif);
}

a { color: var(--gold-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); text-decoration: underline; }

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.section-lead {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin: -1.5rem 0 3rem;
}


/* ============ BUTTON ============ */
.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-align: center;
  transition: transform .25s, box-shadow .25s, background .25s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(160, 130, 54, .35); text-decoration: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(160, 130, 54, .3);
}


/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at top, #fbf3e0 0%, transparent 60%),
    linear-gradient(180deg, var(--parchment) 0%, var(--parchment-2) 100%);
  padding: 5rem 1.5rem 6rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 166, 78, .2);
}

.hero-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cover-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
  transform: rotate(-1.5deg);
  transition: transform .4s;
}
.cover-img:hover { transform: rotate(0deg) scale(1.02); }

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.hero h1 em {
  display: block;
  color: var(--gold-deep);
  font-size: 0.85em;
  margin-top: 0.2em;
}

.hero-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-desc em {
  display: block;
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  color: var(--ink);
  font-size: 1.05rem;
}

/* Subtle mystical ornament */
.hero-ornament {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  color: var(--gold);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.hero-ornament svg { width: 100%; height: 100%; }


/* ============ WARUM ============ */
.why {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.why h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}

.quote-block {
  max-width: 740px;
  margin: 0 auto 4rem;
  text-align: center;
}

.big-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1rem;
}

.quote-source {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.why-item h3 {
  font-size: 1.3rem;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 166, 78, .3);
}

.why-item p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}


/* ============ INHALT ============ */
.content {
  padding: 6rem 1.5rem;
  background: var(--parchment);
  border-top: 1px solid rgba(200, 166, 78, .2);
  border-bottom: 1px solid rgba(200, 166, 78, .2);
}

.content h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.parts {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.part {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  background: var(--white);
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: transform .2s, box-shadow .2s;
}
.part:hover { transform: translateX(4px); box-shadow: var(--shadow-deep); }

.part-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  text-align: center;
  opacity: 0.7;
}

.part-body h3 {
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.part-body > p {
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.part-body ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.4rem 1.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.part-body ul li {
  padding-left: 1rem;
  position: relative;
}
.part-body ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.2;
}


/* ============ PROBEKAPITEL ============ */
.excerpt {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.excerpt h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.excerpt-box {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink);
  padding: 3rem 2.5rem;
  background: var(--parchment);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  position: relative;
  box-shadow: var(--shadow);
}

.excerpt-box p {
  margin-bottom: 1.2rem;
}

.excerpt-box p:last-child { margin-bottom: 0; }

.excerpt-box strong {
  color: var(--gold-deep);
  font-weight: 600;
}


/* ============ ÜBER DEN AUTOR ============ */
.about {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--parchment) 100%);
}

.about-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about p {
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.about p strong {
  color: var(--ink);
}

.dedication {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.1rem;
  color: var(--gold-deep);
}


/* ============ VORBESTELLEN ============ */
.preorder {
  padding: 5rem 1.5rem;
  background:
    radial-gradient(ellipse at center, rgba(200, 166, 78, .12) 0%, transparent 70%),
    var(--parchment-2);
}

.preorder-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(200, 166, 78, .3);
}

.preorder-box h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-family: var(--sans);
  font-weight: 600;
}

.book-title {
  font-size: 1.8rem;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.book-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.book-meta {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200, 166, 78, .25);
}

.isbn {
  font-family: monospace;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.contact a {
  font-size: 1.1rem;
  font-weight: 600;
}

.hint {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 1rem;
  line-height: 1.6;
}


/* ============ FOOTER ============ */
.footer {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: var(--ink);
  color: rgba(255, 255, 255, .65);
  font-size: 0.9rem;
}
.footer p { margin-bottom: 0.6rem; }
.footer a { color: var(--gold-light); }
.footer a:hover { color: var(--white); }

.footer-legal {
  font-size: 0.8rem;
  opacity: 0.8;
}


/* ============ RESPONSIVE ============ */
@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-cover { max-width: 220px; margin: 0 auto; }
  .cover-img { transform: none; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-ornament { display: none; }

  .part {
    grid-template-columns: 60px 1fr;
    padding: 1.5rem;
  }
  .part-num { font-size: 2.5rem; }
}

@media (max-width: 500px) {
  .hero { padding: 3rem 1rem 4rem; }
  .why, .content, .excerpt, .about, .preorder { padding: 4rem 1rem; }
  .excerpt-box { padding: 2rem 1.5rem; }
  .preorder-box { padding: 2rem 1.5rem; }
  .book-title { font-size: 1.5rem; }
}
