
:root {
  --green: #1e6944;
  --green-dark: #10442b;
  --green-light: #e5f2e9;
  --red: #b52d2b;
  --red-dark: #8e1f1e;
  --red-light: #fbe7e5;
  --cream: #f8f4eb;
  --cream-dark: #eee4d4;
  --gold: #d5a34a;
  --ink: #1f2822;
  --muted: #5f685f;
  --white: #ffffff;
  --line: rgba(21, 65, 43, .12);
  --shadow-sm: 0 10px 30px rgba(18, 44, 29, .08);
  --shadow: 0 22px 60px rgba(18, 44, 29, .14);
  --shadow-lg: 0 36px 90px rgba(18, 44, 29, .2);
  --radius: 24px;
  --radius-sm: 15px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0 0, rgba(181,45,43,.07), transparent 27rem),
    radial-gradient(circle at 100% 8rem, rgba(30,105,68,.08), transparent 31rem),
    #fcfbf8;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-underline-offset: .18em; }
a:hover { color: var(--red); }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 830px); margin-inline: auto; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: white; padding: .7rem 1rem; }
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(16,68,43,.04);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0 33.333%, #fff 33.333% 66.666%, var(--green) 66.666%);
  opacity: .9;
}
.header-row { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 1.7rem; }
.brand { display: inline-flex; align-items: center; gap: .85rem; color: var(--ink); text-decoration: none; flex: 0 0 auto; }
.brand-mark { position: relative; width: 50px; height: 48px; display: block; }
.brand-mark i,
.brand-mark b {
  position: absolute;
  bottom: 2px;
  width: 23px;
  height: 34px;
  border: 3px solid currentColor;
  border-top: 0;
  background: #fff;
}
.brand-mark i { left: 1px; color: var(--red); border-radius: 2px 2px 12px 2px; transform: skewY(8deg); }
.brand-mark b { right: 1px; color: var(--green); border-radius: 2px 2px 2px 12px; transform: skewY(-8deg); }
.brand-mark em { position: absolute; top: -6px; left: 17px; color: var(--gold); font-style: normal; font-size: 1rem; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.06; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.42rem; color: var(--green-dark); letter-spacing: -.025em; }
.brand-copy small { color: var(--red); font-size: .82rem; font-weight: 750; margin-top: .2rem; }
.main-nav ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .18rem; margin: 0; padding: 0; }
.main-nav a { display: block; padding: .64rem .72rem; border-radius: 999px; text-decoration: none; color: #263229; font-size: .89rem; font-weight: 720; }
.main-nav a:hover,
.main-nav a[aria-current="page"] { background: linear-gradient(135deg, var(--green-light), var(--red-light)); color: var(--green-dark); }

.hero,
.book-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero {
  padding: 6rem 0 5rem;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.89) 47%, rgba(248,244,235,.62) 100%),
    repeating-linear-gradient(125deg, rgba(30,105,68,.035) 0 16px, transparent 16px 32px);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -170px;
  top: -210px;
  background: radial-gradient(circle, rgba(30,105,68,.17), rgba(30,105,68,0) 67%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--red) 0 33.333%, #fff 33.333% 66.666%, var(--green) 66.666%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; }
.hero h1 { max-width: 12ch; }
.book-hero {
  padding: 3.8rem 0 4.5rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(30,105,68,.12), transparent 25rem),
    radial-gradient(circle at 10% 30%, rgba(181,45,43,.08), transparent 23rem),
    linear-gradient(135deg, #fffdf9, var(--cream));
}
.book-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 6px; background: linear-gradient(90deg, var(--green), #fff, var(--red)); }
.book-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(260px,.62fr) 1.38fr; gap: 4.2rem; align-items: center; }
.hero-small { padding: 4.5rem 0 4rem; }

.eyebrow { margin: 0 0 .75rem; color: var(--red); font-weight: 850; text-transform: uppercase; letter-spacing: .11em; font-size: .76rem; }
h1,h2,h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; text-wrap: balance; }
h1 { margin: 0 0 1.2rem; font-size: clamp(2.7rem,5vw,5rem); letter-spacing: -.045em; }
h2 { margin: 0 0 1rem; font-size: clamp(2rem,3vw,3.05rem); color: var(--green-dark); letter-spacing: -.03em; }
h3 { margin: 0 0 .65rem; font-size: 1.35rem; color: var(--green-dark); }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.08rem,1.8vw,1.3rem); color: #3f4941; max-width: 760px; }

.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .82rem 1.16rem; border-radius: 999px; text-decoration: none; font-weight: 820; border: 1px solid transparent; transition: .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg,var(--red),var(--red-dark)); box-shadow: 0 13px 28px rgba(181,45,43,.22); }
.button-primary:hover { color: white; box-shadow: 0 17px 35px rgba(181,45,43,.28); }
.button-secondary { color: var(--green-dark); background: rgba(255,255,255,.83); border-color: rgba(30,105,68,.3); }
.button-secondary:hover { color: var(--green-dark); border-color: var(--green); box-shadow: var(--shadow-sm); }
.button-amazon { color: #211806; background: linear-gradient(135deg,#ffd56f,#efb735); box-shadow: 0 13px 28px rgba(120,84,12,.17); }
.button-amazon:hover { color: #211806; }
.button-light { background: white; color: var(--green-dark); box-shadow: var(--shadow-sm); }

.book-stack { position: relative; min-height: 430px; }
.mock-cover {
  position: absolute;
  width: 248px;
  aspect-ratio: 2/3;
  border-radius: 10px 18px 18px 10px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  border-left: 10px solid rgba(0,0,0,.15);
  overflow: hidden;
}
.mock-cover::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg,rgba(255,255,255,.3),transparent 38%), linear-gradient(180deg,transparent,rgba(0,0,0,.1)); }
.mock-cover > * { position: relative; z-index: 1; }
.mock-cover strong { font-family: Georgia,"Times New Roman",serif; font-size: 1.45rem; line-height: 1.05; margin-top: .55rem; }
.mock-cover small { font-weight: 750; }
.cover-a { left: 8%; top: 28px; transform: rotate(-8deg); background: linear-gradient(155deg,#23754c,#10442b); color:#fff; }
.cover-b { right: 5%; top: 46px; transform: rotate(7deg); background: linear-gradient(155deg,#fff,#e9dfcf); color:#372e23; }
.cover-c { left: 31%; top: 94px; transform: rotate(1deg); z-index: 3; background: linear-gradient(155deg,#c63d37,#8e1f1e); color:#fff; }

.trust-strip { position: relative; z-index: 5; margin-top: -1.6rem; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.trust-item { display: flex; gap: .8rem; align-items: center; padding: 1.2rem 1.1rem; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item > span { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: white; font-weight: 850; }
.trust-item:nth-child(even) > span { background: var(--red); }
.trust-item strong { display:block; font-size:.92rem; }
.trust-item small { display:block; color:var(--muted); margin-top:.12rem; }

.section { padding: 5.3rem 0; }
.section-soft { background: linear-gradient(180deg,rgba(229,242,233,.48),rgba(251,231,229,.33),rgba(255,255,255,.7)); border-block: 1px solid var(--line); }
.section-head { max-width: 820px; margin-bottom: 2.15rem; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.grid { display:grid; gap:1.25rem; }
.grid-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.card { background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.55rem; box-shadow: var(--shadow-sm); }
.card p { color:var(--muted); }
.card-link { display:block; height:100%; color:inherit; text-decoration:none; transition:.18s ease; position:relative; overflow:hidden; }
.card-link::after { content:"→"; position:absolute; right:1.2rem; bottom:1rem; color:var(--red); font-weight:900; }
.card-link:hover { color:inherit; transform:translateY(-5px); box-shadow:var(--shadow); border-color:rgba(181,45,43,.22); }
.category-grid .card:nth-child(odd) { border-top: 4px solid var(--green); }
.category-grid .card:nth-child(even) { border-top: 4px solid var(--red); }
.icon { width:52px; height:52px; border-radius:50%; display:grid; place-items:center; margin-bottom:1rem; background:var(--green); color:#fff; font-weight:900; font-size:1.25rem; box-shadow:0 10px 22px rgba(30,105,68,.17); }
.category-grid .card:nth-child(even) .icon { background:var(--red); box-shadow:0 10px 22px rgba(181,45,43,.17); }

.book-card { display:grid; grid-template-columns:108px 1fr; gap:1rem; align-items:start; }
.book-thumb { min-height:158px; border-radius:7px 13px 13px 7px; border-left:7px solid rgba(0,0,0,.15); box-shadow:0 14px 28px rgba(16,68,43,.16); padding:.7rem; display:flex; flex-direction:column; justify-content:space-between; overflow:hidden; position:relative; color:white; }
.book-thumb::after { content:""; position:absolute; inset:0; background:linear-gradient(145deg,rgba(255,255,255,.27),transparent 40%),linear-gradient(180deg,transparent,rgba(0,0,0,.12)); }
.book-thumb > * { position:relative; z-index:1; }
.cover-slot-label { display:inline-flex; align-self:flex-start; padding:.18rem .4rem; border-radius:999px; background:rgba(255,255,255,.9); color:var(--green-dark); font-size:.58rem; font-weight:850; letter-spacing:.09em; text-transform:uppercase; }
.book-thumb strong { font-family:Georgia,"Times New Roman",serif; font-size:.88rem; line-height:1.08; }
.book-card .meta { color:var(--red); font-size:.76rem; font-weight:850; text-transform:uppercase; letter-spacing:.08em; }
.book-card h3 { font-size:1.16rem; }
.book-card p { font-size:.92rem; margin-bottom:.65rem; }
.text-link { font-weight:850; text-decoration:none; }
.text-link:hover { text-decoration:underline; }
.cover-auswandern { background:linear-gradient(155deg,#23754c,#10442b); }
.cover-komitate { background:linear-gradient(155deg,#c5423b,#8e1f1e); }
.cover-sprache { background:linear-gradient(155deg,#34805c,#16543a); }
.cover-kueche { background:linear-gradient(155deg,#d04b42,#97251f); }
.cover-geschichten { background:linear-gradient(155deg,#437458,#1d5135); }
.cover-reise { background:linear-gradient(155deg,#b94039,#7f201c); }

.breadcrumbs { padding:1rem 0 0; color:var(--muted); font-size:.88rem; }
.breadcrumbs a { color:inherit; }
.large-cover { width:min(100%,350px); aspect-ratio:2/3; border-radius:12px 22px 22px 12px; border-left:12px solid rgba(0,0,0,.15); padding:1.7rem; display:flex; flex-direction:column; justify-content:space-between; box-shadow:var(--shadow-lg); position:relative; overflow:hidden; color:#fff; }
.large-cover::after { content:""; position:absolute; inset:0; background:linear-gradient(145deg,rgba(255,255,255,.27),transparent 40%),linear-gradient(180deg,transparent,rgba(0,0,0,.13)); }
.large-cover > * { position:relative; z-index:1; }
.large-cover .cover-slot-label { color:var(--green-dark); }
.large-cover strong { font-family:Georgia,"Times New Roman",serif; font-size:clamp(2rem,3vw,2.8rem); line-height:1.02; }
.large-cover span:last-child { font-weight:800; }
.book-subtitle { margin:-.45rem 0 1rem; color:var(--muted); font-size:1.1rem; font-weight:700; }
.book-facts { list-style:none; padding:0; margin:1.3rem 0 0; display:flex; flex-wrap:wrap; gap:.55rem; }
.book-facts li { padding:.42rem .72rem; border:1px solid var(--line); border-radius:999px; background:rgba(255,255,255,.8); font-size:.86rem; }

.toc { margin-top:2rem; padding:1.45rem 1.6rem; background:white; border:1px solid var(--line); border-radius:20px; box-shadow:var(--shadow-sm); }
.toc strong { display:block; margin-bottom:.55rem; }
.toc ol { margin:0; padding-left:1.2rem; }
.toc li + li { margin-top:.25rem; }
.prose p,.prose li { font-size:1.04rem; }
.prose h2 { margin-top:3.25rem; }
.prose h3 { margin-top:2rem; }
.prose blockquote { margin:2rem 0; padding:1.35rem 1.45rem; border-left:5px solid var(--red); border-radius:0 18px 18px 0; background:linear-gradient(90deg,var(--red-light),#fff); box-shadow:var(--shadow-sm); font-size:1.12rem; font-weight:700; }
.check-list { list-style:none; padding:0; }
.check-list li { position:relative; padding-left:1.8rem; margin:.6rem 0; }
.check-list li::before { content:"✓"; position:absolute; left:0; color:var(--green); font-weight:900; }
.cta-box { margin:3rem 0; padding:clamp(1.7rem,4vw,2.8rem); border-radius:28px; color:#fff; background:linear-gradient(135deg,var(--green-dark),var(--green) 56%,var(--red)); box-shadow:var(--shadow-lg); position:relative; overflow:hidden; }
.cta-box::after { content:""; position:absolute; width:260px; height:260px; right:-90px; top:-120px; border-radius:50%; background:rgba(255,255,255,.12); }
.cta-box > * { position:relative; z-index:1; }
.cta-box h2,.cta-box h3 { color:#fff; }
.cta-box p { color:rgba(255,255,255,.88); }
.note { padding:1rem 1.2rem; border-left:4px solid var(--gold); border-radius:0 14px 14px 0; background:#fff8ea; }
.link-network { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1rem; }
.link-network a { padding:1rem 1.05rem; border-radius:16px; background:white; border:1px solid var(--line); box-shadow:var(--shadow-sm); font-weight:760; text-decoration:none; transition:.18s ease; }
.link-network a:hover { transform:translateY(-2px); box-shadow:var(--shadow); }
.faq { border-top:1px solid var(--line); }
.faq details { padding:1rem 0; border-bottom:1px solid var(--line); }
.faq summary { cursor:pointer; font-weight:850; }
.faq details p { margin:.65rem 0 .2rem; color:var(--muted); }

.author-section { background:linear-gradient(135deg,#fff,var(--cream)); }
.author-grid { display:grid; grid-template-columns:310px 1fr; gap:3.5rem; align-items:center; }
.author-portrait { width:290px; aspect-ratio:1; border-radius:50%; display:grid; place-items:center; background:radial-gradient(circle at 35% 30%,#fff,rgba(213,163,74,.28) 44%,rgba(181,45,43,.13)); border:1px solid rgba(213,163,74,.42); box-shadow:var(--shadow); position:relative; }
.author-portrait::before { content:""; position:absolute; inset:18px; border:1px solid rgba(30,105,68,.24); border-radius:50%; }
.author-portrait span { font-family:Georgia,"Times New Roman",serif; font-size:4rem; color:var(--green-dark); }
.author-portrait small { position:absolute; bottom:34px; color:var(--red); font-weight:750; }
.author-points { display:flex; flex-wrap:wrap; gap:.6rem; margin:1.2rem 0; }
.author-points span { padding:.45rem .7rem; border-radius:999px; background:var(--green-light); color:var(--green-dark); font-size:.86rem; font-weight:750; }
.author-points span:nth-child(2) { background:var(--red-light); color:var(--red-dark); }
.author-points span:nth-child(3) { background:var(--cream-dark); }
.hope-band { padding:3.6rem 0; background:linear-gradient(110deg,var(--red-dark),var(--red) 44%,var(--green) 100%); color:#fff; }
.hope-grid { display:flex; justify-content:space-between; gap:2rem; align-items:center; }
.hope-band h2 { color:#fff; max-width:780px; margin:0; }
.hope-band .eyebrow { color:#fff1cc; }

.site-footer { position:relative; padding:4rem 0 2rem; color:rgba(255,255,255,.83); background:linear-gradient(180deg,#173c29,#0d281b); }
.site-footer::before { content:""; position:absolute; inset:0 0 auto; height:6px; background:linear-gradient(90deg,var(--red) 0 33.333%,#fff 33.333% 66.666%,var(--green) 66.666%); }
.footer-grid { display:grid; grid-template-columns:1.25fr repeat(3,1fr); gap:2rem; }
.site-footer h2,.site-footer h3 { color:#fff; font-size:1.08rem; }
.site-footer a { color:rgba(255,255,255,.9); }
.site-footer ul { list-style:none; margin:0; padding:0; }
.site-footer li + li { margin-top:.45rem; }
.footer-bottom { margin-top:2.5rem; padding-top:1.3rem; border-top:1px solid rgba(255,255,255,.14); font-size:.84rem; }
.legal-placeholder { padding:1rem 1.2rem; border-radius:14px; border:2px dashed rgba(181,45,43,.45); background:#fff3f2; }
.finder-block { margin-top:4rem; }
.finder-block:first-of-type { margin-top:0; }

@media (max-width: 1020px) {
  .site-header { position:static; }
  .header-row { align-items:flex-start; flex-direction:column; padding:.9rem 0; gap:.75rem; }
  .main-nav { width:100%; overflow-x:auto; padding-bottom:.2rem; }
  .main-nav ul { flex-wrap:nowrap; justify-content:flex-start; width:max-content; }
  .hero-grid,.book-hero-grid { grid-template-columns:1fr; gap:2.8rem; }
  .book-stack { max-width:540px; min-height:395px; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(3) { border-left:0; border-top:1px solid var(--line); }
  .trust-item:nth-child(4) { border-top:1px solid var(--line); }
  .grid-3 { grid-template-columns:repeat(2,minmax(0,1fr)); }
.author-grid { grid-template-columns:240px 1fr; gap:2rem; }
  .author-portrait { width:230px; }
  .footer-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 650px) {
  .container,.narrow { width:min(calc(100% - 1.25rem),var(--max)); }
  .brand-copy strong { font-size:1.17rem; }
  .hero,.hero-small,.book-hero { padding:3.5rem 0; }
  h1 { font-size:2.65rem; }
  .section { padding:3.7rem 0; }
  .grid-3,.link-network,.footer-grid { grid-template-columns:1fr; }
  .trust-strip { margin-top:-.8rem; }
  .trust-grid { grid-template-columns:1fr; }
  .trust-item + .trust-item { border-left:0; border-top:1px solid var(--line); }
  .book-card { grid-template-columns:86px 1fr; }
  .book-stack { min-height:330px; }
  .mock-cover { width:178px; padding:.9rem; }
  .mock-cover strong { font-size:1.05rem; }
.cover-a { left:1%; }
  .cover-b { right:1%; }
  .cover-c { left:25%; top:76px; }
  .button { width:100%; }
  .large-cover { margin-inline:auto; }
  .author-grid { grid-template-columns:1fr; }
  .author-portrait { margin-inline:auto; }
  .hope-grid { flex-direction:column; align-items:flex-start; }
  .finder-block { margin-top:3rem; }
}


/* Amazon-Buchcover */
.book-thumb,
.large-cover {
  background-color: #fff;
}
.book-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  z-index: 4;
  border-radius: inherit;
}
.book-thumb .book-cover-image {
  padding: 0;
}
.large-cover .book-cover-image {
  padding: 0;
}
.cover-fallback {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.real-cover-mock { padding:0; background:#fff; }
.real-cover-mock img { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; z-index:3; background:#fff; border-radius:inherit; }
.mock-cover-fallback { position:relative; z-index:1; padding:1.35rem; height:100%; display:flex; flex-direction:column; justify-content:space-between; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
