/* ===========================================
   SozHerz — Stylesheet
   (Aktueller Stand: Arbeitsversion, Look wird noch angepasst)
   =========================================== */

:root {
  --sage: #7C9473;
  --sage-deep: #5F7458;
  --sage-tint: #E4EAE0;
  --coral: #E2775A;
  --coral-deep: #C15D42;
  --cream: #FAF6F0;
  --cream-warm: #F3ECE2;
  --ink: #34322D;
  --ink-soft: #635F56;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Poppins', sans-serif; font-weight: 600; margin: 0; }
.signature { font-family: 'Shadows Into Light', cursive; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

/* Header / Navigation — fixed, shrinks + becomes translucent with blur on scroll */
header.site-header-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 128px;
  background: rgba(250, 246, 240, 0.72);
  border-bottom: 1px solid rgba(124, 148, 115, 0.15);
  transition: height 0.25s ease;
}
header.site-header-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}
header.site-header-bar.scrolled { height: 76px; }
.header-spacer { height: 128px; }
.site-header {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 92px;
  width: auto;
  display: block;
  transition: height 0.25s ease;
}
header.site-header-bar.scrolled .logo-img { height: 42px; }
nav.main-nav { display: flex; gap: 36px; }
nav.main-nav a { color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 500; }
nav.main-nav a:hover, nav.main-nav a.active { color: var(--coral-deep); }

/* Generic section rhythm */
section { padding: 88px 0; }
section.tight { padding: 56px 0; }
.eyebrow-plain { color: var(--sage-deep); font-weight: 600; font-size: 14px; margin-bottom: 12px; }
.bg-warm { background: var(--cream-warm); }
.bg-sage { background: var(--sage-deep); color: var(--cream); }
.bg-sage h2 { color: #fff; }

/* Hero (index) — full-bleed photo background, text in a translucent panel */
.hero-full {
  position: relative;
  aspect-ratio: 1536 / 1024;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-content-wrap { position: relative; z-index: 1; width: 100%; padding: 64px 32px; }
.hero-panel {
  background: rgba(250, 246, 240, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(124, 148, 115, 0.3);
  padding: 48px 44px;
  max-width: 640px;
  border-radius: 4px;
}
.hero-panel h1 { font-size: 40px; line-height: 1.25; }
.hero-panel p.lead { font-size: 17px; color: var(--ink-soft); margin-top: 20px; max-width: 52ch; }

/* Buttons */
.btn {
  display: inline-block; background: var(--coral); color: #fff;
  padding: 14px 28px; border-radius: 4px; text-decoration: none;
  font-weight: 600; font-size: 15px; border: none; cursor: pointer;
}
.btn:hover { background: var(--coral-deep); }

/* Zweispaltige Textblöcke (Konzept etc.) */
.two-col { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
.two-col h2 { font-size: 32px; max-width: 16ch; }
.two-col .body-text p { color: var(--ink-soft); font-size: 16.5px; }
.two-col .body-text p + p { margin-top: 16px; }

.quote-block { margin-top: 32px; padding-left: 20px; border-left: 2px solid var(--coral); }
.quote-block p.signature { font-size: 26px; color: var(--coral-deep); margin: 0; }

/* Angebote-Liste */
.lead-sub { color: var(--ink-soft); max-width: 60ch; margin-bottom: 48px; }
.angebot-list { display: flex; flex-direction: column; }
.angebot-row {
  display: grid; grid-template-columns: 240px 1fr; gap: 32px;
  padding: 28px 0; border-top: 1px solid var(--sage-tint);
}
.angebot-row:last-child { border-bottom: 1px solid var(--sage-tint); }
.angebot-row h3 { font-size: 20px; color: var(--sage-deep); }
.angebot-row p { margin: 8px 0 0; color: var(--ink-soft); font-size: 15.5px; max-width: 58ch; }

/* Herz-Moment */
.heart-moment { text-align: center; }
.heart-moment .wrap { max-width: 640px; }
.heart-mark { width: 34px; height: 30px; margin: 0 auto 28px; display: block; }
.heart-moment h2 { font-size: 28px; line-height: 1.4; }

/* Kontakt */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.kontakt-grid h1, .kontakt-grid h2 { font-size: 30px; max-width: 14ch; }
.contact-detail { margin-top: 28px; }
.contact-detail div { font-size: 15px; color: var(--ink-soft); margin-bottom: 6px; }
.contact-detail strong { color: var(--ink); }

form { display: flex; flex-direction: column; gap: 16px; }
form label { font-size: 14px; font-weight: 500; color: var(--ink-soft); }
form input, form textarea {
  margin-top: 6px; width: 100%; padding: 12px 14px;
  border: 1px solid #D8D2C4; background: #fff;
  font-family: 'Manrope', sans-serif; font-size: 15px; border-radius: 3px;
}
.honeypot { position: absolute; left: -9999px; }

.meldung { padding: 16px 20px; border-radius: 4px; margin-bottom: 28px; font-size: 15px; }
.meldung.erfolg { background: var(--sage-tint); color: var(--sage-deep); }
.meldung.fehler { background: #F7E3DD; color: var(--coral-deep); }

/* Footer */
footer.site-footer {
  padding: 40px 0; border-top: 1px solid var(--sage-tint);
  color: var(--ink-soft); font-size: 14px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

@media (max-width: 780px) {
  .two-col, .kontakt-grid { grid-template-columns: 1fr; }
  .hero-full { aspect-ratio: auto; min-height: 480px; }
  .hero-panel { max-width: 100%; padding: 32px 28px; }
  .hero-panel h1 { font-size: 30px; }
  nav.main-nav { display: none; }
  .angebot-row { grid-template-columns: 1fr; gap: 8px; }
}
