/* ===========================================================
   Ehrenamt. Verein. IT. – Begleitwebseite
   Design-System (Teal + Gelb, im Buch-Look)
   =========================================================== */
:root{
  --teal:#14746F; --teal-dark:#0E534F; --teal-darker:#0b2c2a;
  --yellow:#FFC900; --yellow-dark:#e0af00;
  --ink:#14201f; --muted:#5a6b69; --line:#e2ecea;
  --bg:#ffffff; --bg-soft:#f4f8f7;
  --radius:14px; --wrap:1080px;
  --shadow:0 10px 30px rgba(11,44,42,.12);
  font-synthesis:none;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:18px; line-height:1.65; -webkit-font-smoothing:antialiased;
}
h1,h2,h3{line-height:1.15; letter-spacing:-.01em; margin:0 0 .4em}
h1{font-size:clamp(2rem,5vw,3.1rem); font-weight:800}
h2{font-size:clamp(1.5rem,3.4vw,2.1rem); font-weight:800}
h3{font-size:1.2rem; font-weight:700}
p{margin:0 0 1em}
a{color:var(--teal); text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--wrap); margin:0 auto; padding:0 22px}
.muted{color:var(--muted)}
.center{text-align:center}

/* ---- Header ---- */
.site-header{position:sticky; top:0; z-index:50; background:rgba(255,255,255,.92);
  backdrop-filter:blur(8px); border-bottom:1px solid var(--line)}
.nav{display:flex; align-items:center; gap:20px; height:66px}
.brand{font-weight:800; color:var(--ink); font-size:1.05rem; white-space:nowrap}
.brand b{color:var(--teal)}
.nav-links{display:flex; gap:20px; margin-left:auto; align-items:center; flex-wrap:wrap}
.nav-links a{color:var(--ink); font-weight:600; font-size:.98rem}
.nav-links a:hover{color:var(--teal); text-decoration:none}
.btn{display:inline-block; background:var(--yellow); color:#3a2f00; font-weight:800;
  padding:.62em 1.1em; border-radius:999px; border:0; cursor:pointer; text-decoration:none;
  transition:transform .08s ease, background .15s ease}
.btn:hover{background:var(--yellow-dark); text-decoration:none; transform:translateY(-1px)}
.btn.ghost{background:transparent; color:#fff; border:2px solid rgba(255,255,255,.55)}
.btn.ghost:hover{background:rgba(255,255,255,.12)}
.btn.teal{background:var(--teal); color:#fff}
.btn.teal:hover{background:var(--teal-dark)}

/* ---- Hero ---- */
.hero{background:linear-gradient(160deg,var(--teal-darker),var(--teal-dark) 60%,var(--teal));
  color:#fff; padding:70px 0 78px}
.hero-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center}
.hero h1{color:#fff}
.hero .lead{font-size:1.15rem; color:#d8ece9; max-width:34ch}
.badge{display:inline-block; border:2px solid var(--yellow); color:var(--yellow);
  font-weight:800; font-size:.82rem; letter-spacing:.06em; padding:.35em .9em; border-radius:999px; text-transform:uppercase; margin-bottom:18px}
.hero-cta{display:flex; gap:14px; flex-wrap:wrap; margin-top:26px}
.hero-cover{justify-self:center; text-align:center}
.cover-wrap{display:inline-block}
.cover-patch{display:inline-block; margin-top:20px; background:var(--yellow); color:#3a2f00;
  font-weight:800; font-size:.98rem; letter-spacing:.01em; padding:.55em 1.2em; border-radius:999px;
  box-shadow:0 10px 24px rgba(0,0,0,.32); white-space:nowrap}
.hero-cover img{width:min(340px,80vw); border-radius:10px;
  box-shadow:0 26px 60px rgba(0,0,0,.45); transform:rotate(1.5deg)}
.hero small{display:block; margin-top:14px; color:#9fc4bf}

/* ---- Sections ---- */
section{padding:66px 0}
.section-soft{background:var(--bg-soft)}
.eyebrow{color:var(--teal); font-weight:800; text-transform:uppercase; letter-spacing:.08em; font-size:.82rem; margin-bottom:8px}
.grid{display:grid; gap:22px}
.g3{grid-template-columns:repeat(3,1fr)}
.g2{grid-template-columns:repeat(2,1fr)}
.card{background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px; box-shadow:var(--shadow)}
.card h3{margin-top:0}
.card .ico{width:44px;height:44px;border-radius:12px;background:var(--bg-soft);
  display:grid;place-items:center;font-size:1.4rem;margin-bottom:14px;border:1px solid var(--line)}
.linklist{list-style:none; padding:0; margin:0}
.linklist li{padding:10px 0; border-bottom:1px solid var(--line)}
.linklist li:last-child{border-bottom:0}

/* ---- Author ---- */
.author{display:grid; grid-template-columns:auto 1fr; gap:28px; align-items:center}
.author .ph{width:120px;height:120px;border-radius:50%;background:var(--teal);color:#fff;
  display:grid;place-items:center;font-size:2.4rem;font-weight:800;flex:none}
.author img.ph{width:152px;height:190px;border-radius:18px;background:transparent;object-fit:cover;box-shadow:var(--shadow)}

/* ---- CTA band ---- */
.cta-band{background:var(--teal-dark); color:#fff; text-align:center}
.cta-band h2{color:#fff}
.cta-band .hero-cta{justify-content:center}

/* ---- Footer ---- */
.site-footer{background:var(--teal-darker); color:#bfe0dc; padding:28px 0; font-size:.95rem}
.site-footer a{color:#fff}
.foot{display:flex; gap:22px; flex-wrap:wrap; align-items:center; justify-content:space-between}
.foot nav{display:flex; gap:18px; flex-wrap:wrap}

/* ---- Content pages ---- */
.page-head{background:linear-gradient(160deg,var(--teal-darker),var(--teal-dark)); color:#fff; padding:56px 0}
.page-head h1{color:#fff; margin:0}
.page-head p{color:#cfe6e2; margin:.4em 0 0}
.prose{max-width:760px}
.prose h2{margin-top:1.6em}
.search{width:100%; padding:14px 16px; border:1px solid var(--line); border-radius:12px; font-size:1rem; margin:6px 0 24px}
.glossar dt{font-weight:800; color:var(--teal-dark); margin-top:20px}
.glossar dd{margin:.2em 0 0; color:var(--ink)}
.tag{display:inline-block;background:var(--bg-soft);border:1px solid var(--line);border-radius:999px;padding:.2em .7em;font-size:.8rem;color:var(--muted);margin-right:6px}

/* ---- Responsive ---- */
@media(max-width:820px){
  .hero-grid{grid-template-columns:1fr; text-align:center}
  .hero .lead{margin-inline:auto}
  .hero-cta{justify-content:center}
  .hero-cover{order:-1}
  .g3{grid-template-columns:1fr 1fr}
  .nav-links a.hide-sm{display:none}
}
@media(max-width:560px){
  body{font-size:17px}
  .g3,.g2{grid-template-columns:1fr}
  .author{grid-template-columns:1fr; text-align:center}
  .author .ph{margin:0 auto}
  .nav-links{gap:12px}
}

/* Ratgeber: "Das steht im Buch"-Box */
.book-box{border:1px solid rgba(20,116,111,.55);background:linear-gradient(160deg,rgba(20,116,111,.12),rgba(20,116,111,.02));border-radius:14px;padding:22px 24px;margin:32px 0}
.book-box h2{margin-top:0}
.book-box .book-box-cta{margin:16px 0 4px}
.tease-list li{margin:.3em 0}

/* Bestellen / Vorbestell-Shop */
.order-grid{display:grid;grid-template-columns:1.5fr 1fr;gap:26px;align-items:start}
@media(max-width:900px){.order-grid{grid-template-columns:1fr}}
.price-tag{font-size:2rem;font-weight:800;color:var(--teal);line-height:1}
.price-tag small{font-size:1rem;font-weight:600;color:var(--muted)}
.buy-form{display:grid;grid-template-columns:1fr 1fr;gap:14px 16px;margin-top:18px}
@media(max-width:520px){.buy-form{grid-template-columns:1fr}}
.buy-form .span-2{grid-column:1/-1}
.buy-form label{display:block;font-weight:700;font-size:.9rem;margin-bottom:6px}
.buy-form .input,.buy-form select{width:100%;height:46px;padding:.5rem .75rem;font-size:1rem;
  border:1px solid var(--line);border-radius:10px;background:#fff;color:var(--ink)}
.buy-form .input:focus,.buy-form select:focus{outline:2px solid var(--teal);border-color:var(--teal)}
.tip-wrap{display:grid;grid-template-columns:1fr auto;gap:8px;align-items:center}
.tip-wrap .suffix{height:46px;display:inline-flex;align-items:center;padding:0 14px;
  border-radius:10px;border:1px solid var(--line);background:var(--bg-soft);font-weight:700}
.notice{padding:.8rem 1rem;border-radius:10px;background:var(--bg-soft);border:1px solid var(--line);font-size:.92rem}
.notice.info{background:rgba(20,116,111,.08);border-left:4px solid var(--teal)}
.notice.warn{background:rgba(255,201,0,.14);border-left:4px solid var(--yellow-dark)}
.ebook-box{display:flex;flex-direction:column;gap:10px}
.ebook-box .amz{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:#ff9900;color:#111;font-weight:800;padding:.7em 1em;border-radius:10px;text-decoration:none}
.ebook-box .amz:hover{background:#e88a00}
.feat-check{list-style:none;padding:0;margin:14px 0}
.feat-check li{position:relative;padding-left:26px;margin:.4em 0}
.feat-check li::before{content:"✓";position:absolute;left:0;color:var(--teal);font-weight:800}

/* Signatur & Widmung im Bestellformular */
.sig-options{display:grid;gap:8px;margin-top:4px}
.radiorow{display:flex;gap:10px;align-items:flex-start;font-weight:500;font-size:.95rem;cursor:pointer}
.radiorow input{margin-top:3px;flex:0 0 auto}
.buy-form textarea.input{height:auto;min-height:84px;resize:vertical;font-family:inherit;line-height:1.4}
.wid-count{font-size:.8rem;color:var(--muted);text-align:right;margin-top:4px}


/* ---- Newsletter-Formular ---- */
.footer-news{border-top:1px solid rgba(255,255,255,.14);padding:16px 0 6px;margin-bottom:12px}
.news-form label{display:block;font-size:.9rem;margin-bottom:8px}
.news-row{display:flex;gap:8px;flex-wrap:wrap;max-width:520px}
.news-row input{flex:1 1 220px;min-width:0;height:42px;padding:.4em .8em;border-radius:9px;border:1px solid var(--line);background:#fff;color:var(--ink);font-size:.95rem}
.news-row input:focus{outline:2px solid var(--teal);border-color:var(--teal)}
.news-row button{height:42px;background:var(--yellow);color:#3a2f00;font-weight:800;border:none;border-radius:9px;padding:0 18px;cursor:pointer;font-size:.95rem}
.news-row button:hover{background:var(--yellow-dark)}
.news-row button:disabled{opacity:.6;cursor:default}
.news-msg{font-size:.86rem;margin:8px 0 0;min-height:1.1em}
.news-fine{font-size:.76rem;margin:6px 0 0}
.cf-turnstile{margin-top:10px}
.news-form.on-dark .news-row input{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.28);color:#fff}
.news-form.on-dark .news-row input::placeholder{color:#9fc4be}
.news-form.on-dark .news-fine{color:#9fc4be}
.news-form.on-dark .news-fine a{color:#cfe6e2}
.news-form.on-dark .news-msg{color:#eafffb}

/* Footer-Newsletter zentriert */
.footer-news{text-align:center}
.footer-news .news-form{max-width:520px;margin:0 auto}
.footer-news .news-row{justify-content:center;margin:0 auto}
.footer-news .cf-turnstile{display:flex;justify-content:center}

/* Footer: 1/4 Navigation (links) + 3/4 Newsletter & Copyright (rechts) */
.footer-grid{display:grid;grid-template-columns:1fr 3fr;gap:44px;align-items:stretch}
.footer-side{display:flex;flex-direction:column;align-items:flex-start;text-align:left}
.footer-side nav{display:flex;flex-direction:column;gap:0;line-height:1.5}
.footer-side nav a{color:#bfe0dc}
.footer-grid .footer-news{border-top:none;border-left:1px solid rgba(255,255,255,.16);margin:0;padding:0 0 0 44px;text-align:left}
.footer-grid .footer-news .news-form{max-width:none;margin:0}
.footer-grid .footer-news .news-row{justify-content:flex-start;margin:0;max-width:460px}
.footer-grid .footer-news .cf-turnstile{display:flex;justify-content:flex-start}
.foot-copy{margin-top:16px;color:#9fc4be;font-size:.86rem}
@media(max-width:760px){
  .footer-grid{grid-template-columns:1fr;gap:22px}
  .footer-grid .footer-news{border-left:none;border-top:1px solid rgba(255,255,255,.16);padding:22px 0 0 0}
}

/* ---- Pressebereich ---- */
.jumpnav{display:flex;flex-wrap:wrap;gap:10px;margin:22px 0 0}
.jumpnav a{display:inline-block;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.28);
  border-radius:999px;padding:.38em .95em;font-size:.9rem;font-weight:600;color:#fff}
.jumpnav a:hover{background:var(--yellow);color:#3a2f00;text-decoration:none;border-color:var(--yellow)}
.press-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:34px;align-items:start}
@media(max-width:820px){.press-grid{grid-template-columns:1fr}}
.contact-card{background:var(--teal-darker);color:#e8f3f1;border-radius:var(--radius);padding:28px 30px;box-shadow:var(--shadow)}
.contact-card h3{color:#fff;margin-top:0}
.contact-card a{color:#fff;text-decoration:underline}
.contact-list{list-style:none;padding:0;margin:16px 0 0;display:grid;gap:12px}
.contact-list li{display:flex;gap:14px;align-items:baseline;flex-wrap:wrap}
.contact-list .lbl{color:#9fc4bf;min-width:74px;font-size:.76rem;text-transform:uppercase;letter-spacing:.05em;flex:none}
.contact-list .val{font-size:1.02rem;font-weight:600}
.qa{display:grid;gap:14px;margin-top:10px}
.qa-item{background:#fff;border:1px solid var(--line);border-left:4px solid var(--teal);
  border-radius:10px;padding:18px 22px}
.qa-item .q{font-weight:700;color:var(--ink);margin:0 0 .35em}
.qa-item .a{color:var(--muted);margin:0;font-size:.96rem;line-height:1.55}
.pill-list{display:flex;flex-wrap:wrap;gap:10px;list-style:none;padding:0;margin:14px 0 0}
.pill-list li{background:var(--bg-soft);border:1px solid var(--line);border-radius:999px;
  padding:.42em .95em;font-size:.92rem;font-weight:600;color:var(--teal-dark)}
.pill-list li b{color:var(--ink)}
.format-card .ico{margin-bottom:12px}
.format-card h3{font-size:1.05rem;margin:0 0 .2em}
.format-card p{margin:0;font-size:.92rem;color:var(--muted)}
.vthumb{display:block;position:relative;aspect-ratio:16/9;border-radius:12px;overflow:hidden;
  box-shadow:var(--shadow);background:#000;border:1px solid var(--line)}
.vthumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .25s ease,opacity .25s ease}
.vthumb:hover img{transform:scale(1.04);opacity:.85}
.vthumb .play{position:absolute;inset:0;display:grid;place-items:center;pointer-events:none}
.vthumb .play span{width:66px;height:66px;border-radius:50%;background:rgba(197,17,17,.92);
  display:grid;place-items:center;box-shadow:0 6px 20px rgba(0,0,0,.4)}
.vthumb .play span::before{content:"";border-style:solid;border-width:11px 0 11px 19px;
  border-color:transparent transparent transparent #fff;margin-left:4px}
.vthumb .src{position:absolute;left:10px;top:10px;background:rgba(11,44,42,.85);color:#fff;
  font-size:.74rem;font-weight:700;letter-spacing:.03em;text-transform:uppercase;
  padding:.3em .7em;border-radius:999px}
.video-cap{margin:10px 0 0;font-size:.92rem;color:var(--ink);font-weight:600}
.video-cap span{display:block;font-weight:400;color:var(--muted);font-size:.86rem}
.press-logos{display:flex;flex-wrap:wrap;gap:12px 26px;align-items:center;margin:14px 0 0;
  list-style:none;padding:0}
.press-logos li{font-weight:800;color:var(--teal-dark);font-size:1.05rem;
  display:flex;align-items:center;gap:8px}
.press-logos li::before{content:"🎙";font-size:1rem}
.audio-card{background:#fff;border:1px solid var(--line);border-left:4px solid var(--teal);
  border-radius:12px;padding:20px 22px;box-shadow:var(--shadow);
  display:flex;flex-direction:column;height:100%}
.audio-card .src{align-self:flex-start;background:var(--teal-darker);color:#fff;font-size:.72rem;
  font-weight:700;letter-spacing:.04em;text-transform:uppercase;padding:.3em .7em;border-radius:999px;margin-bottom:10px}
.audio-card h3{margin:.1em 0 .15em;font-size:1.08rem}
.audio-card .meta{color:var(--muted);font-size:.88rem;margin:0 0 14px}
.audio-card audio{width:100%;height:44px;display:block;margin-top:auto}
