
:root {
  --bg: #EFEAE5;
  --text: #222020;
  --muted: #615A56;
  --line: rgba(34, 32, 32, 0.22);
  --soft: rgba(193, 190, 190, 0.48);
  --soft-strong: rgba(247, 243, 239, 0.78);
  --accent: #9F2028;
  --accent-dark: #75171D;
  --max: 1120px;
  --narrow: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: 0.01em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(239, 234, 229, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-link img {
  width: 92px;
  height: auto;
  mix-blend-mode: multiply;
}

.logo-wordmark {
  display: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  border-bottom-color: var(--text);
  color: var(--text);
}

main {
  min-height: 70vh;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 28px;
}

.section:first-child {
  padding-top: 92px;
}

.narrow {
  max-width: var(--narrow);
}

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

h3 {
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.lead {
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.45;
  margin: 30px 0 0;
  color: var(--text);
  max-width: 760px;
}

.copy {
  color: var(--muted);
  max-width: 780px;
}

.hero-card {
  border: 1px solid var(--line);
  background: var(--soft);
  min-height: 520px;
  display: flex;
  align-items: end;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/calm-lines.svg") center/cover no-repeat;
  opacity: 0.62;
}

.hero-card-content {
  position: relative;
  z-index: 1;
  background: rgba(247, 243, 239, 0.74);
  border: 1px solid var(--line);
  padding: 28px;
  max-width: 420px;
}

.accent-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: 12px;
  transform: translateY(1px);
}

.cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--text);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button:hover {
  background: var(--text);
  color: var(--bg);
}

.button.secondary {
  border-color: var(--line);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin: 0 0 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.card {
  background: var(--soft-strong);
  border: 1px solid var(--line);
  padding: 30px;
  min-height: 300px;
}

.card p {
  color: var(--muted);
}

.text-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.text-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.text-list li:first-child {
  border-top: 0;
}

.page-hero {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  max-width: 850px;
}

.offer-block {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 70px;
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.offer-block:last-child {
  border-bottom: 0;
}

.portrait-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.portrait {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 18px;
}

.portrait--accent {
  position: relative;
}

.portrait--accent::after {
  content: "";
  position: absolute;
  top: -52px;
  right: -52px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 3;
}

.timeline {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.timeline-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-year {
  color: var(--text);
  font-weight: 600;
}

.timeline-text {
  color: var(--muted);
}

.contact-panel {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: clamp(34px, 5vw, 64px);
}

.contact-lines {
  margin: 30px 0 0;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.75;
  font-family: Georgia, "Times New Roman", serif;
}

.small-note {
  color: var(--muted);
  font-size: 15px;
  margin-top: 28px;
}

.legal {
  max-width: 820px;
}

.legal h2 {
  font-size: 32px;
  margin-top: 46px;
}

.legal p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero,
  .split,
  .portrait-grid,
  .offer-block {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    min-height: 360px;
  }

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

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 58px 20px;
  }

  .header-inner {
    padding: 18px 20px;
  }

  .logo-link img {
    width: 74px;
  }

  .main-nav {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .card,
  .contact-panel {
    padding: 24px;
  }
}


.hero-photo {
  position: relative;
  border: 1px solid var(--line);
  background: var(--soft-strong);
  padding: 18px;
  min-height: 520px;
  display: flex;
  align-items: stretch;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  filter: grayscale(100%);
}

.hero-note {
  position: absolute;
  left: 34px;
  bottom: 34px;
  max-width: 340px;
  background: rgba(247, 243, 239, 0.78);
  border: 1px solid var(--line);
  padding: 24px;
}

.visual-split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.image-frame {
  border: 1px solid var(--line);
  background: var(--soft-strong);
  padding: 16px;
}

.image-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.image-stack {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.offer-media {
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--soft-strong);
  padding: 14px;
}

.offer-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.inline-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 34px;
}

.image-caption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.soft-section {
  background: rgba(255,255,255,0.12);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.personal-note {
  margin-top: 22px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .visual-split,
  .inline-gallery {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: auto;
  }

  .hero-photo img {
    min-height: 360px;
  }

  .hero-note {
    position: static;
    margin-top: 16px;
    max-width: none;
  }

  .offer-media img {
    height: 240px;
  }
}


.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.target-card {
  background: var(--soft-strong);
  border: 1px solid var(--line);
  padding: 32px;
  min-height: 360px;
}

.target-card h3 {
  margin-bottom: 18px;
}

.target-card .text-list {
  margin-top: 12px;
}

.target-intro {
  max-width: 900px;
}

@media (max-width: 980px) {
  .target-grid {
    grid-template-columns: 1fr;
  }
}

/* V6 Anpassungen: kompakter Header, weniger Luft, Werdegang und Kontaktformular */
.header-inner {
  padding: 14px 28px;
}

.logo-link img {
  width: 68px;
}

.main-nav {
  gap: 26px;
  font-size: 12px;
  letter-spacing: 0.15em;
}

.section {
  padding: 58px 28px;
}

.section:first-child {
  padding-top: 62px;
}

.hero {
  min-height: 58vh;
  gap: 54px;
}

h1 {
  font-size: clamp(42px, 5.8vw, 76px);
}

h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  margin-bottom: 20px;
}

.lead {
  font-size: clamp(19px, 1.85vw, 25px);
  margin-top: 22px;
}

.cards {
  margin-top: 30px;
}

.card,
.target-card {
  padding: 26px;
  min-height: auto;
}

.offer-block {
  padding: 54px 0;
  gap: 54px;
}

.offer-media {
  margin-top: 22px;
}

.offer-media img {
  height: 260px;
}

.hero-photo {
  min-height: 430px;
}

.hero-photo img {
  min-height: 400px;
}

.visual-split,
.split,
.portrait-grid {
  gap: 54px;
}

.timeline {
  border-top: 1px solid var(--line);
  margin-top: 0;
}

.timeline-row {
  grid-template-columns: 116px 1fr;
  gap: 22px;
  padding: 14px 0;
}

.timeline-year {
  font-size: 15px;
}

.timeline-role {
  font-weight: 600;
  color: var(--text);
  display: block;
}

.timeline-company {
  color: var(--muted);
  display: block;
}

.qual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.qual-item {
  border-top: 1px solid var(--line);
  padding: 14px 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.contact-form {
  border: 1px solid var(--line);
  background: var(--soft-strong);
  padding: clamp(26px, 4vw, 42px);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.38);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.form-grid textarea {
  min-height: 150px;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(36, 34, 34, 0.62);
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--text);
  background: rgba(255,255,255,0.58);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-actions {
  margin-top: 18px;
}

.contact-aside {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 28px;
}

.contact-aside h3 {
  font-size: 28px;
}

.contact-small-lines {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.contact-small-lines a {
  color: var(--text);
}

.contact-image {
  margin-top: 22px;
}

.contact-image img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.contact-panel {
  padding: clamp(28px, 4vw, 42px);
}

.contact-lines {
  font-size: clamp(22px, 2.1vw, 34px);
}

@media (max-width: 860px) {
  .section {
    padding: 46px 20px;
  }

  .header-inner {
    padding: 12px 20px;
  }

  .logo-link img {
    width: 62px;
  }

  .main-nav {
    gap: 14px;
    font-size: 11px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* V8 Feinschliff: weniger Dopplung, keine großen Farbboxen, kompaktere Zielgruppen */
.soft-section {
  background: transparent !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.target-grid {
  gap: 18px;
}

.target-card {
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid var(--line) !important;
  padding: 24px 0 0 !important;
  min-height: auto !important;
}

.target-card .copy {
  margin-bottom: 14px;
}

.target-card .text-list li {
  padding: 9px 0;
}

.page-hero .lead {
  max-width: 980px;
}

.section.page-hero {
  padding-bottom: 38px;
}

.timeline-row {
  grid-template-columns: 140px 1fr;
}

.timeline-role small {
  font-weight: 400;
  color: var(--muted);
}

@media (max-width: 860px) {
  .timeline-row {
    grid-template-columns: 1fr;
  }
}


/* V9: Formularfelder stärker eingefasst, Hund als transparenter Hintergrund */
.contact-layout {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 34px;
  background:
    linear-gradient(rgba(239, 234, 229, 0.52), rgba(239, 234, 229, 0.52)),
    url("../assets/dog-contact.jpg") center center / cover no-repeat;
}

.contact-form,
.contact-aside {
  position: relative;
  z-index: 1;
}

.contact-form {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(34, 32, 32, 0.20);
  backdrop-filter: blur(2px);
}

.contact-aside {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(34, 32, 32, 0.16);
}

.form-grid input,
.form-grid textarea {
  border: 1.5px solid rgba(34, 32, 32, 0.34);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  border-radius: 0;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: rgba(34, 32, 32, 0.72);
  background: rgba(255, 255, 255, 0.92);
}

.contact-image {
  display: none;
}

.timeline-row {
  grid-template-columns: 150px 1fr;
  align-items: start;
}

.timeline-role {
  font-weight: 700;
}

.timeline-company {
  margin-top: 4px;
}

@media (max-width: 860px) {
  .contact-layout {
    padding: 20px;
    background:
      linear-gradient(rgba(239, 234, 229, 0.60), rgba(239, 234, 229, 0.60)),
      url("../assets/dog-contact.jpg") center center / cover no-repeat;
  }
}


/* V10: Moderationsbild links und hochkant */
.offer-block--media-left > div:first-child {
  display: flex;
  flex-direction: column;
}

.offer-block--media-left > div:first-child .offer-media {
  margin-top: 26px;
}

.offer-block--media-left > div:first-child .offer-media img {
  height: 560px;
  width: 100%;
  object-fit: cover;
  object-position: left center;
}

.offer-block--media-left > div:last-child .offer-media {
  display: none;
}

@media (max-width: 860px) {
  .offer-block--media-left > div:first-child .offer-media img {
    height: 340px;
  }
}

/* V12: Qualifikationen zweizeilig wie Werdegang */
.qual-item {
  display: block;
}

.qual-role {
  display: block;
  font-weight: 700;
  color: var(--text);
}

.qual-company {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}


/* V14: Qualifikationen einzeilig, erster Teil fett */
.qual-item {
  display: block;
}

.qual-role {
  display: inline;
  font-weight: 700;
  color: var(--text);
}

.qual-company {
  display: inline;
  margin-top: 0;
  color: var(--muted);
}


/* V16: Datenschutzeinwilligung im Kontaktformular */
.consent-check {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.consent-check input {
  width: 24px;
  height: 24px;
  margin: 0;
  accent-color: #6f6a64;
}

.consent-check span {
  font-size: 14px;
}

@media (max-width: 860px) {
  .consent-check {
    grid-template-columns: 22px 1fr;
    gap: 12px;
  }
}


/* V17: roter Punkt links neben ausgewählten Einleitungstexten */
.lead-with-dot {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
  align-items: start;
}

.lead-with-dot .accent-dot {
  width: 14px;
  height: 14px;
  margin-right: 0;
  margin-top: 0.3em;
  transform: none;
}

.lead-with-dot span:last-child {
  display: block;
}

@media (max-width: 860px) {
  .lead-with-dot {
    grid-template-columns: 16px 1fr;
    gap: 12px;
  }

  .lead-with-dot .accent-dot {
    width: 12px;
    height: 12px;
    margin-top: 0.35em;
  }
}


/* V19: roter Punkt höher und sauber an der ersten Zeile ausgerichtet */
.accent-dot-inline {
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: 0.12em;
  margin-right: 14px;
}

/* Falls ältere Klassen noch irgendwo vorhanden sind */
.lead-with-dot {
  display: block;
}

.lead-with-dot .accent-dot {
  width: 15px;
  height: 15px;
  margin-top: 0;
}


/* V22: Bildpunkt entfernt, kleiner Punkt nur im Footer und gefiltertes Portrait */
.portrait--filtered img {
  filter: grayscale(48%) sepia(26%) saturate(68%) brightness(0.98) contrast(0.97) hue-rotate(-8deg);
}

.image-filter-soft {
  filter: grayscale(28%) sepia(18%) saturate(82%) brightness(0.98) contrast(0.96);
}

.footer-links a:last-child::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.portrait--accent::after {
  display: none;
}


/* V24: unsichtbares Spam-Schutzfeld */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}


/* V25: Impressum */
.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* V27: LinkedIn-Logo im Footer */
.footer-links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.linkedin-link img {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 16px;
  border-radius: 3px;
}


/* V28: kompakte Rechtstexte, Korrekturen und eigenes LinkedIn-Logo */
.legal-compact {
  max-width: 980px;
}

.legal-compact h1 {
  margin-bottom: 28px;
}

.legal-compact h2 {
  font-size: 22px;
  margin: 26px 0 8px;
}

.legal-compact p {
  margin: 0 0 10px;
  line-height: 1.55;
}

.legal-correction {
  color: var(--accent);
  font-weight: 600;
}

.legal-placeholder {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.linkedin-link img {
  width: 18px;
  height: 18px;
  border-radius: 3px;
}


/* V35: Footer-Punkt ist nicht mehr Teil des Datenschutz-Links */
.footer-links a:last-child::after {
  content: none !important;
  display: none !important;
}

.footer-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
  pointer-events: none;
}


/* V36: Footer-Punkt hüpft wie ein Ball nach links aus dem Bildschirm */
.footer-dot-trigger {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  cursor: default;
}

.footer-dot-trigger .footer-dot {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  will-change: transform, opacity;
}

.footer-dot-trigger:hover .footer-dot {
  animation: footer-ball-left 1.85s ease-in forwards;
}

@keyframes footer-ball-left {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  12% {
    transform: translate(-34px, -22px) scale(1.02);
    opacity: 1;
  }
  24% {
    transform: translate(-68px, 0) scale(1.06, 0.94);
    opacity: 1;
  }
  36% {
    transform: translate(-116px, -25px) scale(1.02);
    opacity: 1;
  }
  48% {
    transform: translate(-166px, 0) scale(1.06, 0.94);
    opacity: 1;
  }
  60% {
    transform: translate(-230px, -20px) scale(1.02);
    opacity: 1;
  }
  72% {
    transform: translate(-300px, 0) scale(1.05, 0.95);
    opacity: 1;
  }
  86% {
    transform: translate(-52vw, -12px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-110vw, 0) scale(0.92);
    opacity: 0.92;
  }
}


/* V37: größere Bögen, 4 Hüpfer bis Seitenmitte, dann nach unten raus */
.footer-dot-trigger:hover .footer-dot {
  animation: footer-ball-left 2.45s cubic-bezier(.25,.65,.32,1) forwards;
}

@keyframes footer-ball-left {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  /* Hüpfer 1 */
  10% {
    transform: translate(-7vw, -54px) scale(1.02);
    opacity: 1;
  }
  20% {
    transform: translate(-14vw, 0) scale(1.08, 0.92);
    opacity: 1;
  }

  /* Hüpfer 2 */
  30% {
    transform: translate(-21vw, -62px) scale(1.02);
    opacity: 1;
  }
  40% {
    transform: translate(-28vw, 0) scale(1.08, 0.92);
    opacity: 1;
  }

  /* Hüpfer 3 */
  50% {
    transform: translate(-35vw, -58px) scale(1.02);
    opacity: 1;
  }
  60% {
    transform: translate(-42vw, 0) scale(1.08, 0.92);
    opacity: 1;
  }

  /* Hüpfer 4 bis ungefähr Seitenmitte */
  70% {
    transform: translate(-47vw, -50px) scale(1.02);
    opacity: 1;
  }
  78% {
    transform: translate(-52vw, 0) scale(1.08, 0.92);
    opacity: 1;
  }

  /* dann nach unten wegfallen, nicht weiter nach links */
  88% {
    transform: translate(-52vw, 110px) scale(0.98);
    opacity: 1;
  }
  100% {
    transform: translate(-52vw, 75vh) scale(0.9);
    opacity: 0;
  }
}


/* V38: weichere, langsamere und elegantere Ball-Animation */
.footer-dot-trigger:hover .footer-dot {
  animation: footer-ball-left 3.35s linear forwards;
  transform-origin: center;
}

@keyframes footer-ball-left {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    opacity: 1;
  }

  /* Hüpfer 1 */
  6% {
    transform: translate3d(-4vw, -34px, 0) scale(1.01) rotate(-80deg);
  }
  12% {
    transform: translate3d(-8vw, -54px, 0) scale(1.02) rotate(-160deg);
  }
  18% {
    transform: translate3d(-12vw, -34px, 0) scale(1.01) rotate(-240deg);
  }
  23% {
    transform: translate3d(-15vw, 0, 0) scale(1.12, 0.88) rotate(-310deg);
  }
  26% {
    transform: translate3d(-16.5vw, -8px, 0) scale(0.96, 1.04) rotate(-350deg);
  }

  /* Hüpfer 2 */
  32% {
    transform: translate3d(-21vw, -42px, 0) scale(1.01) rotate(-450deg);
  }
  38% {
    transform: translate3d(-25.5vw, -64px, 0) scale(1.02) rotate(-540deg);
  }
  44% {
    transform: translate3d(-30vw, -38px, 0) scale(1.01) rotate(-635deg);
  }
  49% {
    transform: translate3d(-33vw, 0, 0) scale(1.10, 0.90) rotate(-710deg);
  }
  52% {
    transform: translate3d(-34.5vw, -7px, 0) scale(0.97, 1.03) rotate(-750deg);
  }

  /* Hüpfer 3 */
  58% {
    transform: translate3d(-38vw, -38px, 0) scale(1.01) rotate(-835deg);
  }
  64% {
    transform: translate3d(-41.5vw, -56px, 0) scale(1.02) rotate(-920deg);
  }
  70% {
    transform: translate3d(-45vw, -30px, 0) scale(1.01) rotate(-1000deg);
  }
  75% {
    transform: translate3d(-47.5vw, 0, 0) scale(1.08, 0.92) rotate(-1070deg);
  }

  /* Hüpfer 4, kleiner und sauber bis zur Mitte */
  80% {
    transform: translate3d(-49.5vw, -26px, 0) scale(1.01) rotate(-1120deg);
  }
  85% {
    transform: translate3d(-51.5vw, -38px, 0) scale(1.015) rotate(-1180deg);
  }
  90% {
    transform: translate3d(-53vw, 0, 0) scale(1.06, 0.94) rotate(-1240deg);
    opacity: 1;
  }

  /* runterfallen */
  94% {
    transform: translate3d(-53vw, 80px, 0) scale(0.98) rotate(-1260deg);
    opacity: 1;
  }
  100% {
    transform: translate3d(-53vw, 72vh, 0) scale(0.9) rotate(-1285deg);
    opacity: 0;
  }
}


/* V39: Animation läuft nach Mouseover bis zum Ende weiter */
.footer-dot-trigger.is-hopping .footer-dot {
  animation: footer-ball-left 3.35s linear forwards;
  transform-origin: center;
}


/* V40: Sylke Rework nach Feedback */
:root { --font-main: "Calibri Light", Calibri, Arial, sans-serif; }
body, button, input, textarea, select { font-family: "Calibri Light", Calibri, Arial, sans-serif; }
h1, h2, h3, .hero h1, .page-hero h1, .card h3, .logo-wordmark {
  font-family: "Calibri Light", Calibri, Arial, sans-serif !important;
  font-weight: 300;
}
h1, .hero h1 { font-size: clamp(54px, 8vw, 104px); line-height: 0.98; }
h2 { font-size: clamp(34px, 5vw, 58px); line-height: 1.02; }
.lead { font-size: clamp(24px, 2.6vw, 38px); line-height: 1.28; }
.copy, .text-list li, .card p, .legal-compact p { font-size: 20px; line-height: 1.45; }
.site-header img, .logo-link img { width: 88px; height: auto; object-fit: contain; }
.logo-wordmark { display: none; }
.hero-card-clean { min-height: 420px; background: var(--soft-strong); }
.hero-card-clean::before { opacity: 0.18; }
.cards-compact .card { min-height: 240px; }
.offer-block { padding: 58px 0; }
.section-note {
  border-top: 1px solid var(--line);
  padding-top: 34px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.section-note p { margin: 0; color: var(--muted); }
.compact-profile .mini-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}
.contact-simple {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: start;
}
.contact-simple h2 a { text-decoration: none; }
.contact-address {
  border-left: 1px solid var(--line);
  padding-left: 34px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}
.footer-dot-trigger, .footer-dot-trigger:hover .footer-dot, .footer-dot-trigger.is-hopping .footer-dot {
  animation: none !important;
  transform: none !important;
}
.footer-dot {
  animation: none !important;
  transform: none !important;
  opacity: 1 !important;
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
}
@media (max-width: 860px) {
  .section-note, .contact-simple { grid-template-columns: 1fr; }
  .compact-profile .mini-profile-grid { grid-template-columns: 1fr; }
  .contact-address {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
}


/* V41: Detailkorrekturen nach Screenshot-Feedback */
.header-inner {
  padding: 10px 28px;
}

.logo-link img {
  width: 64px;
}

.hero-v41 {
  grid-template-columns: 0.95fr 1.05fr;
  min-height: auto;
  gap: 54px;
  align-items: center;
}

.hero-v41 .hero-copy {
  max-width: 560px;
}

.hero-v41 .lead {
  margin-top: 18px;
  max-width: 520px;
}

.hero-v41 .copy {
  margin-top: 18px;
  max-width: 520px;
}

.hero-v41 .cta-row {
  display: none;
}

.hero-photo-v41 {
  min-height: 560px;
  padding: 18px;
}

.hero-photo-v41 img {
  min-height: 520px;
  filter: grayscale(100%);
  object-position: center top;
}

.hero-note-v41 {
  left: 36px;
  bottom: 36px;
  max-width: 430px;
}

.hero-note-v41 h3 {
  margin-bottom: 10px;
}

.cards.cards-compact {
  margin-top: 10px;
}

.cards-compact .card {
  min-height: 320px;
}

.offer-block-v41 .offer-block-heading h2 {
  margin-bottom: 10px;
}

.offer-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.offer-intro {
  color: var(--text);
  font-size: 22px;
  line-height: 1.5;
  margin-top: 2px;
}

.section-note-about {
  margin-top: 0;
}

.mini-profile-grid-v41 {
  grid-template-columns: 1fr 1fr;
  gap: 22px 42px;
  margin-bottom: 26px;
}

.mini-profile-grid-v41 strong,
.qualification-block-v42 > strong {
  display: block;
  margin: 0 0 10px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0;
  font-family: inherit;
}

.qualification-block {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.qualification-block strong {
  color: inherit;
}

.contact-hero-v41 {
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(239, 234, 229, 0.58), rgba(239, 234, 229, 0.58)),
    url('../assets/dog-contact.jpg') center center / cover no-repeat;
  min-height: 440px;
  display: flex;
  align-items: center;
}

.contact-hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: start;
}

.contact-mail-static {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.4;
  color: var(--text);
}

.contact-address-simple {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  border-left: 1px solid var(--line);
  padding-left: 26px;
}

.contact-address-simple p {
  margin: 0;
}

@media (max-width: 860px) {
  .header-inner {
    padding: 10px 20px;
  }

  .hero-v41,
  .mini-profile-grid-v41,
  .contact-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-photo-v41,
  .hero-photo-v41 img {
    min-height: auto;
  }

  .contact-address-simple {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 18px;
  }
}


/* V42: Korrekturen nach neuem Feedback */
.home-visual-section {
  margin-top: 8px;
}

.home-visual-section h2 {
  max-width: 620px;
}

.home-visual-section .copy {
  max-width: 700px;
}

.card-subtitle {
  margin: 2px 0 14px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(102, 98, 92, 0.88);
}

.cards-compact .card h3 {
  margin-bottom: 10px;
}

.cards-compact .card p + p {
  margin-top: 0;
}

.qualification-block-v42 {
  margin-top: 8px;
  border-top: 0;
  padding-top: 0;
  color: var(--muted);
}

.qualification-list {
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.qualification-list li {
  margin: 0 0 6px;
  padding: 0;
}

.contact-layout-v42 {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 34px;
  background:
    linear-gradient(rgba(239, 234, 229, 0.46), rgba(239, 234, 229, 0.46)),
    url('../assets/dog-contact.jpg') center center / cover no-repeat;
}

.contact-layout-v42 .contact-panel-box {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.60);
  border: 1px solid rgba(34, 32, 32, 0.16);
  backdrop-filter: blur(2px);
}

.contact-layout-v42 .contact-form {
  padding: clamp(26px, 4vw, 42px);
}

.contact-layout-v42 .contact-aside {
  padding: 32px;
}

.contact-layout-v42 .contact-small-lines-v42 {
  color: var(--text);
}

.contact-layout-v42 .small-note {
  color: var(--muted);
  line-height: 1.65;
  margin-top: 22px;
}

.contact-layout-v42 .form-grid input,
.contact-layout-v42 .form-grid textarea {
  border: 1.5px solid rgba(34, 32, 32, 0.34);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  border-radius: 0;
}

.contact-layout-v42 .form-grid input:focus,
.contact-layout-v42 .form-grid textarea:focus {
  border-color: rgba(34, 32, 32, 0.72);
  background: rgba(255, 255, 255, 0.94);
}

.contact-layout-v42 .form-grid textarea {
  min-height: 180px;
}

@media (max-width: 860px) {
  .contact-layout-v42 {
    padding: 20px;
  }
}


/* V46: Qualifikation exakt wie Beratung und Hansgrohe SE */
.qualification-block-v42 > strong {
  color: var(--text) !important;
  font-size: 18px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  letter-spacing: 0 !important;
  margin: 0 0 10px !important;
}

.mini-profile-grid-v41 strong {
  color: var(--text) !important;
  font-size: 18px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  letter-spacing: 0 !important;
}


/* V47: Abstand unter 'Qualifikation' an Beratung/Hansgrohe angleichen */
.qualification-block-v42 > strong {
  margin-bottom: 0 !important;
}

.qualification-list {
  margin-top: 18px !important;
}


/* V48: Qualifikation näher an Beratung/Hansgrohe und Abstände angleichen */
.mini-profile-grid-v41 {
  margin-bottom: 12px !important;
}

.qualification-block-v42 {
  margin-top: 0 !important;
}

.qualification-block-v42 > strong {
  margin: 0 0 10px !important;
}

.qualification-list {
  margin-top: 0 !important;
}


/* V49: Über-mich Abstände exakt nach PowerPoint-Vorlage */
.mini-profile-grid-v41 {
  margin-bottom: 24px !important;
}

.qualification-block-v42 {
  margin-top: 0 !important;
}

.qualification-block-v42 > strong {
  margin: 0 0 0 0 !important;
}

.qualification-list {
  margin-top: 24px !important;
}


/* V50: Kontaktformular entfernt, Mailadresse im bisherigen Hund-/Panel-Layout */
.contact-mail-panel-v50 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-display-field-v50 {
  border: 1.5px solid rgba(34, 32, 32, 0.34);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  padding: 22px 20px;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.contact-display-label-v50 {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(36, 34, 34, 0.62);
}

.contact-display-value-v50 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
  color: var(--text);
  word-break: break-word;
}

.contact-display-note-v50 {
  min-height: 220px;
  justify-content: flex-start;
  gap: 16px;
}

.contact-display-note-v50 p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

@media (max-width: 860px) {
  .contact-display-value-v50 {
    font-size: 30px;
  }

  .contact-display-note-v50 {
    min-height: 0;
  }
}


/* V51: Kontakt links cleaner, ohne doppelte Infos */
.contact-mail-panel-v51 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.contact-mail-panel-v51 h3 {
  margin: 10px 0 22px;
  font-size: clamp(26px, 3.1vw, 44px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.contact-mail-address-v51 {
  margin: 0;
  font-size: clamp(42px, 5.3vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  word-break: break-word;
}

.contact-mail-note-v51 {
  margin-top: 22px !important;
  max-width: 34ch;
}

@media (max-width: 1100px) {
  .contact-mail-address-v51 {
    font-size: clamp(34px, 5.2vw, 56px);
  }
}

@media (max-width: 860px) {
  .contact-mail-panel-v51 h3 {
    margin-bottom: 16px;
  }

  .contact-mail-address-v51 {
    font-size: 34px;
  }

  .contact-mail-note-v51 {
    max-width: none;
  }
}


/* V52: Kontakt links kleiner, Panels gleich hoch und gleichwertig */
.contact-layout-v42 {
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.contact-layout-v42 .contact-panel-box {
  min-height: 430px;
}

.contact-layout-v42 .contact-form,
.contact-layout-v42 .contact-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-layout-v42 .contact-aside {
  padding: 28px;
}

.contact-mail-panel-v51 {
  justify-content: flex-start;
}

.contact-mail-panel-v51 h3 {
  margin: 10px 0 14px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.contact-mail-address-v51 {
  margin: 0;
  font-size: clamp(28px, 2.9vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.contact-mail-note-v51 {
  margin-top: 18px !important;
  max-width: 32ch;
}

@media (max-width: 1100px) {
  .contact-layout-v42 {
    grid-template-columns: 1fr;
  }

  .contact-layout-v42 .contact-panel-box {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .contact-mail-panel-v51 h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .contact-mail-address-v51 {
    font-size: 26px;
  }
}


/* V53: Typografie nach Sylke-Feedback
   Eine Schriftfamilie und bewusst nur drei Schriftgrößen:
   1) groß: Hauptüberschriften
   2) mittel: Leads, Card-Titel, Abschnittstitel
   3) klein: Fließtext, Navigation, Buttons, Listen, Footer, Rechtstexte
*/
:root {
  --font-sylke: "Calibri Light", Calibri, Arial, sans-serif;
  --fs-large: clamp(54px, 6.2vw, 96px);
  --fs-medium: clamp(26px, 2.4vw, 36px);
  --fs-small: 18px;
}

/* Eine Schriftart auf der gesamten Seite */
html,
body,
button,
input,
textarea,
select,
a,
p,
li,
span,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sylke) !important;
}

/* 1. Schriftgröße: groß */
h1,
h2,
.hero h1,
.page-hero h1,
.home-visual-section h2,
.compact-profile h2 {
  font-size: var(--fs-large) !important;
  line-height: 1.04 !important;
  font-weight: 300 !important;
  letter-spacing: -0.025em;
}

/* 2. Schriftgröße: mittel */
.lead,
.card h3,
.hero-note-v41 h3,
.contact-aside h3,
.contact-mail-panel-v51 h3,
.contact-mail-address-v51 {
  font-size: var(--fs-medium) !important;
  line-height: 1.22 !important;
  font-weight: 300 !important;
  letter-spacing: -0.015em;
}

/* 3. Schriftgröße: klein */
body,
p,
.copy,
.card p,
.card a,
.text-list li,
.qualification-list,
.qualification-list li,
.kicker,
.eyebrow,
.main-nav a,
.button,
.footer-links a,
.site-footer,
.form-note,
.small-note,
.contact-small-lines,
.contact-mail-note-v51,
.contact-address-simple,
.contact-display-label-v50,
.contact-display-value-v50,
.mini-profile-grid-v41,
.mini-profile-grid-v41 div,
.mini-profile-grid-v41 strong,
.qualification-block-v42,
.qualification-block-v42 > strong,
.legal-compact p,
.legal-compact li,
.legal-compact a {
  font-size: var(--fs-small) !important;
  line-height: 1.55 !important;
}

/* Gewicht statt Größe für Hierarchie */
.card h3,
.contact-aside h3,
.contact-mail-panel-v51 h3,
.mini-profile-grid-v41 strong,
.qualification-block-v42 > strong {
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.kicker,
.eyebrow,
.main-nav a,
.button,
.footer-links a {
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
}

/* Kontakt: Mailadresse bewusst nicht mehr riesig, damit sie rechts entspricht */
.contact-mail-address-v51 {
  font-size: var(--fs-medium) !important;
  font-weight: 300 !important;
}

/* Rechtstexte kompakt halten, aber innerhalb der drei Größen */
.legal-compact h1,
.legal-compact h2 {
  font-size: var(--fs-medium) !important;
  line-height: 1.22 !important;
  letter-spacing: -0.015em;
}


/* V54: Footer-Links kleiner/ruhiger und nicht in Versalien */
.footer-links a {
  font-size: var(--fs-small) !important;
  text-transform: none !important;
  letter-spacing: 0.06em !important;
  font-weight: 300 !important;
}

.footer-links .linkedin-link span,
.footer-links a[href$="impressum.html"],
.footer-links a[href$="datenschutz.html"] {
  text-transform: none !important;
}

.footer-links {
  align-items: center;
}

/* V55: Angebotstexte gleich ausrichten wie gewünscht */
@media (min-width: 981px) {
  #coaching > div:last-child,
  #moderation > div:last-child,
  #beratung > div:last-child {
    padding-left: 78px;
    box-sizing: border-box;
  }
}

/* V56: Angebot – Textspalten in gleicher Höhe und Moderation auf volle Breite */
@media (min-width: 981px) {
  #coaching > div:last-child,
  #moderation > div:last-child,
  #beratung > div:last-child {
    padding-left: 78px;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  /* Coaching und Beratung starten vertikal wie Moderation */
  #coaching > div:last-child,
  #beratung > div:last-child {
    padding-top: 26px;
  }

  /* Moderation soll genauso weit nach rechts laufen wie die anderen Bereiche */
  #moderation > div:last-child .offer-intro,
  #moderation > div:last-child .copy,
  #moderation > div:last-child .text-list,
  #moderation > div:last-child .offer-media {
    max-width: none;
    width: 100%;
  }
}

/* V57: Angebot – weniger Luft über Coaching, Moderation breiter */
@media (min-width: 981px) {
  .offer-block.offer-block-v41 {
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 64px;
  }

  /* Weniger Luft über dem ersten Angebotsblock */
  #coaching.offer-block-v41 {
    padding-top: 26px;
  }

  /* Textspalten sauber ausrichten */
  #coaching > div:last-child,
  #moderation > div:last-child,
  #beratung > div:last-child {
    padding-left: 42px;
    padding-top: 0;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  /* Moderation darf genauso weit nach rechts laufen wie die anderen */
  #moderation > div:last-child,
  #moderation > div:last-child .offer-intro,
  #moderation > div:last-child .copy,
  #moderation > div:last-child .text-list,
  #moderation > div:last-child .offer-media,
  #coaching > div:last-child .offer-intro,
  #coaching > div:last-child .copy,
  #coaching > div:last-child .text-list,
  #coaching > div:last-child .offer-media,
  #beratung > div:last-child .offer-intro,
  #beratung > div:last-child .copy,
  #beratung > div:last-child .text-list,
  #beratung > div:last-child .offer-media {
    width: 100%;
    max-width: none;
  }
}

/* V58: Kontakt – ein großer Balken statt zwei Kästen */
.contact-layout-single-v58 {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.contact-layout-single-v58 .contact-single-bar-v58 {
  min-height: 0;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 34px 42px;
  display: flex;
  align-items: flex-start;
}

.contact-single-content-v58 {
  width: 100%;
  max-width: 620px;
}

.contact-name-v58,
.contact-meta-v58,
.contact-note-v58,
.contact-email-v58 {
  margin: 0;
  color: var(--text);
  font-size: var(--fs-small) !important;
}

.contact-name-v58 {
  font-weight: 500;
  margin-bottom: 14px;
}

.contact-meta-v58 {
  line-height: 1.65;
  margin-bottom: 20px;
}

.contact-note-v58 + .contact-note-v58 {
  margin-top: 16px;
}

.contact-email-v58 {
  margin: 18px 0 0;
  color: var(--text);
  line-height: 1.65 !important;
  font-weight: 300 !important;
  letter-spacing: 0.01em;
  word-break: break-word;
}

@media (max-width: 860px) {
  .contact-layout-single-v58 .contact-single-bar-v58 {
    padding: 24px;
  }

}


/* V59: Kontakt – Name und Mail fett, Umbruch vor E-Mail */
.contact-name-v58 {
  font-weight: 600 !important;
}

.contact-email-v58 {
  font-weight: 600 !important;
}


/* V60: Kontakt – alle Texte gleiche Schriftgröße, nur Name + Mail fett */
.contact-name-v58,
.contact-email-v58 {
  font-weight: 600 !important;
}


/* V61: Über mich – Abstand unter Beratung/Hansgrohe an Qualifikation angeglichen */
.mini-profile-grid-v41 > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mini-profile-grid-v41 > div > strong {
  margin: 0 0 2px !important;
}

.mini-profile-copy {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-small) !important;
  line-height: 1.55 !important;
}


/* V62: Über mich – Abstand unter Beratung/Hansgrohe wieder etwas größer */
.mini-profile-grid-v41 > div > strong {
  margin-bottom: 12px !important;
}

.mini-profile-copy {
  margin-top: 0 !important;
}


/* V63: Home Hero Textanpassung */
.hero-target-v63 {
  margin-top: 26px;
  max-width: 620px;
  font-size: var(--fs-medium) !important;
  line-height: 1.28 !important;
}

.hero-note-v41 h3 {
  max-width: 560px;
}


/* V64: Transparentes großes Hintergrundbild im oberen Bereich */
.hero-v64-bg {
  position: relative;
  overflow: hidden;
  min-height: 640px;
}

.hero-v64-bg::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 18px;
  bottom: 10px;
  left: 42%;
  background: url("../assets/portrait-standing-hq-v76.jpg") right center / contain no-repeat;
  opacity: 0.14;
  filter: grayscale(1);
  pointer-events: none;
}

.hero-v64-bg > * {
  position: relative;
  z-index: 1;
}

.hero-v64-bg .hero-photo-v41 {
  min-height: 560px;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-v64-bg .hero-photo-v41 img {
  display: none;
}

.hero-v64-bg .hero-note-v41 {
  margin: 0 20px 20px 0;
  background: rgba(247, 245, 241, 0.84);
  backdrop-filter: blur(1.5px);
}

@media (max-width: 980px) {
  .hero-v64-bg::after {
    left: 28%;
    opacity: 0.12;
    background-position: center right;
  }
}

@media (max-width: 860px) {
  .hero-v64-bg {
    min-height: auto;
  }

  .hero-v64-bg::after {
    top: 40px;
    left: 10px;
    right: 10px;
    bottom: 180px;
    background-position: center top;
    background-size: cover;
    opacity: 0.10;
  }

  .hero-v64-bg .hero-photo-v41 {
    min-height: auto;
    justify-content: stretch;
  }

  .hero-v64-bg .hero-note-v41 {
    margin: 14px 0 0;
    width: 100%;
  }
}


/* V65: Home Hero Bild groß über die ganze Breite, stärker gezoomt auf den Kopf */
.hero-v64-bg {
  min-height: 720px;
  align-items: stretch;
}

.hero-v64-bg::after {
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  background:
    linear-gradient(rgba(247, 245, 241, 0.72), rgba(247, 245, 241, 0.72)),
    url("../assets/portrait-standing-hq-v76.jpg") 72% 12% / cover no-repeat;
  opacity: 1;
  filter: grayscale(1);
}

.hero-v64-bg .hero-photo-v41 {
  min-height: 620px;
}

.hero-v64-bg .hero-note-v41 {
  margin: 0 24px 24px 0;
  background: rgba(247, 245, 241, 0.82);
}

@media (max-width: 980px) {
  .hero-v64-bg::after {
    left: 12px;
    right: 12px;
    background:
      linear-gradient(rgba(247, 245, 241, 0.76), rgba(247, 245, 241, 0.76)),
      url("../assets/portrait-standing-hq-v76.jpg") 68% 10% / cover no-repeat;
  }
}

@media (max-width: 860px) {
  .hero-v64-bg::after {
    top: 24px;
    left: 10px;
    right: 10px;
    bottom: 140px;
    background:
      linear-gradient(rgba(247, 245, 241, 0.80), rgba(247, 245, 241, 0.80)),
      url("../assets/portrait-standing-hq-v76.jpg") 70% 8% / cover no-repeat;
  }

  .hero-v64-bg .hero-photo-v41 {
    min-height: auto;
  }
}


/* V66: Home Hero Bild vollflächig über die gesamte Fläche gestreckt */
.hero-v64-bg {
  min-height: 720px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.hero-v64-bg::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(90deg, rgba(247, 245, 241, 0.76) 0%, rgba(247, 245, 241, 0.70) 34%, rgba(247, 245, 241, 0.62) 58%, rgba(247, 245, 241, 0.58) 100%),
    url("../assets/portrait-standing-hq-v76.jpg") 68% 10% / cover no-repeat;
  opacity: 1;
  filter: grayscale(1);
}

.hero-v64-bg .hero-copy-v41 {
  padding-left: 12px;
}

.hero-v64-bg .hero-note-v41 {
  margin: 0 18px 18px 0;
  background: rgba(247, 245, 241, 0.80);
}

@media (max-width: 980px) {
  .hero-v64-bg::after {
    background:
      linear-gradient(180deg, rgba(247, 245, 241, 0.78) 0%, rgba(247, 245, 241, 0.72) 100%),
      url("../assets/portrait-standing-hq-v76.jpg") 64% 8% / cover no-repeat;
  }
}

@media (max-width: 860px) {
  .hero-v64-bg {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero-v64-bg::after {
    top: 0;
    right: 0;
    bottom: 120px;
    left: 0;
    background:
      linear-gradient(180deg, rgba(247, 245, 241, 0.84) 0%, rgba(247, 245, 241, 0.74) 100%),
      url("../assets/portrait-standing-hq-v76.jpg") 64% 8% / cover no-repeat;
  }

  .hero-v64-bg .hero-copy-v41 {
    padding-left: 0;
  }

  .hero-v64-bg .hero-note-v41 {
    margin: 16px 0 0;
    background: rgba(247, 245, 241, 0.86);
  }
}


/* V68: Angebot-Übersicht nach oben auf die Angebotsseite verschoben */
html {
  scroll-behavior: smooth;
}

.offer-overview-v68 {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

.offer-overview-v68 h1 {
  margin-bottom: 42px;
}

#coaching,
#moderation,
#beratung {
  scroll-margin-top: 120px;
}


/* V69: Homepage letzter Abschnitt ohne trennenden Strich */
.home-visual-section {
  border-bottom: 0 !important;
}


/* V70: Angebot-Karten sauber ausgerichtet */
.offer-overview-v68 .cards-offer-aligned {
  align-items: stretch;
}

.offer-overview-v68 .card-offer-overview {
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.offer-overview-v68 .card-offer-overview h3 {
  margin: 0 0 24px;
}

.offer-overview-v68 .card-offer-overview p {
  margin: 0;
}

.offer-overview-v68 .card-offer-overview .card-subtitle,
.offer-overview-v68 .card-offer-overview .card-lead {
  min-height: 88px;
  margin: 0 0 24px;
}

.offer-overview-v68 .card-offer-overview .card-copy {
  margin: 0 0 24px;
}

.offer-overview-v68 .card-offer-overview a {
  margin-top: auto;
  display: inline-block;
  align-self: flex-start;
}

@media (max-width: 860px) {
  .offer-overview-v68 .card-offer-overview {
    min-height: auto;
  }

  .offer-overview-v68 .card-offer-overview .card-subtitle,
  .offer-overview-v68 .card-offer-overview .card-lead {
    min-height: 0;
  }
}


/* V71: Angebot-Karten wieder kompakter, Ausrichtung bleibt erhalten */
.offer-overview-v68 .card-offer-overview {
  min-height: 350px;
  padding: 30px !important;
}

.offer-overview-v68 .card-offer-overview h3 {
  margin: 0 0 20px !important;
}

.offer-overview-v68 .card-offer-overview .card-subtitle {
  min-height: 0 !important;
  margin: 0 0 18px !important;
}

.offer-overview-v68 .card-offer-overview .card-lead {
  min-height: 0 !important;
  margin: 0 0 18px !important;
}

.offer-overview-v68 .card-offer-overview .card-copy {
  margin: 0 0 18px !important;
}

.offer-overview-v68 .card-offer-overview a {
  margin-top: auto !important;
}


/* V74: Über mich – Beratung/Hansgrohe entfernt, Qualifikation oben bündig */
.qualification-block-v74 {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

.qualification-block-v74 > strong {
  margin-top: 0 !important;
}


/* V75: Kontaktseite – neue Reihenfolge, Lead entfernt, Hundebild kontrastreicher */
.page-hero-v75 .eyebrow {
  margin-bottom: 14px;
}

.page-hero-v75 h1 {
  margin-bottom: 0;
}

.contact-layout-v75 {
  position: relative;
  background: none;
}

.contact-layout-v75::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(239, 234, 229, 0.24), rgba(239, 234, 229, 0.24)), url('../assets/dog-contact-v75.jpg') center center / cover no-repeat;
  filter: contrast(1.18) saturate(1.02) brightness(0.96);
  z-index: 0;
}

.contact-layout-v75 .contact-panel-box {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(1.5px);
}

.contact-single-content-v75 {
  max-width: 640px;
}

.contact-kicker-v75 {
  margin: 0 0 22px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.contact-meta-v75 {
  margin-bottom: 24px;
}

.contact-note-v75 {
  max-width: 680px;
}

@media (max-width: 860px) {
  .contact-layout-v75::before {
    background-position: 58% center;
  }

  .contact-kicker-v75 {
    margin-bottom: 18px;
  }
}

/* V77: Home Hero – Ausschnitt des HQ-Portraits an letzte Version angepasst */
.hero-v64-bg::after {
  background:
    linear-gradient(90deg, rgba(247, 245, 241, 0.76) 0%, rgba(247, 245, 241, 0.70) 34%, rgba(247, 245, 241, 0.62) 58%, rgba(247, 245, 241, 0.58) 100%),
    url("../assets/portrait-standing-hq-v76.jpg") 68% 31% / cover no-repeat;
}

@media (max-width: 980px) {
  .hero-v64-bg::after {
    background:
      linear-gradient(180deg, rgba(247, 245, 241, 0.78) 0%, rgba(247, 245, 241, 0.72) 100%),
      url("../assets/portrait-standing-hq-v76.jpg") 64% 26% / cover no-repeat;
  }
}

@media (max-width: 860px) {
  .hero-v64-bg::after {
    background:
      linear-gradient(180deg, rgba(247, 245, 241, 0.84) 0%, rgba(247, 245, 241, 0.74) 100%),
      url("../assets/portrait-standing-hq-v76.jpg") 64% 20% / cover no-repeat;
  }
}

/* V78: Hero-Portrait noch etwas weiter nach links und oben wie in der Vorlage */
.hero-v64-bg::after {
  background:
    linear-gradient(90deg, rgba(247, 245, 241, 0.76) 0%, rgba(247, 245, 241, 0.70) 34%, rgba(247, 245, 241, 0.62) 58%, rgba(247, 245, 241, 0.58) 100%),
    url("../assets/portrait-standing-hq-v76.jpg") 60% 25% / 104% auto no-repeat;
}

@media (max-width: 980px) {
  .hero-v64-bg::after {
    background:
      linear-gradient(180deg, rgba(247, 245, 241, 0.78) 0%, rgba(247, 245, 241, 0.72) 100%),
      url("../assets/portrait-standing-hq-v76.jpg") 58% 22% / 108% auto no-repeat;
  }
}

@media (max-width: 860px) {
  .hero-v64-bg::after {
    background:
      linear-gradient(180deg, rgba(247, 245, 241, 0.84) 0%, rgba(247, 245, 241, 0.74) 100%),
      url("../assets/portrait-standing-hq-v76.jpg") 56% 18% / 114% auto no-repeat;
  }
}

/* V79: Hero-Portrait nochmals weiter nach links oben */
.hero-v64-bg::after {
  background:
    linear-gradient(90deg, rgba(247, 245, 241, 0.76) 0%, rgba(247, 245, 241, 0.70) 34%, rgba(247, 245, 241, 0.62) 58%, rgba(247, 245, 241, 0.58) 100%),
    url("../assets/portrait-standing-hq-v76.jpg") 66% 32% / 104% auto no-repeat;
}

@media (max-width: 980px) {
  .hero-v64-bg::after {
    background:
      linear-gradient(180deg, rgba(247, 245, 241, 0.78) 0%, rgba(247, 245, 241, 0.72) 100%),
      url("../assets/portrait-standing-hq-v76.jpg") 62% 28% / 108% auto no-repeat;
  }
}

@media (max-width: 860px) {
  .hero-v64-bg::after {
    background:
      linear-gradient(180deg, rgba(247, 245, 241, 0.84) 0%, rgba(247, 245, 241, 0.74) 100%),
      url("../assets/portrait-standing-hq-v76.jpg") 60% 24% / 114% auto no-repeat;
  }
}

/* V80: Sylkes Kopf noch etwas weiter nach links oben */
.hero-v64-bg::after {
  background:
    linear-gradient(90deg, rgba(247, 245, 241, 0.76) 0%, rgba(247, 245, 241, 0.70) 34%, rgba(247, 245, 241, 0.62) 58%, rgba(247, 245, 241, 0.58) 100%),
    url("../assets/portrait-standing-hq-v76.jpg") 64% 28% / 104% auto no-repeat;
}

@media (max-width: 980px) {
  .hero-v64-bg::after {
    background:
      linear-gradient(180deg, rgba(247, 245, 241, 0.78) 0%, rgba(247, 245, 241, 0.72) 100%),
      url("../assets/portrait-standing-hq-v76.jpg") 60% 24% / 108% auto no-repeat;
  }
}

@media (max-width: 860px) {
  .hero-v64-bg::after {
    background:
      linear-gradient(180deg, rgba(247, 245, 241, 0.84) 0%, rgba(247, 245, 241, 0.74) 100%),
      url("../assets/portrait-standing-hq-v76.jpg") 58% 20% / 114% auto no-repeat;
  }
}

/* V81: Kopf etwas weiter nach links oben, näher zur Referenz */
.hero-v64-bg::after {
  background:
    linear-gradient(90deg, rgba(247, 245, 241, 0.76) 0%, rgba(247, 245, 241, 0.70) 34%, rgba(247, 245, 241, 0.62) 58%, rgba(247, 245, 241, 0.58) 100%),
    url("../assets/portrait-standing-hq-v76.jpg") 68% 35% / 104% auto no-repeat;
}

@media (max-width: 980px) {
  .hero-v64-bg::after {
    background:
      linear-gradient(180deg, rgba(247, 245, 241, 0.78) 0%, rgba(247, 245, 241, 0.72) 100%),
      url("../assets/portrait-standing-hq-v76.jpg") 64% 31% / 108% auto no-repeat;
  }
}

@media (max-width: 860px) {
  .hero-v64-bg::after {
    background:
      linear-gradient(180deg, rgba(247, 245, 241, 0.84) 0%, rgba(247, 245, 241, 0.74) 100%),
      url("../assets/portrait-standing-hq-v76.jpg") 62% 27% / 114% auto no-repeat;
  }
}


/* V82: Angebot Boxen identisch aufgebaut */
.offer-overview-v68 .card-offer-overview {
  min-height: 365px !important;
  padding: 30px !important;
}

.offer-overview-v68 .card-offer-overview h3 {
  margin: 0 0 18px !important;
}

.offer-overview-v68 .card-offer-overview .card-subtitle {
  min-height: 64px !important;
  margin: 0 0 18px !important;
}

.offer-overview-v68 .card-offer-overview .card-copy {
  margin: 0 0 18px !important;
}

.offer-overview-v68 .card-offer-overview a {
  margin-top: auto !important;
}

@media (max-width: 860px) {
  .offer-overview-v68 .card-offer-overview {
    min-height: auto !important;
  }

  .offer-overview-v68 .card-offer-overview .card-subtitle {
    min-height: 0 !important;
  }
}


/* V85: Coaching-Bild links unter der Überschrift in Hochkant */
.offer-block-heading-with-media {
  display: flex;
  flex-direction: column;
}

.offer-side-media {
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--soft-strong);
  padding: 14px;
}

.offer-side-media img {
  width: 100%;
  display: block;
}

.offer-side-media--portrait {
  max-width: 420px;
}

.offer-side-media--portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 860px) {
  .offer-side-media--portrait {
    max-width: none;
  }
}


/* V87: Beratungsbild links unter der Überschrift */
.offer-side-media--beratung img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}


/* V88: Beratungsbild etwas größer und weiter nach rechts */
.offer-side-media--beratung {
  width: 480px;
  max-width: 480px;
}

@media (max-width: 980px) {
  .offer-side-media--beratung {
    width: 100%;
    max-width: none;
  }
}


/* V91: Über mich – Erfahrungsblock über Qualifikation ergänzt */
.experience-block-v91 {
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
  margin-bottom: 34px;
}

.experience-label-v91 {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.experience-slogan-v91 {
  margin: 0 0 22px;
  font-size: clamp(21px, 1.8vw, 27px);
  line-height: 1.45;
  color: var(--text);
}

.experience-block-v91 .copy {
  margin-bottom: 18px;
}

.experience-block-v91 .copy:last-child {
  margin-bottom: 0;
}


/* V92: Erfahrung als eigener großer Block über Hintergrund */
.experience-main-v92 {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 70px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 70px;
}

.experience-main-v92 h2 {
  margin: 0;
  font-size: clamp(68px, 7.5vw, 132px);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.experience-slogan-v92 {
  margin: 0 0 28px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.45;
  color: var(--text);
}

.experience-main-v92 .copy {
  max-width: 780px;
}

.compact-profile-v41 {
  border-bottom: 1px solid var(--line);
}

.compact-profile-v41 .qualification-block {
  margin-top: 0;
}

@media (max-width: 860px) {
  .experience-main-v92 {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 48px;
  }
}


/* V94: Werdegang-Einleitung über Qualifikation */
.career-intro-v94 {
  margin: 0 0 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.career-label-v94 {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.career-intro-v94 .copy {
  max-width: 780px;
  margin-bottom: 0;
}


/* V95: Qualifikationen mit Herkunft */
.qualification-list-v95 strong {
  font-weight: 700;
  color: var(--text);
}
