/* ============================================================
   LAYOUT – Navigation, Abschnittsbasis, Footer
   ============================================================ */

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo span { color: var(--terra); }

.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 6px;
  opacity: 1 !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--terra-light) !important; }

.nav-logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 0.3rem;
  line-height: 0;
}

/* ── ABSCHNITTSBASIS ── */
section {
  padding: 8rem 5%;
  border-top: 1px solid var(--border);
}

.hero, .pricing, .cta-section {
  border-top: none;
}

.how, #heim, #helfer {
  min-height: 100vh;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: center;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 3rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .logo { color: var(--white); font-size: 1.2rem; }

footer p { font-size: 0.82rem; }

footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

footer a:hover { color: var(--white); }

.footer-links { display: flex; gap: 1.5rem; }
