/* Website-Seiten (Artikel, Landingpages) – baut auf shop.css auf (Schriften, Grundwerte) */
.site {
  --bg: #050505; --surface: #0f0f0f; --surface-2: #151515; --line: #1f1f1f;
  --text: #f0f0f0; --muted: #aaa; --faint: #888; --accent: #c0392b; --accent-hi: #e74c3c; --gold: #d4a84b; --gold-dim: #b8932e;
  --star: #d4a84b;
  background: var(--bg); color: var(--text); font-size: 18px; line-height: 1.7;
}
.site ::selection { background: var(--accent); color: #fff; }
.s-wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.s-narrow { max-width: 760px; }
.preview-bar { background: var(--gold); color: #000; text-align: center; font-weight: 700; padding: 6px 12px; font-size: 14px; }

/* Kopf */
.s-header { border-bottom: 1px solid var(--line); background: rgba(5,5,5,.92); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 20; }
.s-header__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 64px; }
.s-brand { font-family: var(--display); font-size: 1.9rem; letter-spacing: .06em; line-height: 1; text-decoration: none; color: var(--text); white-space: nowrap; }
.s-brand:hover { color: var(--text); }
.s-nav { display: flex; gap: 22px; font-size: 16px; }
.s-nav a { color: var(--muted); text-decoration: none; white-space: nowrap; }
.s-nav a:hover { color: var(--text); }
.s-header--slim { position: static; }
.s-header--slim .s-header__in { justify-content: flex-start; gap: 12px; min-height: 54px; }
.s-brand--slim { font-size: 1.5rem; }
.s-header__sub { color: var(--faint); font-size: 14px; }

/* Einstieg */
.s-hero { padding: 56px 0 8px; position: relative; }
.s-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(192,57,43,.10) 0%, transparent 60%); pointer-events: none; }
.s-hero > * { position: relative; }
.s-eyebrow { display: inline-block; margin: 0 0 14px; padding: 5px 14px; border-radius: 20px; background: rgba(212,168,75,.12); border: 1px solid rgba(212,168,75,.3); color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: .04em; }
.s-h1 { font-family: var(--display); font-weight: 400; font-size: clamp(2.5rem, 6vw, 3.9rem); line-height: 1.02; letter-spacing: .02em; margin: 0 0 16px; text-transform: none; }
.s-h1 em, .s-article h2 em { font-style: normal; color: var(--accent); }
.s-lead { font-size: 1.2rem; color: var(--muted); line-height: 1.6; }
.s-lead p { margin: 0 0 .6em; }

/* Text */
.s-article { padding: 20px 20px 72px; }
.s-article > p, .s-article > ul, .s-article > ol { color: #d8d8d8; }
.s-article h2 { font-family: var(--display); font-weight: 400; font-size: clamp(1.8rem, 4vw, 2.3rem); letter-spacing: .03em; line-height: 1.1; margin: 1.8em 0 .5em; color: #fff; }
.s-article h3 { font-family: var(--sans); font-weight: 700; font-size: 1.2rem; margin: 1.6em 0 .4em; color: #fff; }
.s-article strong { color: #fff; }
.s-article a { color: var(--gold); text-decoration-color: rgba(212,168,75,.45); }
.s-article a:hover { color: #fff; }
.s-article blockquote { margin: 2em 0; padding: 18px 22px; border-left: 3px solid var(--accent); background: var(--surface); border-radius: 0 8px 8px 0; font-size: 1.15rem; color: #e6e6e6; font-style: normal; }
.s-article blockquote p { margin: .3em 0; }
.s-article blockquote em { color: var(--accent); font-style: normal; }
.s-article img { border-radius: 6px; margin: 1.5em auto; }
.s-article hr { border: 0; height: 1px; background: linear-gradient(90deg, transparent, #333, transparent); margin: 3em 0; }
.s-article li { margin: .35em 0; }
.s-section { margin-top: 3.5em; }

/* Buttons */
.sbtn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 46px; padding: 10px 22px; border-radius: 6px; font: 700 16px/1.2 var(--sans); text-decoration: none !important; border: 2px solid transparent; transition: background .2s, color .2s, transform .15s; text-align: center; }
.sbtn--red { background: var(--accent); color: #fff !important; }
.sbtn--red:hover { background: var(--accent-hi); transform: translateY(-1px); }
.sbtn--ghost { border-color: var(--gold); color: var(--gold) !important; background: transparent; font-weight: 600; }
.sbtn--ghost:hover { background: var(--gold); color: #000 !important; }
.sbtn--gold { background: var(--gold); color: #000 !important; }
.sbtn--gold:hover { background: var(--gold-dim); }

/* Buchkarte */
.bk-card { display: grid; grid-template-columns: 150px 1fr; gap: 24px; align-items: start; margin: 2.2em 0; padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.bk-cover { width: 100%; height: auto; aspect-ratio: 5 / 8; object-fit: cover; border-radius: 4px; box-shadow: 0 12px 30px rgba(0,0,0,.7); margin: 0 !important; background: #111; }
.bk-cover--empty { display: grid; align-content: center; justify-items: center; gap: 6px; padding: 12px; text-align: center; background: linear-gradient(160deg, #2a0d0a, #0b0b0b); border: 1px solid #2c2c2c; }
.bk-cover--empty span { font: 400 1.6rem/1 var(--display); color: var(--accent); letter-spacing: .04em; }
.bk-cover--empty strong { font: 400 1.1rem/1.1 var(--display); color: #eee; letter-spacing: .04em; }
.bk-card__body > * { margin: 0 0 8px; }
.bk-eyebrow { font: 400 14px/1.2 var(--display); letter-spacing: .14em; color: var(--gold); text-transform: uppercase; margin: 0 0 2px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bk-badge { font: 700 11px/1 var(--sans); letter-spacing: .04em; text-transform: none; background: rgba(192,57,43,.18); border: 1px solid rgba(192,57,43,.5); color: var(--accent-hi); padding: 4px 8px; border-radius: 4px; }
.bk-title { font: 400 1.9rem/1.05 var(--display); letter-spacing: .03em; color: #fff; }
.bk-title--sm { font-size: 1.45rem; margin: 2px 0 6px; }
.bk-rating { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: 15px; color: var(--muted); }
.bk-rating strong { color: #fff; }
.bk-rating .stars { color: var(--star); display: inline-flex; }
.bk-rating--sm { font-size: 13px; }
.bk-rating__count { flex-basis: 100%; font-size: 12px; color: var(--faint); }
.bk-rating--sm .stars svg { width: 14px; height: 14px; }
.bk-tagline { color: #ddd; font-size: 16px; }
.bk-price, .bk-signed { font-size: 14px; color: var(--muted); }
.bk-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.bk-soon { display: inline-block; padding: 8px 12px; border-radius: 6px; border: 1px dashed #444; color: var(--muted); font-size: 14px; }

.bk-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; margin: 1.5em 0; }
.bk-tile { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 16px; display: flex; flex-direction: column; }
.bk-tile .bk-cover { margin-bottom: 12px !important; }
.bk-tile .bk-ctas { margin-top: auto; padding-top: 10px; flex-direction: column; }
.bk-tile .sbtn { min-height: 40px; font-size: 14px; padding: 8px 12px; width: 100%; }

.reading-order { padding-left: 1.3em; }
.reading-order li { margin: .6em 0; }
.rating-note { font-size: 12px; color: var(--faint); margin-top: 2em; line-height: 1.5; }

/* Weiterführende Artikel */
.rel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.s-article a.rel-card { display: flex; flex-direction: column; gap: 6px; padding: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; text-decoration: none; color: var(--text); transition: border-color .2s, transform .2s; }
.s-article a.rel-card:hover { border-color: #3a3a3a; transform: translateY(-2px); }
.rel-card__title { font: 400 1.35rem/1.1 var(--display); letter-spacing: .03em; color: #fff; }
.rel-card__title em { font-style: normal; color: var(--accent); }
.rel-card__text { font-size: 14px; color: var(--muted); line-height: 1.5; }
.rel-card__more { margin-top: auto; font-size: 14px; color: var(--gold); font-weight: 600; }

/* Newsletter */
.nl-box { position: relative; display: grid; grid-template-columns: 130px 1fr; gap: 28px; align-items: center; margin: 4em 0 0; padding: 32px; background: var(--surface); border: 1px solid rgba(212,168,75,.25); border-radius: 12px; overflow: hidden; }
.nl-box::before { content: ''; position: absolute; left: 0; top: 50%; width: 3px; height: 60px; transform: translateY(-50%); background: var(--gold); border-radius: 0 4px 4px 0; }
.nl-box__img { width: 130px; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,.6); margin: 0 !important; }
.nl-box__eyebrow { font: 400 14px/1.2 var(--display); letter-spacing: .15em; color: var(--gold); text-transform: uppercase; margin: 0 0 4px; }
.s-article .nl-box__title, .nl-box__title { font: 400 1.9rem/1.1 var(--display); letter-spacing: .03em; margin: 0 0 8px; color: #fff; }
.nl-box__text { color: var(--muted); font-size: 16px; margin: 0 0 14px; }
.nl-form { max-width: 440px; margin: 16px 0; }
.nl-form input[type=email] { width: 100%; padding: 14px 16px; font: 16px var(--sans); border: 2px solid #333; border-radius: 6px; background: #151515; color: #fff; margin-bottom: 10px; outline: none; }
.nl-form input[type=email]:focus { border-color: var(--gold); }
.nl-form button { width: 100%; padding: 14px 16px; font: 700 16px var(--sans); border: 0; border-radius: 6px; background: var(--gold); color: #000; cursor: pointer; }
.nl-form button:hover { background: var(--gold-dim); }
.nl-form button[disabled] { opacity: .7; cursor: wait; }
.nl-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.nl-fine { font-size: 12px; color: var(--faint); margin: 8px 0 0; }
.s-article .nl-fine a, .nl-fine a { color: var(--faint); }
.nl-error { color: var(--accent-hi); font-size: 14px; margin: 8px 0 0; }

/* Landingpage */
.s-hero--landing { padding: 40px 0 24px; }
.s-hero__grid { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: center; }
.s-hero__img { width: 260px; border-radius: 4px; box-shadow: 0 0 0 3px rgba(255,255,255,.4), 0 20px 60px rgba(0,0,0,.8), 0 0 80px rgba(192,57,43,.15); }
.s-article--landing { max-width: 760px; }
.s-hero--plain { padding: 64px 0 8px; text-align: left; }

/* Kennzahlen-Leiste und Schritte (per Markdown-Liste mit Klasse nicht möglich – daher einfache Stile für ol) */
.s-article ol:not(.reading-order) li::marker { color: var(--gold); font-weight: 700; }

/* Fuß */
.s-footer { border-top: 1px solid var(--line); padding: 36px 0 48px; text-align: center; }
.s-footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; font-size: 14px; margin-bottom: 12px; }
.s-footer__links a { color: var(--faint); text-decoration: none; }
.s-footer__links a:hover { color: #fff; }
.s-footer__consent { margin: 0 0 10px; font-size: 13px; }
.s-footer__consent .linklike { color: var(--faint); background: none; border: 0; padding: 0; font: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.s-footer__copy { font-size: 12px; color: #555; margin: 0; }

@media (max-width: 760px) {
  .site { font-size: 17px; }
  .s-header { position: static; }
  .s-header__in { flex-direction: column; align-items: flex-start; gap: 4px; padding-top: 10px; padding-bottom: 6px; min-height: 0; }
  .s-header--slim .s-header__in { flex-direction: row; align-items: baseline; flex-wrap: wrap; }
  .s-brand { font-size: 1.6rem; }
  .s-nav { width: 100%; flex-wrap: wrap; column-gap: 16px; row-gap: 4px; font-size: 15px; padding-bottom: 6px; }
  .s-nav::-webkit-scrollbar { display: none; }
  .s-hero { padding-top: 32px; }
  .s-article { padding-left: 16px; padding-right: 16px; }
  .s-wrap { padding-left: 16px; padding-right: 16px; }
  .bk-card { grid-template-columns: 100px 1fr; gap: 16px; padding: 16px; }
  .bk-title { font-size: 1.6rem; }
  .bk-ctas .sbtn { flex: 1 1 100%; }
  .bk-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .bk-tile { padding: 12px; }
  .nl-box { grid-template-columns: 1fr; padding: 24px 20px; text-align: center; }
  .nl-box::before { left: 50%; top: 0; width: 120px; height: 3px; transform: translateX(-50%); border-radius: 0 0 4px 4px; }
  .nl-box__img { margin: 0 auto !important; width: 110px; }
  .nl-form { margin-left: auto; margin-right: auto; }
  .s-hero__grid { grid-template-columns: 1fr; gap: 20px; justify-items: center; text-align: center; }
  .s-hero__img { width: 170px; }
  .s-hero--landing .nl-form { margin: 16px auto; }
}
@media (max-width: 380px) {
  .bk-grid { grid-template-columns: 1fr; }
}

/* Buttons im Text, Kontaktformular, Rechtstexte */
.s-btnrow { display: inline-block; margin: 6px 10px 6px 0 !important; }
.s-lead .s-btnrow { margin-top: 14px !important; }
.contact { margin: 2em 0; }
.contact__form { display: grid; gap: 14px; max-width: 640px; }
.contact__form label { display: grid; gap: 6px; font-weight: 600; font-size: 15px; }
.contact__form input, .contact__form textarea { width: 100%; padding: 12px 14px; font: 16px var(--sans); border: 2px solid #333; border-radius: 6px; background: #151515; color: #fff; }
.contact__form input:focus, .contact__form textarea:focus { border-color: var(--gold); outline: none; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact__privacy { font-size: 13px; color: var(--faint); margin: 0; }
.contact__form button { justify-self: start; border: 0; cursor: pointer; }
.contact__form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact__msg { padding: 14px 16px; border-radius: 8px; font-weight: 600; }
.contact__msg--ok { background: rgba(79,165,107,.15); border: 1px solid rgba(79,165,107,.5); }
.contact__msg--error { background: rgba(192,57,43,.15); border: 1px solid rgba(192,57,43,.5); }
.s-hero--legal { padding-bottom: 0; }
.s-legal h2 { font-family: var(--display); font-size: 1.7rem; }
.s-legal { font-size: 16px; }
.s-legal p, .s-legal li { color: #d0d0d0; }
.s-legal .eu-notice img { background: #fff; border-radius: 4px; }
.s-article img.s-portrait, .s-article p > img[alt^="Ben Friedhof"] { width: 160px; height: 160px; object-fit: cover; border-radius: 50%; margin: 1em 0; }
@media (max-width: 760px) { .contact__row { grid-template-columns: 1fr; } }

