:root {
  --bg:#f7f2e8;
  --fg:#686868;
  --muted:#9aa0a6;
  --brand:#936742;
  --header:#e1cebf;
  --border:#d0d4d7;
  --container:758px;
}

* {
  box-sizing:border-box;
}

html,body {
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--fg);
  font:16px/1.7 Arial, Helvetica, sans-serif;
}

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

a {
  color:var(--brand);
  text-decoration:none;
}
a:hover {
  opacity:.85;
}

.container {
  max-width:var(--container);
  margin:0 auto;
  padding:0 1rem;
}

.flex {display:flex;}
.between {justify-content:space-between;}
.center {align-items:center;}
.grid-2 {
  display:grid;
  grid-template-columns:1fr auto;
  gap:1rem;
}
.right {text-align:right;}

/* Header */
.site-header {
  position:sticky;
  top:0;
  background:var(--header);
  border-bottom:1px solid var(--border);
  z-index:10;
}
.brand {
  font-weight:800;
  text-decoration:none;
  color:#000;
  padding:.75rem 0;
}
.nav a {
  color:#000;
  text-decoration:none;
  margin:0 .75rem;
}
.nav a:hover {
  color:var(--brand);
}

/* Hero / Banner */
.hero {
  display:flex;
  justify-content:center;
  padding:1.5rem 0 0;
  background:none;
}

.hero img {
  display:block;
  width:100%;
  max-width:var(--container);
  height:auto;
  margin:0 auto;
  border:1px solid var(--border);
  border-radius:.3rem;
}
.hero .kicker {
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#000;
  padding-top:20px;
}
.hero h1 {
  font-size:24px;
  color:var(--brand);
  margin:.5rem 0 1rem;
}

/* Buttons */
.btn,
.btn-outline {
  display:inline-block;
  padding:.5rem 1rem;
  border-radius:.4rem;
  text-decoration:none;
  font-weight:bold;
}
.btn {
  background:var(--brand);
  color:#fff;
}
.btn:hover {
  opacity:.9;
}
.btn-outline {
  border:1px solid var(--brand);
  color:var(--brand);
}

/* Content */
.site-main {
  padding:1.5rem 0;
}

/* Cards (Bücher etc.) */
.card {
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:.3rem;
  overflow:hidden;
  display:grid;
  grid-template-columns:180px 1fr;
  gap:0;
  margin:1rem 0;
}
.card-body {
  padding:1rem;
}
.card h3 {
  margin:.2rem 0 .5rem;
  color:var(--brand);
}

/* Footer */
.site-footer {
  background:var(--header);
  border-top:1px solid var(--border);
  padding:1.2rem 0;
  margin-top:3rem;
  color:#000;
}

/* Contact form */
.contact-form {
  margin:2rem 0;
  max-width:720px;
}
.contact-form .row {
  display:flex;
  flex-direction:column;
  margin:.75rem 0;
}
.contact-form label {
  font-weight:600;
  margin-bottom:.25rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  background:#fff;
  border:1px solid var(--border);
  border-radius:.4rem;
  color:var(--fg);
  padding:.6rem;
}
.contact-form .hp {
  position:absolute;
  left:-5000px;
  opacity:0;
}
.contact-form .muted {
  color:var(--muted);
  font-size:.9rem;
}
.contact-form .consent {
  margin-top:.5rem;
}
/* Book detail layout */
.book-grid{display:grid;grid-template-columns:220px 1fr;gap:1rem;align-items:start}
.book-cover img{width:100%;height:auto;border:1px solid var(--border);border-radius:.3rem;background:#fff}
.book-content blockquote{margin:1rem 0;padding:.75rem 1rem;border-left:4px solid var(--brand);background:#fff;border:1px solid var(--border)}
@media (max-width: 820px){ .book-grid{grid-template-columns:1fr} }
/* Größere Schrift nur für Buchtexte */
.card-body p,
.book-content p {
  font-size: 16px;
  line-height: 1.7;
}
.alert{margin:1rem 0;padding:.75rem 1rem;border-radius:.3rem;border:1px solid var(--border);background:#fff}
.alert.ok{border-color:#6abf69}
.alert.err{border-color:#d66}
.author-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.author-photo img {
  width: 100%;
  max-width: 220px;
  border-radius: .5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.author-links {
  margin-top: 2rem;
}
.author-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.author-links li {
  margin: .3rem 0;
}
.author-links a {
  color: var(--link);
  text-decoration: none;
}
.author-links a:hover {
  text-decoration: underline;
}
.divider {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--border);
}
@media (max-width: 768px) {
  .author-grid {
    grid-template-columns: 1fr;
  }
  .author-photo img {
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.highlight {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}
.highlight-image img {
  width: 100%;
  border-radius: .5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.highlight-text h2 {
  margin-top: 0;
  color: var(--accent);
  font-size: 1.2rem;
  letter-spacing: .03em;
}
.highlight-text h3 {
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.highlight-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.intro {
  text-align: center;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .highlight {
    grid-template-columns: 1fr;
  }
  .highlight-image img {
    max-width: 220px;
    margin: 0 auto 1rem;
    display: block;
  }
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo img {
  height: 46px;   /* fein, dezent */
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .site-logo img { height: 40px; }
}

/* optional: bisherigen .brand-Stil neutralisieren */
.brand { display: none; }
/* Error pages */
.error-page { text-align:center; padding:3rem 0; }
.error-code {
  font-size: clamp(48px, 10vw, 120px);
  line-height: 1;
  font-weight: 800;
  color: var(--brand);
  opacity: .2;
  margin-bottom: .5rem;
}
.error-quote {
  margin: 1.5rem auto;
  padding: .75rem 1rem;
  max-width: 680px;
  border-left: 4px solid var(--brand);
  background: #fff;
  border: 1px solid var(--border);
  text-align: left;
}
.error-quote small { display:block; margin-top:.25rem; opacity:.8; }
.error-actions {
  margin-top: 1rem;
  display:flex;
  gap:.75rem;
  justify-content:center;
  flex-wrap: wrap;
}
/* Interview page */
.interview .article-image{
  width:100%;
  max-width:900px;
  height:auto;
  display:block;
  margin:0 auto 1.2rem;
  border-radius:.5rem;
  box-shadow:0 3px 10px rgba(0,0,0,.15);
}
.interview p{ margin: .75rem 0; }