/* Gemeinsames Stylesheet aller Unterseiten von vladimirkarius.com
   Farbwerte, Schriften und Abstände identisch mit index.html.
   Montserrat lokal ausgeliefert, kein Aufruf an Google. SIL Open Font License 1.1. */

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/montserrat-v31-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/montserrat-v31-latin-600.woff2") format("woff2");
}

:root {
  --bg:          #FAF7F2;
  --bg-alt:      #F0EDE7;
  --bg-accent:   #E4EDE9;
  --text:        #2C2A28;
  --text-soft:   #5C5854;
  --accent:      #7BA098;
  --accent-dark: #5F857C;
  --border:      rgba(44, 42, 40, 0.10);
  --shadow:      0 1px 3px rgba(44, 42, 40, 0.04), 0 4px 12px rgba(44, 42, 40, 0.04);
  --radius:      12px;
  --max:         1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-weight: 600; line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(34px, 5vw, 52px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.5vw, 36px); letter-spacing: -0.01em; margin-bottom: 24px; }
h3 { font-size: 20px; margin-bottom: 12px; }

p { margin: 0 0 18px; color: var(--text-soft); }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--text); }

/* --- NAV --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.brand { font-weight: 600; font-size: 18px; color: var(--text); }
.brand:hover { color: var(--accent-dark); }

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a { color: var(--text); font-size: 15px; }
.nav-links a:hover { color: var(--accent-dark); }

.nav-back {
  color: var(--accent-dark) !important;
  font-weight: 600;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* --- HERO --- */
.hero {
  background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg) 100%);
  padding: 96px 5% 80px;
}

.wrap { max-width: var(--max); margin: 0 auto; }

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 { margin-bottom: 20px; max-width: 820px; }

.lead {
  font-size: clamp(18px, 2vw, 21px);
  color: var(--text-soft);
  max-width: 680px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s ease;
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-dark); color: white; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dark); }

.button {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 100px;
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  text-decoration: none;
}
.button:hover { background: var(--accent-dark); color: white; }

.cta-row {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* --- SECTIONS --- */
.section {
  padding: 80px 5%;
  border-top: 1px solid var(--border);
}
.section.paper       { background: white; }
.section.cta-section { background: var(--bg-accent); }

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.narrow { max-width: 780px; }

/* --- ANGEBOTSKARTEN --- */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
}

.card .cta-row { margin-top: auto; padding-top: 24px; }

/* --- ECKDATEN --- */
.facts {
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
}

.facts dt {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
}

.facts dd { margin: 4px 0 0; color: var(--text-soft); font-size: 15px; }

/* --- LISTEN --- */
ul.clean {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

ul.clean li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
}

ul.clean li:first-child { border-top: 1px solid var(--border); }

/* --- FÜNF SÄULEN (Kneipp) --- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.pillar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 3px solid var(--accent);
}

.pillar .num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.pillar h3 { font-size: 17px; margin-bottom: 8px; }
.pillar p  { font-size: 14px; margin: 0; }

/* --- SIGNATURE (ordnung/) --- */
.signature-box {
  background: white;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.signature-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 24px;
}

.book-cover {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(44, 42, 40, 0.18), 0 1px 3px rgba(44, 42, 40, 0.12);
  transition: transform .25s ease;
}
.book-cover:hover { transform: translateY(-3px); }

.book-caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.4;
}
.book-caption strong { color: var(--text); font-weight: 600; }

.signature-quote {
  border-left: 3px solid var(--accent);
  padding: 12px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text);
  font-size: 18px;
  line-height: 1.5;
}
.signature-quote cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 8px;
}

/* --- FOOTER --- */
footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 28px 5%;
  font-size: 14px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer a { color: rgba(255, 255, 255, 0.9); }

/* --- RESPONSIVE --- */
@media (max-width: 780px) {
  .hero    { padding: 72px 5% 64px; }
  .section { padding: 60px 5%; }
  .split   { grid-template-columns: 1fr; gap: 28px; }
  .grid    { grid-template-columns: 1fr; }
  .grid-3  { grid-template-columns: 1fr; }
  .nav-back { padding-left: 0; border-left: none; }
  .nav-links { gap: 16px; }
  .signature-layout { grid-template-columns: 1fr; gap: 24px; }
  .signature-box { padding: 28px 24px; }
  .signature-layout .book-cover { max-width: 180px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .nav-links { font-size: 14px; gap: 12px; }
}
