/* ============================================================
   Daniela Sieber — Redesign 2026
   Design-System nach CI-Entwurf 02.07.2026 (brand-visual.json)
   ============================================================ */

:root {
  --teal: #35827E;
  --teal-dark: #2A6B67;
  --teal-soft: #E9F1EF;
  --ink: #3E4A49;
  --ink-soft: #535F5E;
  --muted: #75817F;
  --cream: #FBF7F0;
  --blush: #FAEBE1;
  --card: #FFFFFF;
  --line: #E7E0D6;
  --line-cool: #D8E4E2;

  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
  --font-logo: 'Great Vibes', cursive;
  --font-script: 'Dancing Script', cursive;

  --shadow-sm: 0 1px 3px rgba(62, 74, 73, 0.06);
  --shadow-md: 0 10px 30px rgba(62, 74, 73, 0.08);
  --radius: 14px;
  --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}

h1 { font-size: clamp(36px, 5vw, 52px); line-height: 1.15; }
h2 { font-size: clamp(27px, 3.4vw, 34px); }
h3 { font-size: clamp(20px, 2.4vw, 24px); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 860px; }

/* ---------- Bausteine ---------- */

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.rule {
  width: 44px;
  height: 2px;
  background: var(--teal);
  border: 0;
  margin: 22px 0;
}
.rule--center { margin-left: auto; margin-right: auto; }

.sub {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 24px);
  color: var(--teal);
  line-height: 1.4;
  margin-top: 12px;
}

.script {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: clamp(24px, 3.2vw, 30px);
  color: var(--teal);
  line-height: 1.45;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 999px;
  padding: 15px 30px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; }
.btn:active { background: #225956; }

.btn--ghost { background: transparent; color: var(--teal); }
.btn--ghost:hover { background: var(--teal); color: #fff; }

.btn-note { font-size: 14px; color: var(--muted); margin-top: 14px; }

.leaf-badge {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.leaf-badge svg { width: 32px; height: 32px; }

/* ---------- Header ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__mark { flex: 0 0 auto; }
.logo__mark svg { width: 44px; height: 44px; }
.logo__name {
  font-family: var(--font-logo);
  font-size: 33px;
  color: var(--teal);
  line-height: 1;
  white-space: nowrap;
}
.logo__tag {
  display: block;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 5px;
  line-height: 1.6;
  white-space: nowrap;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }

.nav .drop__label {
  background: none;
  border: none;
  font-family: var(--font-body);
}

.nav a, .nav summary, .nav .drop__label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 9px;
  cursor: pointer;
  white-space: nowrap;
}
.nav a:hover, .nav .drop:hover > .drop__label { color: var(--teal); }
.nav a[aria-current="page"] { color: var(--teal); }

.drop { position: relative; }
.nav .drop__label { display: flex; align-items: center; gap: 6px; }
.drop__label::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.drop__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.drop:hover .drop__menu,
.drop:focus-within .drop__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop__menu a {
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
}
.drop__menu a:hover { background: var(--teal-soft); color: var(--teal-dark); }

.topbar .btn { padding: 12px 24px; margin-left: 8px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */

.hero { position: relative; background: var(--cream); overflow: hidden; }
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 40%) 1fr;
  align-items: center;
  min-height: 560px;
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero__copy { padding-right: 28px; }
.hero__copy h1 { margin-right: -110px; }
.hero__copy p { max-width: 46ch; }
.hero .btn { margin-top: 30px; }

/* Vollflächiges Bild in der rechten Hero-Hälfte (wie CI-Entwurf) */
.hero__art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
}
.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Opakes, stehendes Creme-Oval über die volle Bildhöhe, schneidet als Rundung in die linke Bildkante (wie CI-Entwurf) */
.hero__art::after {
  content: "";
  position: absolute;
  top: -9%;
  bottom: -9%;
  left: -200px;
  width: 360px;
  border-radius: 50%;
  background: var(--cream);
  pointer-events: none;
}
.hero__art--plain::after { display: none; }

.art-frame { aspect-ratio: 14 / 11; }
.art-frame--portrait { aspect-ratio: 4 / 5; }
.art-frame--wide { aspect-ratio: 14 / 10; }
.art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ---------- Sektionen ---------- */

.sec { padding: 96px 0; }
.sec--blush { background: var(--blush); }
.sec--white { background: #fff; }
.sec--teal-soft { background: var(--teal-soft); }
.sec--cream { background: var(--cream); }

.sec__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split--contact { grid-template-columns: 1.4fr 1fr; align-items: start; }

.split .art-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Karten */

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.check-card { padding: 34px 38px; }
.notice .check-card, .notice > .card { padding-top: 40px; padding-left: 44px; }
.check-card__title {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--teal);
  margin-bottom: 18px;
}
.check-card ul { list-style: none; }
.check-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 7px 0;
  color: var(--ink-soft);
}
.check-card li svg { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 5px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card-grid--6 { grid-template-columns: repeat(6, 1fr); gap: 20px; }

.tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.tile svg { width: 44px; height: 44px; margin: 0 auto 18px; }
.tile p { font-size: 15.5px; line-height: 1.6; }

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 34px 30px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.offer-card:hover { box-shadow: var(--shadow-md); border-color: var(--line-cool); }
.offer-card svg { width: 40px; height: 40px; }
.offer-card h3 { font-size: 22px; }
.offer-card p { font-size: 15.5px; flex: 1; }
.offer-card .more {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.group-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 48px 0 26px;
}
.group-label::before, .group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Ablauf / Schritte */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step { text-align: center; padding: 0 6px; }
.step__num {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid var(--teal);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 15px; line-height: 1.65; }

/* Zitate / Stimmen */

.quote-card { padding: 34px 32px; display: flex; flex-direction: column; gap: 18px; }
.quote-card blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
}
.quote-card cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
}
.quote-card svg { width: 26px; height: 26px; }

/* Hinweis + CTA-Zone (wie CI-Entwurf unten) */

.duo {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.notice { position: relative; }
.notice .leaf-badge {
  position: absolute;
  top: -30px;
  left: -30px;
  z-index: 1;
}
.notice h3 { color: var(--teal); font-size: 20px; margin-bottom: 10px; }
.notice p { font-size: 15px; line-height: 1.7; }

.cta-block .leaf-inline { width: 30px; height: 30px; margin-bottom: 14px; }
.cta-block h2 { margin-bottom: 12px; }
.cta-block .btn { margin-top: 24px; }

/* Chips (Mitgliedschaften etc.) */

.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* ---------- Footer ---------- */

.band {
  background: var(--teal);
  text-align: center;
  padding: 44px 24px 48px;
}
.band svg { width: 30px; height: 30px; margin: 0 auto 10px; }
.band p {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
  color: #fff;
}

.footer { background: var(--cream); border-top: 1px solid var(--line); padding: 64px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer li { padding: 4px 0; font-size: 15.5px; }
.footer a { color: var(--ink-soft); }
.footer a:hover { color: var(--teal); }
.footer .logo { margin-bottom: 16px; }
.footer .logo__name { font-size: 30px; }
.footer p { font-size: 15px; max-width: 34ch; }

.footer__legal {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}
.footer__legal nav { display: flex; gap: 22px; }
.footer__legal a { color: var(--muted); }
.footer__legal a:hover { color: var(--teal); }

/* ---------- FAQ ---------- */

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--teal);
  border-bottom: 1.5px solid var(--teal);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-right: 4px;
}
.faq-list details[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.faq-list details[open] summary { color: var(--teal); }
.faq-list .faq-body { padding: 0 26px 24px; font-size: 16px; }

/* ---------- Formular ---------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .field--full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(53, 130, 126, 0.15);
}
.field textarea { min-height: 150px; resize: vertical; }

.contact-item { display: flex; align-items: center; gap: 16px; padding: 10px 0; }
.contact-item svg { width: 22px; height: 22px; flex: 0 0 22px; }
.contact-item a, .contact-item span { font-size: 17px; color: var(--ink); font-weight: 600; }
.contact-item a:hover { color: var(--teal); }

/* ---------- Reveal-Animationen ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 90ms; }
.reveal:nth-child(3) { transition-delay: 180ms; }
.reveal:nth-child(4) { transition-delay: 270ms; }
.reveal:nth-child(5) { transition-delay: 360ms; }
.reveal:nth-child(6) { transition-delay: 450ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .drop__menu { transition: none; }
  * { animation: none !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1280px) {
  .logo__tag { display: none; }
}

@media (max-width: 1080px) {
  .container { padding: 0 28px; }
}

@media (max-width: 1200px) {
  .nav-toggle { display: block; }
  .topbar .btn { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 0;
    max-height: calc(100vh - 90px);
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  body:has(.topbar.nav-open) { overflow: hidden; }
  .topbar.nav-open .nav { display: flex; }
  .nav a, .nav summary { padding: 12px 8px; }
  .drop__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    background: var(--cream);
    margin: 0 0 6px;
  }
  .drop__label::after { display: none; }

  .hero__inner, .split, .duo { grid-template-columns: 1fr; gap: 40px; }
  .hero__inner { min-height: 0; padding-top: 40px; padding-bottom: 56px; }
  .hero__art { position: relative; top: auto; right: auto; bottom: auto; width: 100%; height: 320px; }
  .hero__art::after { display: none; }
  .sec { padding: 60px 0; }
  .card-grid, .steps { grid-template-columns: 1fr 1fr; }
  .card-grid--6 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .notice .leaf-badge { top: -26px; left: -10px; }
  .card-grid, .card-grid--6, .steps, .form-grid { grid-template-columns: 1fr; }
  .logo__name { font-size: 27px; }
  .footer__legal { flex-direction: column; align-items: flex-start; }
}
