/* trailLion Blog (traillion.run) - Loewen-Gold-Palette wie traillion.at */
:root {
  --bg: #f7f6f1;
  --surface: #fffdf9;
  --text: #2e2418;
  --muted: #6b5d4a;
  --line: #e6dfd2;
  --amber: #e8a01f;
  --amber-soft: rgba(232, 160, 31, 0.18);
  --gold: #a06e08;
  --gold-dark: #7d5406;
  --rust: #c2571f;
  --radius: 14px;
  --radius-s: 8px;
  --shadow: 0 1px 4px rgba(46, 36, 24, 0.08);
  --shadow-lift: 0 6px 18px rgba(46, 36, 24, 0.14);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.65;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }
a { color: var(--gold); }

.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 246, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-head.scrolled { box-shadow: 0 3px 14px rgba(46, 36, 24, 0.12); }
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; height: 58px; }
.logo { font-size: 1.15rem; font-weight: 800; letter-spacing: 0.03em; color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 9px; }
.logo b { color: var(--gold); font-weight: 800; }
.logo-berg { width: 72px; height: 30px; object-fit: contain; }
.head-links { display: flex; gap: 4px; }
.head-links a {
  color: var(--muted); text-decoration: none; font-size: 0.88rem; font-weight: 600;
  padding: 7px 12px; border-radius: 999px; transition: color 0.15s, background 0.15s;
}
.head-links a:hover { color: var(--gold-dark); background: var(--amber-soft); }

.blog-kicker {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rust);
}
main { padding: 48px 0 60px; }
h1 { font-size: clamp(1.7rem, 4.5vw, 2.5rem); line-height: 1.2; margin: 8px 0 14px; }
h1 .accent { color: var(--gold); }
h2 { font-size: 1.3rem; margin: 36px 0 12px; }
p { margin: 0 0 14px; }
.meta { color: var(--muted); font-size: 0.88rem; margin-bottom: 26px; }

.answer {
  background: var(--surface); border-left: 4px solid var(--gold);
  border-radius: var(--radius-s); box-shadow: var(--shadow);
  padding: 16px 18px; margin: 0 0 28px; font-size: 1.02rem;
}

table { border-collapse: collapse; width: 100%; font-size: 0.94rem; background: var(--surface); border-radius: var(--radius-s); box-shadow: var(--shadow); margin: 14px 0 22px; }
th, td { padding: 9px 12px; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--gold-dark); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
tr:last-child td { border-bottom: none; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }
.table-scroll { overflow-x: auto; }

.pbar { height: 10px; border-radius: 999px; background: var(--amber-soft); overflow: hidden; margin: 6px 0 22px; }
.pbar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--amber)); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px 22px; margin: 18px 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
a.card { display: block; text-decoration: none; color: var(--text); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--gold); }
.card h2 { margin: 4px 0 8px; }
.card .meta { margin-bottom: 6px; }

.btn-ghost {
  display: inline-block; padding: 10px 20px; border: 2px solid var(--gold);
  border-radius: 999px; color: var(--gold-dark); font-weight: 700; text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.btn-ghost:hover { background: var(--amber-soft); }

figure { margin: 0 0 24px; }
figure img { max-width: 100%; height: auto; border-radius: var(--radius); display: block; }
figcaption { color: var(--muted); font-size: 0.82rem; margin-top: 6px; }

.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-s); padding: 12px 16px; margin-bottom: 10px; }
.faq summary { font-weight: 700; cursor: pointer; }
.faq details p { margin: 10px 0 2px; }

.quellen { color: var(--muted); font-size: 0.85rem; border-top: 1px solid var(--line); margin-top: 36px; padding-top: 16px; }
.site-foot { border-top: 1px solid var(--line); padding: 22px 0 34px; color: var(--muted); font-size: 0.85rem; }
.site-foot .wrap { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.site-foot a { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .card, .pbar i { transition: none !important; }
}
@media (max-width: 640px) {
  .head-links a { font-size: 0.8rem; padding: 6px 8px; }
}
