/* ============================================================
   Ey, sei mal ehrlich! — Website Relaunch
   Self-contained stylesheet (Netlify-ready, no dependencies
   except Google Fonts, loaded per page).
   Brand: Altrosa #9d5b5b · Blaugrau #81979c · Creme #f6ece5
   Type: Libre Baskerville (Headlines) · Raleway (Body)
   Mobile-first.
   ============================================================ */

:root {
  --rose-900: #5f3636;
  --rose-700: #7d4949;
  --rose-500: #9d5b5b;
  --rose-300: #c08e8e;
  --rose-100: #e6d0d0;
  --rose-50:  #f4e8e8;

  --slate-900: #3d474a;
  --slate-700: #56656a;
  --slate-500: #81979c;
  --slate-300: #aebbbe;
  --slate-100: #dbe3e4;
  --slate-50:  #eef2f3;

  --cream-500: #f6ece5;
  --cream-300: #faf3ee;
  --cream-100: #fdfaf8;
  --cream-700: #e9dbd0;

  --ink-900: #332b28;
  --ink-700: #55493f;
  --ink-500: #7d7168;

  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Raleway", "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(61, 44, 40, 0.08);
  --shadow-md: 0 8px 28px rgba(61, 44, 40, 0.10);
  --radius-card: 24px;
  --radius-btn: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream-500);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.25; margin: 0 0 0.6em; }
h1 { font-size: clamp(30px, 6vw, 52px); color: var(--rose-500); }
/* Slogan mit zwei Ebenen: Hook kursiv in Altrosa, Aussage in Blaugrau */
h1:has(.hook) { color: var(--slate-900); }
h1 .hook { display: block; font-style: italic; color: var(--rose-500); font-size: 0.58em; line-height: 1.3; margin-bottom: 12px; }
h2 { font-size: clamp(26px, 4.5vw, 38px); color: var(--rose-500); }
h3 { font-size: clamp(20px, 3vw, 24px); color: var(--ink-900); }
p  { margin: 0 0 1em; text-wrap: pretty; }
a  { color: var(--rose-500); }
img { max-width: 100%; display: block; }

.kicker {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin: 0 0 14px;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 22px; }

/* ---------- Buttons: two clearly distinct CTA paths ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-btn);
  padding: 15px 30px;
  min-height: 48px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 160ms ease-in-out, border-color 160ms ease-in-out, color 160ms ease-in-out;
}
/* Weg 1: Beratungsgespräch (Pakete) — solid Blaugrau */
.btn-slate { background: var(--slate-500); color: #fff; }
.btn-slate:hover { background: var(--slate-700); }
/* Weg 2: Einzelstunde direkt buchen — solid Altrosa */
.btn-rose { background: var(--rose-500); color: #fff; }
.btn-rose:hover { background: var(--rose-700); }
/* Tertiär / ruhig */
.btn-outline { background: transparent; color: var(--slate-700); border-color: var(--slate-300); }
.btn-outline:hover { border-color: var(--slate-500); color: var(--slate-900); }
.btn-lg { font-size: 17px; padding: 17px 36px; }
.btn small { display: block; font-weight: 500; font-size: 12.5px; opacity: 0.85; }

/* ---------- Header ---------- */
.site-header {
  background: var(--cream-500);
  border-bottom: 1px solid var(--cream-700);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .bar {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 44px; width: auto; border-radius: 8px; }
.brand span {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink-900);
  white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 999px;
  transition: background 160ms ease-in-out, color 160ms ease-in-out;
}
.nav a:hover { background: var(--cream-700); color: var(--ink-900); }
.nav a.active { background: var(--rose-500); color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--slate-300);
  border-radius: 10px;
  padding: 8px 12px;
  font: 600 14px var(--font-body);
  color: var(--ink-700);
  cursor: pointer;
}
@media (max-width: 840px) {
  .brand span { display: none; }
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream-300);
    border-bottom: 1px solid var(--cream-700);
    padding: 10px 16px 16px;
    box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 16px; font-size: 16px; }
}

/* ---------- Sections: bewusster Farbrhythmus statt Beige-Monotonie ---------- */
.section { padding: 72px 0; }
.section-cream { background: var(--cream-300); }
.section-white { background: #fff; }
.section-rose { background: var(--rose-50); }
.section-slate { background: var(--slate-50); }
.section-dark { background: var(--slate-900); color: var(--cream-100); }
.section-dark h2, .section-dark h1 { color: var(--cream-100); }
.section-dark .kicker { color: var(--slate-300); }
@media (max-width: 640px) { .section { padding: 52px 0; } }

/* ---------- Sanftes Einblenden (site.js) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms ease-in-out, transform 600ms ease-in-out; }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: 90ms; }
  .reveal.d2 { transition-delay: 180ms; }
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(61, 44, 40, 0.08); }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  padding: 32px;
  transition: box-shadow 200ms ease-in-out, transform 200ms ease-in-out;
}
a.card { text-decoration: none; color: inherit; }
.card.lift:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(61, 44, 40, 0.14); }
.card-cream { background: var(--cream-100); }

/* ---------- Hero photo treatment ---------- */
.photo-warm {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

/* ---------- Testimonials ---------- */
.stars { color: var(--rose-500); font-size: 17px; letter-spacing: 3px; margin-bottom: 12px; }
.testimonial {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.testimonial blockquote { margin: 0 0 16px; font-size: 16px; color: var(--ink-700); }
/* Lange Rezensionen: sanft gekürzt, per Klick aufklappbar */
.testimonial.clamped blockquote {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}
.testimonial.open blockquote { display: block; -webkit-line-clamp: unset; overflow: visible; }
.read-more {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  margin: -6px 0 14px;
  font: 600 14.5px var(--font-body);
  color: var(--slate-700);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.read-more:hover { color: var(--slate-900); }
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-900);
  margin-top: auto;
}
.testimonial cite small { display: block; font-weight: 500; color: var(--ink-500); }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ---------- Check list ---------- */
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li::before {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--slate-100) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2356656a" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / 12px no-repeat;
}

/* ---------- Price ---------- */
.price { font-family: var(--font-display); font-size: 30px; color: var(--ink-900); }
.price small { font-family: var(--font-body); font-size: 13.5px; color: var(--ink-500); display: block; }

/* ---------- Leseproben-Galerie + Lightbox ---------- */
.page-thumb {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: zoom-in;
  padding: 0;
  border: 1px solid var(--cream-700);
  background: #fff;
  transition: box-shadow 200ms ease-in-out, transform 200ms ease-in-out;
}
.page-thumb:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.page-thumb img { width: 100%; display: block; }
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(51, 43, 40, 0.88);
  display: none;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: min(86vw, 720px); border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.lightbox button {
  position: absolute;
  background: rgba(253, 250, 248, 0.14);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox button:hover { background: rgba(253, 250, 248, 0.28); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); color: var(--cream-100); font: 600 14px var(--font-body); }

/* ---------- Leseprobe / placeholders ---------- */
.placeholder-page {
  aspect-ratio: 3 / 4.2;
  border-radius: 14px;
  background: repeating-linear-gradient(-45deg, var(--cream-100), var(--cream-100) 14px, var(--cream-300) 14px, var(--cream-300) 28px);
  border: 1px solid var(--cream-700);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  color: var(--ink-500);
  font: 500 13px/1.5 ui-monospace, "SF Mono", Menlo, monospace;
  position: relative;
  overflow: hidden;
}
.leseprobe-band {
  position: absolute;
  top: 14px;
  right: -34px;
  transform: rotate(38deg);
  background: var(--rose-500);
  color: #fff;
  font: 600 11px/1 var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 40px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--slate-900);
  color: var(--cream-100);
  padding: 48px 0 36px;
  margin-top: 0;
}
.site-footer .cols {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 56px;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer p { font-size: 14.5px; color: var(--slate-300); max-width: 44ch; }
.site-footer nav { display: flex; flex-direction: column; gap: 8px; }
.site-footer a { color: var(--cream-100); font-size: 14.5px; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-social { display: flex; gap: 18px; margin-top: 14px; }
.footer-social a { color: var(--slate-300); font-weight: 600; }
.footer-social a:hover { color: var(--cream-100); }
.site-footer .legal { margin-top: 28px; text-align: center; font-size: 13px; color: var(--slate-300); padding: 0 22px; }

/* ---------- Accordion (Datenschutz) ---------- */
details.legal-acc {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  padding: 0 22px;
}
details.legal-acc summary {
  cursor: pointer;
  font-weight: 600;
  padding: 16px 0;
  color: var(--ink-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
details.legal-acc summary::after { content: "+"; font-size: 20px; color: var(--slate-500); }
details.legal-acc[open] summary::after { content: "–"; }
details.legal-acc > div { padding: 0 0 18px; font-size: 15.5px; color: var(--ink-700); }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 500;
  max-width: 560px; margin: 0 auto;
  background: #fff; color: var(--ink-900);
  border-top: 3px solid var(--rose-500);
  border-radius: var(--radius-card); box-shadow: var(--shadow-md);
  padding: 22px 26px 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
}
.cookie-banner .kicker { margin: 0 0 6px; }
.cookie-banner p { margin: 0; font-size: 14.5px; color: var(--ink-700); flex: 1 1 260px; }
.cookie-banner code { color: var(--ink-900); background: var(--cream-500); padding: 1px 5px; border-radius: 4px; }
.cookie-banner a { font-weight: 600; }
.cookie-banner-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-banner .btn { padding: 10px 20px; min-height: auto; font-size: 14px; }
@media (max-width: 560px) { .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; } }

/* ---------- Kontaktformular-Placeholder (vor Cookie-Zustimmung) ---------- */
.form-consent-gate { text-align: center; padding: 12px 4px; }
.form-consent-gate p { color: var(--ink-700); font-size: 15px; margin: 0 0 18px; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--ink-500); font-size: 14.5px; }
