/* ══════════════════════════════════════
   GO TO TOP BUTTON
══════════════════════════════════════ */
.go-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--rose-deep);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(58, 128, 128, 0.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
}

.go-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.go-top:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 128, 128, 0.4);
}


.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, var(--rose), var(--rose-deep));
  z-index: 200;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ══════════════════════════════════════
   CSS VARIABLES
══════════════════════════════════════ */
:root {
  --white: #FFFFFF;
  --blush-light: #EEF5F5;
  --blush: #C0DADA;
  --rose: #6AABAB;
  --rose-deep: #3A8080;
  --rose-dark: #1E5050;
  --text-dark: #0E2828;
  --text-mid: #2A5050;
  --text-light: #6A9090;
  --border: #A8CCCC;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ══════════════════════════════════════
   BLOCKSATZ
══════════════════════════════════════ */
.hero__sub,
.about__bio,
.service-card__text,
.contact__intro,
.pricing__note {
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
  hyphenate-limit-chars: 6 3 3;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ══════════════════════════════════════
   UTILITY
══════════════════════════════════════ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--rose-deep);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(58, 128, 128, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--rose-deep);
  border: 1.5px solid var(--rose-deep);
}

.btn-outline:hover {
  background: var(--rose-deep);
  color: var(--white);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(14, 40, 40, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.nav__logo span {
  color: var(--rose);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  transition: color 0.25s ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.3s ease;
}

.nav__links a:hover {
  color: var(--rose-deep);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.78rem;
  padding: 0.6rem 1.4rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 0 1.4rem;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  padding: 0.75rem 28px;
  font-size: 0.8rem;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav__mobile a:hover {
  color: var(--rose-deep);
}

/* ══════════════════════════════════════
   HERO LOGO DISPLAY (rechte Seite)
══════════════════════════════════════ */
.hero__logo-display {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-mark {
  position: relative;
  perspective: 1600px;
}

.hero__logo-mark-inner {
  position: relative;
  display: grid;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.hero__logo-mark:focus-within .hero__logo-mark-inner,
.hero__logo-mark.is-flipped .hero__logo-mark-inner {
  transform: rotateY(180deg);
}

.hero__logo-mark-face {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 3rem 3.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero__logo-mark-face--back {
  transform: rotateY(180deg);
  pointer-events: none;
}

.hero__logo-mark:focus-within .hero__logo-mark-face--back,
.hero__logo-mark.is-flipped .hero__logo-mark-face--back {
  pointer-events: auto;
}

.hero__logo-mark-face::before,
.hero__logo-mark-face::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--rose);
  border-style: solid;
}

.hero__logo-mark-face::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}

.hero__logo-mark-face::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}

.hero__logo-mark-flip-hint {
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.hero__logo-mark:hover .hero__logo-mark-flip-hint {
  opacity: 0.9;
}

.hero__logo-mark-back-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.hero__logo-mark-back-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s ease;
}

.hero__logo-mark-back-link:hover {
  color: var(--rose-deep);
}

.hero__logo-mark-back-address {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .hero__logo-mark-inner {
    transition: none;
  }
}

.hero__logo-mark-first {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: 0.12em;
  line-height: 1;
}

.hero__logo-mark-last {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--rose-deep);
  letter-spacing: 0.12em;
  line-height: 1;
}

.hero__logo-mark-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
  width: 100%;
  text-align: center;
}

/* ══════════════════════════════════════
   THERAPIEABLAUF
══════════════════════════════════════ */
#therapieablauf {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.ablauf__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.ablauf__card {
  background: var(--blush-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ablauf__card:hover {
  box-shadow: 0 8px 32px rgba(58, 128, 128, 0.1);
  transform: translateY(-3px);
}

.ablauf__card--highlight {
  border-color: var(--rose);
  background: linear-gradient(135deg, var(--blush-light) 0%, #D6ECEC 100%);
}

.ablauf__card--highlight .ablauf__title {
  color: var(--rose-dark);
}

.ablauf__icon {
  font-size: 1.8rem;
  line-height: 1;
}

.ablauf__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
}

.ablauf__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
}

.ablauf__text strong {
  color: var(--rose-dark);
  font-weight: 500;
}

@media (max-width: 768px) {
  #therapieablauf {
    padding: 80px 0;
  }

  .ablauf__grid {
    grid-template-columns: 1fr;
  }
}


#preise {
  padding: 120px 0;
  background: var(--blush-light);
  position: relative;
}

#preise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.pricing__grid {
  border: 1.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.pricing__grid--four-col .pricing__row {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

.pricing__cell--na {
  background: var(--blush-light);
}

.pricing__na {
  color: var(--text-light);
  font-size: 1rem;
}

.pricing__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.pricing__row:last-child {
  border-bottom: none;
}

.pricing__row:not(.pricing__row--header):hover {
  background: rgba(255, 255, 255, 0.7);
}

.pricing__row--header {
  background: var(--rose-deep);
}

.pricing__cell {
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  min-width: 0;
}

.pricing__cell--service {
  gap: 0.8rem;
  border-right: 1px solid var(--border);
}

.pricing__cell--duration {
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing__cell--duration:last-child {
  border-right: none;
}

.pricing__cell--price {
  justify-content: center;
  border-right: 1px solid var(--border);
}

.pricing__cell--price:last-child {
  border-right: none;
}

.pricing__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pricing__name {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-dark);
  min-width: 0;
  overflow-wrap: break-word;
}

.pricing__amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--rose-deep);
  letter-spacing: 0.02em;
}

.pricing__note {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.75;
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
  max-width: 100%;
  font-style: italic;
  padding: 0 0.5rem;
}

@media (max-width: 600px) {
  .pricing__grid--four-col .pricing__row {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  }

  .pricing__cell {
    padding: 1rem 0.6rem;
  }

  .pricing__name {
    font-size: 0.8rem;
  }

  .pricing__amount {
    font-size: 1rem;
  }
}

/* Footer section padding for preise */
@media (max-width: 768px) {
  #preise {
    padding: 80px 0;
  }
}


#start {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero__bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__bg-circle--1 {
  width: 600px;
  height: 600px;
  top: -120px;
  right: -160px;
  background: radial-gradient(circle, #C0DADA 0%, transparent 70%);
  opacity: 0.7;
}

.hero__bg-circle--2 {
  width: 300px;
  height: 300px;
  bottom: 60px;
  left: -80px;
  background: radial-gradient(circle, #C0DADA 0%, transparent 70%);
  opacity: 0.5;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--rose);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 400px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image-wrapper {
  position: relative;
}

.hero__image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.hero__image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--blush) 0%, #90C4C4 50%, var(--blush-light) 100%);
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--rose-deep);
  letter-spacing: 0.04em;
}

.hero__image-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(58, 128, 128, 0.25);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem 1.4rem;
  box-shadow: 0 12px 40px rgba(14, 40, 40, 0.1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 180px;
}

.hero__badge-icon {
  width: 38px;
  height: 38px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero__badge-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
}

.hero__badge-text span {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ══════════════════════════════════════
   ÜBER MICH
══════════════════════════════════════ */
#ueber-mich {
  padding: 120px 0;
  background: var(--blush-light);
  position: relative;
}

#ueber-mich::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.about__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}

.about__accent-line {
  position: absolute;
  top: 24px;
  right: -16px;
  width: 3px;
  height: 120px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  border-radius: 2px;
}

.about__bio {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.about__quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  color: var(--rose-deep);
  border-left: 2px solid var(--rose);
  padding-left: 1.4rem;
  margin: 2rem 0;
  line-height: 1.6;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.about__tag {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: var(--blush);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
}

/* ══════════════════════════════════════
   LEISTUNGEN
══════════════════════════════════════ */
#leistungen {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.services__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 70px;
}

.services__header .section-title {
  margin-bottom: 1rem;
}

.services__header p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.service-card {
  background: var(--white);
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover {
  background: var(--blush-light);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  transition: background 0.3s;
}

.service-card:hover .service-card__icon {
  background: var(--rose);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.7rem;
}

.service-card__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.service-card__number {
  position: absolute;
  top: 1.8rem;
  right: 2.2rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
  transition: color 0.3s;
}

.service-card:hover .service-card__number {
  color: var(--border);
}

/* ══════════════════════════════════════
   KONTAKT
══════════════════════════════════════ */
#kontakt {
  padding: 120px 0 80px;
  background: var(--blush-light);
  position: relative;
}

#kontakt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info {
  padding-top: 0.5rem;
}

.contact__title {
  margin-bottom: 1.2rem;
}

.contact__intro {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.contact__item:first-of-type {
  border-top: 1px solid var(--border);
}

.contact__item-icon {
  width: 40px;
  height: 40px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__item-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact__item-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 400;
}

.contact__item-value a {
  color: var(--rose-deep);
  transition: color 0.2s;
}

.contact__item-value a:hover {
  color: var(--rose-dark);
}

.contact__form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.8rem;
  box-shadow: 0 8px 40px rgba(14, 40, 40, 0.05);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact__form-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--blush-light);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  background: var(--white);
}

.form-group textarea {
  min-height: 110px;
}

.form-note {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}

.form-note a {
  color: var(--rose-deep);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

footer a:hover {
  color: var(--rose);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

/* ══════════════════════════════════════
   AUSBILDUNGSWEG / FORTBILDUNGEN – TIMELINE
══════════════════════════════════════ */
.about__education {
  margin-top: 70px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

.about__education-header {
  margin-bottom: 3rem;
}

.about__education-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.25;
}

/* Timeline container */
.timeline {
  position: relative;
  padding-left: 0;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 108px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--rose), var(--border));
}

.timeline__item {
  display: grid;
  grid-template-columns: 100px 24px 1fr;
  gap: 0 24px;
  align-items: start;
  margin-bottom: 3rem;
  position: relative;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

/* Year label */
.timeline__meta {
  text-align: right;
  padding-top: 2px;
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--rose-deep);
  letter-spacing: 0.04em;
}

/* Dot on the line */
.timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--rose-deep);
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.25s, transform 0.25s;
}

.timeline__item:hover .timeline__dot {
  background: var(--rose-deep);
  transform: scale(1.2);
}

/* Content */
.timeline__content {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.timeline__item:last-child .timeline__content {
  border-bottom: none;
  padding-bottom: 0;
}

.timeline__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.timeline__institution {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.65rem;
}

.timeline__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
  max-width: 640px;
}

.timeline__text--hyphens {
  hyphens: auto;
  -webkit-hyphens: auto;
}

@media (max-width: 600px) {
  .timeline::before {
    left: 0;
  }

  .timeline__item {
    grid-template-columns: 20px 1fr;
    gap: 0 16px;
  }

  .timeline__meta {
    display: none;
  }

  .timeline__year-mobile {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--rose-deep);
    margin-bottom: 0.3rem;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {

  .hero__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__image-wrapper {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero__badge {
    left: 0;
    bottom: -16px;
  }

  .about__image-wrapper {
    max-width: 220px;
  }

  .about__accent-line {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .about__education-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  #start {
    padding: 90px 0 80px;
  }

  #ueber-mich,
  #leistungen,
  #kontakt {
    padding: 80px 0;
  }

  .hero__badge {
    position: static;
    margin-top: 1.5rem;
    width: fit-content;
  }

  .service-card {
    padding: 2rem 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .contact__form-card {
    padding: 1.8rem 1.4rem;
  }
}