/* ═══════════════════════════════════════════════════════════════
   LEADKRAFT — Shared Stylesheet
   Purpose × Connect × Impact
═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --p:#185FA5; --p-l:#E6F1FB; --p-m:#378ADD;
  --c:#0F6E56; --c-l:#E1F5EE; --c-m:#1D9E75;
  --i:#534AB7; --i-l:#EEEDFE; --i-m:#7F77DD;
  --ink:#111110; --ink-mid:#555552; --ink-soft:#99988F;
  --bg:#FAFAF8; --bg2:#F4F3EE;
  --border:rgba(17,17,16,0.10);
  --sans:'DM Sans',system-ui,sans-serif;
  --serif:'Cormorant Garamond',Georgia,serif;
  --r:8px; --rl:12px; --rxl:16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SHARED NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.125rem 4rem;
  background: rgba(250,250,248,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-nav .logo {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: var(--ink); text-decoration: none;
}
.site-nav .logo span { color: var(--p); }
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a { font-size: .875rem; color: var(--ink-mid); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: .875rem; font-weight: 500;
  padding: .55rem 1.35rem;
  border: 1px solid var(--ink); border-radius: 2px;
  background: transparent; color: var(--ink);
  text-decoration: none; transition: all .2s; cursor: pointer;
  font-family: var(--sans);
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }
.nav-cta.filled { background: var(--ink); color: var(--bg); }
.nav-cta.filled:hover { background: #333; }

/* ── SHARED FOOTER ── */
.site-footer {
  padding: 3rem 4rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-logo { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; }
.footer-logo span { color: var(--p); }
.footer-tagline { font-size: .8125rem; color: var(--ink-soft); line-height: 1.6; max-width: 220px; }
.footer-col h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-bottom: .875rem; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .875rem; color: var(--ink-mid); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--ink); }
.footer-formula { font-family: var(--serif); font-size: .875rem; color: var(--ink-soft); font-style: italic; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: .75rem;
}
.footer-copy { font-size: .8125rem; color: var(--ink-soft); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; padding: .875rem 2rem;
  background: var(--ink); color: var(--bg);
  border: none; border-radius: 2px;
  font-family: var(--sans); font-size: .875rem; font-weight: 500;
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.btn-primary:hover { background: #333; transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; padding: .875rem 2rem;
  background: transparent; color: var(--ink);
  border: 1px solid var(--border); border-radius: 2px;
  font-family: var(--sans); font-size: .875rem; font-weight: 400;
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.btn-ghost:hover { border-color: var(--ink); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ── PROSE PAGE (Impressum / Datenschutz) ── */
.prose-wrap {
  max-width: 740px; margin: 0 auto;
  padding: 8rem 2rem 5rem;
}
.prose-tag {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-soft); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 10px;
}
.prose-tag::before { content:''; width:20px; height:1px; background:var(--ink-soft); }
.prose-wrap h1 { font-family: var(--serif); font-size: clamp(2rem,5vw,3.25rem); font-weight: 300; line-height: 1.15; color: var(--ink); margin-bottom: 2rem; }
.prose-wrap h1 em { font-style: italic; color: var(--p); }
.prose-wrap h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--ink); margin: 2.5rem 0 .75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.prose-wrap h3 { font-size: 1rem; font-weight: 500; color: var(--ink); margin: 1.5rem 0 .5rem; }
.prose-wrap p { font-size: .9375rem; font-weight: 300; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1rem; }
.prose-wrap a { color: var(--p); text-decoration: none; }
.prose-wrap a:hover { text-decoration: underline; }
.prose-wrap ul { margin: .75rem 0 1rem 1.25rem; }
.prose-wrap ul li { font-size: .9375rem; font-weight: 300; color: var(--ink-mid); line-height: 1.75; margin-bottom: .375rem; }
.info-box {
  background: var(--p-l); border-left: 3px solid var(--p);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1rem 1.25rem; margin: 1.5rem 0;
}
.info-box p { color: var(--ink-mid); margin: 0; }
.info-box strong { color: var(--ink); font-weight: 500; }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .site-nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .site-footer { padding: 2.5rem 1.5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .prose-wrap { padding: 7rem 1.25rem 3rem; }
}
@media(max-width:600px){
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
}
