/* ══════════════════════════════════════════════════════
   style.css – Betreuungsbüro Lenz · betreuung-lenz.de
   Gemeinsames Stylesheet für alle Seiten
   ══════════════════════════════════════════════════════ */

/* ── VARIABLEN ── */
:root {
  --navy:      #1a2535;
  --navy-mid:  #243044;
  --blue:      #2d4a7a;
  --blue-light:#3a5f9a;
  --gold:      #b89a5e;
  --gold-light:#d4b87a;
  --cream:     #f5f2ec;
  --warm-white:#faf9f6;
  --text:      #1e2533;
  --text-light:#4a5568;
  --border:    rgba(184,154,94,0.22);
  --success:   #2e7d52;
  --error:     #b94040;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  font-size: 20px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 88px;
  background: rgba(26,37,53,0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184,154,94,0.2);
}

/* Logo: mix-blend-mode hebt den schwarzen PNG-Hintergrund auf */
.nav-logo { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.nav-logo img {
  height: 72px; width: auto; display: block;
  mix-blend-mode: screen;
  filter: brightness(2.0) contrast(1.15) saturate(1.1);
  transition: filter 0.3s;
}
.nav-logo img:hover { filter: brightness(2.4) contrast(1.2) saturate(1.2); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(245,242,236,0.72); text-decoration: none;
  font-size: 0.92rem; font-weight: 400;
  letter-spacing: 0.07em; text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: none; border: 1.5px solid var(--gold);
  color: var(--gold); padding: 11px 28px;
  font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; transition: all 0.25s; font-weight: 500;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* ── Mobile Nav ── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); transition: all 0.3s; }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile-menu {
  display: none; position: fixed;
  top: 88px; left: 0; right: 0;
  background: rgba(26,37,53,0.99);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184,154,94,0.2);
  padding: 24px 32px 32px; z-index: 99;
  flex-direction: column; gap: 0;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu li { list-style: none; border-bottom: 1px solid rgba(184,154,94,0.12); }
.nav-mobile-menu li:last-child { border-bottom: none; }
.nav-mobile-menu a {
  display: block; padding: 16px 0;
  color: rgba(245,242,236,0.8); text-decoration: none;
  font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s;
}
.nav-mobile-menu a:hover { color: var(--gold-light); }
.nav-mobile-cta {
  margin-top: 20px; display: inline-block;
  border: 1.5px solid var(--gold); color: var(--gold);
  padding: 14px 28px; text-align: center; text-decoration: none;
  font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; transition: all 0.25s;
}
.nav-mobile-cta:hover { background: var(--gold); color: var(--navy); }

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  position: relative; overflow: hidden;
  padding: 130px 64px 90px; gap: 72px;
}
.hero-bg-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(184,154,94,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,154,94,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-content { position: relative; }
.hero-eyebrow {
  font-size: 0.88rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before { content: ''; display: block; width: 44px; height: 1.5px; background: var(--gold); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 600; color: var(--cream);
  line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-sub {
  font-size: 1.2rem; color: rgba(245,242,236,0.68);
  max-width: 540px; line-height: 1.85; margin-bottom: 52px; font-weight: 300;
}
.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 17px 42px; font-size: 1rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--cream);
  padding: 17px 42px; font-size: 1rem; font-weight: 400;
  letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid rgba(245,242,236,0.3);
  cursor: pointer; transition: border-color 0.25s, color 0.25s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-visual { position: relative; height: 600px; }
.hero-img-main {
  position: absolute; top: 0; right: 0;
  width: 88%; height: 78%; object-fit: cover;
  filter: brightness(0.75) sepia(0.1);
}
.hero-badge {
  position: absolute; bottom: 36px; right: 0;
  background: var(--gold); color: var(--navy);
  padding: 20px 26px; text-align: center; width: 140px;
}
.hero-badge-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 600; line-height: 1; }
.hero-badge-text { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-top: 4px; line-height: 1.3; }

/* ══════════════════════════════════════════════════════
   INTRO STRIP
   ══════════════════════════════════════════════════════ */
#intro {
  background: var(--navy-mid);
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
  padding: 0 64px;
}
.intro-item { padding: 52px 44px; text-align: center; }
.intro-divider { background: rgba(184,154,94,0.18); align-self: stretch; }
.intro-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.intro-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 8px; font-weight: 600; }
.intro-text { font-size: 1.02rem; color: rgba(245,242,236,0.65); font-weight: 300; line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   ALLGEMEINE SECTION-STYLES
   ══════════════════════════════════════════════════════ */
section { padding: 110px 64px; }
.section-eyebrow {
  font-size: 0.82rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--gold); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 600; color: var(--navy);
  line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 22px;
}
.section-sub { font-size: 1.1rem; color: var(--text); max-width: 600px; line-height: 1.9; font-weight: 400; }
.gold-rule { width: 56px; height: 2px; background: var(--gold); margin: 32px 0; }

/* ══════════════════════════════════════════════════════
   LEISTUNGEN
   ══════════════════════════════════════════════════════ */
#leistungen { background: var(--warm-white); }
.leistungen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.leistung-card {
  background: #fff;
  border: 1.5px solid rgba(184,154,94,0.25);
  border-top: 4px solid var(--gold);
  padding: 36px 32px 40px; border-radius: 2px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.leistung-card:hover { box-shadow: 0 8px 32px rgba(26,37,53,0.10); transform: translateY(-3px); }
.leistung-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 14px; letter-spacing: 0.05em; }
.leistung-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.25; }
.leistung-text { font-size: 1rem; color: var(--text); line-height: 1.8; font-weight: 400; }

/* ══════════════════════════════════════════════════════
   PHOTO STRIP
   ══════════════════════════════════════════════════════ */
.photo-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; height: 440px; gap: 3px; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72) sepia(0.1); transition: filter 0.4s; display: block; }
.photo-strip img:hover { filter: brightness(0.88) sepia(0.04); }

/* ══════════════════════════════════════════════════════
   REFORM 2023
   ══════════════════════════════════════════════════════ */
#reform { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.reform-box { background: var(--navy); padding: 56px; position: relative; overflow: hidden; }
.reform-box::before {
  content: '§'; position: absolute; top: -20px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 11rem; font-weight: 700;
  color: rgba(184,154,94,0.08); line-height: 1; pointer-events: none;
}
.reform-heading { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 600; color: var(--cream); margin-bottom: 8px; line-height: 1.2; }
.reform-sub-text { font-size: 0.8rem; color: rgba(245,242,236,0.42); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.reform-points { list-style: none; margin-top: 32px; }
.reform-points li { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(184,154,94,0.12); font-size: 1rem; color: rgba(245,242,236,0.78); font-weight: 300; line-height: 1.65; }
.reform-points li:last-child { border-bottom: none; }
.reform-check { color: var(--gold); flex-shrink: 0; margin-top: 3px; font-weight: 600; }

/* ══════════════════════════════════════════════════════
   ZITAT
   ══════════════════════════════════════════════════════ */
.quote-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.quote-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.66) sepia(0.12); display: block; }
.quote-box { background: var(--navy); display: flex; align-items: center; justify-content: center; padding: 88px 76px; }
.quote-inner { max-width: 440px; }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 8rem; font-weight: 700; color: var(--gold); line-height: 0.55; margin-bottom: 30px; display: block; }
.quote-text { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 400; color: var(--cream); line-height: 1.45; font-style: italic; margin-bottom: 28px; }
.quote-source { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); font-weight: 500; }

/* ══════════════════════════════════════════════════════
   ÜBER MICH
   ══════════════════════════════════════════════════════ */
#ueber { background: var(--warm-white); }
.ueber-inner { display: grid; grid-template-columns: 380px 1fr; gap: 88px; align-items: start; margin-top: 68px; }
.ueber-portrait { width: 100%; aspect-ratio: 3/4; position: relative; overflow: hidden; }
.ueber-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: brightness(0.96); }
.ueber-portrait::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: var(--gold); }
.ueber-contact-box { background: var(--cream); padding: 28px 32px; margin-top: 22px; border-left: 4px solid var(--gold); }
.contact-line { font-size: 1rem; color: var(--text); margin-bottom: 10px; display: flex; gap: 10px; line-height: 1.55; font-weight: 400; }
.contact-line:last-child { margin-bottom: 0; }
.contact-line strong { color: var(--navy); font-weight: 600; white-space: nowrap; }
.contact-line a { color: var(--navy); text-decoration: none; }
.contact-line a:hover { color: var(--gold); }
.ueber-text { font-size: 1.08rem; color: var(--text); line-height: 1.9; font-weight: 400; margin-bottom: 26px; }
.ueber-text strong { color: var(--navy); font-weight: 600; }
.quals { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.qual-item { padding: 24px 28px; background: var(--cream); border-top: 3px solid var(--gold); font-size: 0.98rem; color: var(--text); line-height: 1.65; font-weight: 400; }
.qual-item strong { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: 5px; font-weight: 600; }

/* ══════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════ */
#faq { background: var(--navy); }
#faq .section-eyebrow { color: var(--gold); }
#faq .section-eyebrow::before { background: var(--gold); }
#faq .section-title { color: var(--cream); }
#faq .section-sub { color: rgba(245,242,236,0.82); font-weight: 400; }
.faq-list { margin-top: 52px; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(184,154,94,0.2); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid rgba(184,154,94,0.2); }
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--cream); padding: 26px 8px; line-height: 1.35;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  cursor: pointer; transition: color 0.2s; user-select: none;
}
.faq-item.open .faq-q { color: var(--gold-light); }
.faq-q:hover { color: var(--gold-light); }
.faq-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1.5px solid rgba(184,154,94,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 300; color: var(--gold);
  transition: background 0.2s, transform 0.35s; line-height: 1;
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-a-wrap { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a-wrap { max-height: 400px; }
.faq-a {
  font-size: 1.02rem; color: rgba(245,242,236,0.88);
  line-height: 1.85; font-weight: 400;
  padding: 0 8px 26px 20px;
  border-left: 3px solid var(--gold); margin-left: 4px;
}

/* ══════════════════════════════════════════════════════
   AKTUELLES
   ══════════════════════════════════════════════════════ */
#aktuelles { background: var(--warm-white); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 68px; border-top: 2px solid var(--gold); }
.news-card { padding: 40px 36px; border-right: 1px solid rgba(184,154,94,0.22); transition: background 0.2s; }
.news-card:last-child { border-right: none; }
.news-card:hover { background: var(--cream); }
.news-img { width: 100%; height: 200px; object-fit: cover; filter: brightness(0.8) sepia(0.1); margin-bottom: 24px; display: block; }
.news-date { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 16px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.news-date::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--gold); }
.news-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.news-excerpt { font-size: 1rem; color: var(--text); line-height: 1.85; font-weight: 400; border-left: 3px solid rgba(184,154,94,0.35); padding-left: 16px; }
.news-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); text-decoration: none; font-weight: 600; transition: gap 0.2s; }
.news-link:hover { gap: 14px; }

/* ══════════════════════════════════════════════════════
   KONTAKT
   ══════════════════════════════════════════════════════ */
#kontakt { background: var(--navy); display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; padding: 0; }
.kontakt-info {
  padding: 96px 72px;
  border-right: 1px solid rgba(184,154,94,0.13);
  background-image: url('../pics/kontakt-bg.jpg');
  background-size: cover; background-position: center; position: relative;
}
.kontakt-info::before { content: ''; position: absolute; inset: 0; background: rgba(26,37,53,0.9); }
.kontakt-info > * { position: relative; }
.kontakt-info .section-title { color: var(--cream); }
.kontakt-sub { font-size: 1.05rem; color: rgba(245,242,236,0.6); font-weight: 300; line-height: 1.85; margin-top: 16px; max-width: 400px; }
.kontakt-details { margin-top: 52px; }
.k-row { display: flex; gap: 22px; padding: 20px 0; border-bottom: 1px solid rgba(184,154,94,0.12); align-items: flex-start; }
.k-row:last-child { border-bottom: none; }
.k-icon { width: 52px; height: 52px; border: 1.5px solid rgba(184,154,94,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.k-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 4px; font-weight: 600; }
.k-val { font-size: 1.05rem; color: rgba(245,242,236,0.8); font-weight: 300; line-height: 1.55; }
.k-val a { color: inherit; text-decoration: none; }
.k-val a:hover { color: var(--gold-light); }

/* ── Kontaktformular ── */
.kontakt-form { padding: 96px 72px; background: var(--navy-mid); }
.form-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; color: var(--cream); margin-bottom: 40px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(245,242,236,0.5); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(184,154,94,0.2);
  color: var(--cream); padding: 14px 20px;
  font-family: 'Source Sans 3', sans-serif; font-size: 1.05rem;
  font-weight: 300; outline: none; transition: border-color 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { height: 130px; resize: none; }
.form-group select option { background: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hp-field { display: none !important; position: absolute; left: -9999px; }

.form-msg { display: none; padding: 16px 20px; font-size: 1rem; border-radius: 2px; margin-top: 16px; line-height: 1.5; }
.form-msg.success { display: block; background: rgba(46,125,82,0.15); border: 1.5px solid rgba(46,125,82,0.4); color: #6fcf97; }
.form-msg.error   { display: block; background: rgba(185,64,64,0.15); border: 1.5px solid rgba(185,64,64,0.4); color: #f2a2a2; }

.btn-submit {
  width: 100%; margin-top: 10px;
  background: var(--gold); color: var(--navy);
  padding: 17px 42px; font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.25s;
  font-family: 'Source Sans 3', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { background: var(--gold-light); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-submit .spinner { display: none; width: 18px; height: 18px; border: 2px solid var(--navy); border-top-color: transparent; border-radius: 50%; animation: spin 0.7s linear infinite; }
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-label { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
footer {
  background: #0f1720;
  padding: 40px 64px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(184,154,94,0.12);
  gap: 24px; flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo img {
  height: 52px; width: auto;
  mix-blend-mode: screen;
  filter: brightness(2.0) contrast(1.15) saturate(1.1);
  transition: filter 0.3s;
}
.footer-logo img:hover { filter: brightness(2.4) contrast(1.2) saturate(1.2); }

.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(245,242,236,0.35); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-bdb { display: flex; align-items: center; }
.footer-bdb img { height: 40px; width: auto; mix-blend-mode: screen; filter: brightness(1.6) grayscale(0.2); opacity: 0.7; transition: opacity 0.3s, filter 0.3s; }
.footer-bdb img:hover { opacity: 1; filter: brightness(1.8) grayscale(0); }

.footer-copy { font-size: 0.82rem; color: rgba(245,242,236,0.2); white-space: nowrap; }

/* ══════════════════════════════════════════════════════
   UNTERSEITEN (Impressum, Datenschutz, Danke)
   ══════════════════════════════════════════════════════ */
main { margin-top: 88px; padding: 80px 64px; max-width: 900px; margin-left: auto; margin-right: auto; }

h1 { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 600; color: var(--navy); margin-bottom: 40px; line-height: 1.2; }
h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 600; color: var(--navy); margin-top: 40px; margin-bottom: 20px; border-top: 1px solid var(--border); padding-top: 20px; }
h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-top: 24px; margin-bottom: 12px; }
p, li { margin-bottom: 16px; line-height: 1.8; color: var(--text); }
ul, ol { margin-left: 24px; margin-bottom: 24px; }
strong { font-weight: 600; color: var(--navy); }
em { font-style: italic; }
a { color: var(--blue); }

.note { background: rgba(184,154,94,0.06); padding: 20px; border-left: 4px solid var(--gold); margin: 24px 0; font-size: 0.95rem; }
.contact-info { background: rgba(184,154,94,0.06); padding: 30px; border-left: 4px solid var(--gold); margin: 30px 0; border-radius: 2px; }
.contact-info p { margin-bottom: 12px; }
.contact-info p:last-child { margin-bottom: 0; }

/* Danke-Seite */
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(46,125,82,0.12); border: 2px solid rgba(46,125,82,0.3); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 32px; color: #2e7d52; }
.cta-group { margin-top: 40px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   ANIMATIONEN
   ══════════════════════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.hero-title   { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }
.hero-sub     { animation: fadeUp 0.7s ease both; animation-delay: 0.42s; }
.hero-btns    { animation: fadeUp 0.7s ease both; animation-delay: 0.58s; }
.hero-visual  { animation: fadeUp 0.9s ease both; animation-delay: 0.3s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1020px) {
  nav { padding: 0 24px; height: 76px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  #hero { grid-template-columns: 1fr; padding: 100px 28px 60px; gap: 40px; }
  .hero-visual { height: 340px; }
  .hero-sub { font-size: 1.05rem; }

  #intro { padding: 0 20px; grid-template-columns: 1fr; }
  .intro-divider { display: none; }
  .intro-item { padding: 36px 24px; }

  section { padding: 72px 28px; }
  main { padding: 60px 28px; }

  .leistungen-grid { grid-template-columns: 1fr; }

  .photo-strip { grid-template-columns: 1fr 1fr; height: 260px; }
  .photo-strip img:last-child { display: none; }

  #reform { grid-template-columns: 1fr; gap: 40px; }

  .quote-section { grid-template-columns: 1fr; }
  .quote-img { height: 280px; }
  .quote-box { padding: 60px 36px; }

  .ueber-inner { grid-template-columns: 1fr; gap: 40px; }
  .ueber-portrait { max-width: 340px; aspect-ratio: 4/5; }
  .quals { grid-template-columns: 1fr; }

  .news-grid { grid-template-columns: 1fr; }
  .news-card { border-right: none; border-bottom: 1px solid rgba(184,154,94,0.22); }

  #kontakt { grid-template-columns: 1fr; }
  .kontakt-info { padding: 60px 32px; }
  .kontakt-form { padding: 60px 32px; }
  .form-row { grid-template-columns: 1fr; }

  footer { flex-direction: column; text-align: center; padding: 36px 28px; }
  .footer-copy { text-align: center; }
  .footer-links { justify-content: center; }

  h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
  .hero-visual { height: 280px; }
}
