/* ============================================================
   Victoria Wirnsberger · Heilmassage
   Stil: elegant & ruhig · Creme/Salbeigrün (nach Praxisschild)
   ============================================================ */

:root {
  --creme: #faf8f1;
  --creme-dunkel: #f1eee2;
  --salbei: #8aa882;
  --salbei-hell: #dde6d8;
  --gruen: #4a6741;
  --gruen-dunkel: #32472c;
  --text: #2f3a2c;
  --text-soft: #5a6655;
  --weiss: #ffffff;
  --schrift-serif: Georgia, "Times New Roman", serif;
  --schrift-sans: "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  font-family: var(--schrift-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--creme);
}

/* --- Barrierefreiheit --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gruen-dunkel);
  color: var(--weiss);
  padding: 0.75rem 1.25rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --- Layout --- */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 241, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--salbei-hell);
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--gruen-dunkel);
}

.brand-logo { height: 46px; width: auto; flex-shrink: 0; display: block; }

.brand-name {
  font-family: var(--schrift-serif);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  list-style: none;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gruen);
  border-bottom-color: var(--salbei);
}

/* Hamburger-Button – am Desktop ausgeblendet, nur am Handy sichtbar */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle-balken {
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 auto;
  background: var(--gruen);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-balken:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-balken:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-balken:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 1.5rem 5.5rem;
  background:
    radial-gradient(ellipse at 50% 0%, var(--salbei-hell) 0%, transparent 60%),
    var(--creme);
}

/* Eck-Akzente (dezente Rahmen-Ecken) */
.hero .ecke {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 0 solid var(--salbei);
  opacity: 0.55;
  pointer-events: none;
}
.hero .ecke-ol { top: 22px; left: 22px; border-top-width: 1.5px; border-left-width: 1.5px; }
.hero .ecke-or { top: 22px; right: 22px; border-top-width: 1.5px; border-right-width: 1.5px; }
.hero .ecke-ul { bottom: 22px; left: 22px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.hero .ecke-ur { bottom: 22px; right: 22px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

/* Sanft schwebende Punkte (Logo-Motiv aufgegriffen) */
.hero-deko {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-deko span {
  position: absolute;
  border-radius: 50%;
  background: var(--salbei);
  opacity: 0.22;
  animation: schweben 9s ease-in-out infinite;
}
.hero-deko span:nth-child(1) { width: 10px; height: 10px; top: 18%; left: 12%; }
.hero-deko span:nth-child(2) { width: 6px;  height: 6px;  top: 34%; left: 22%; animation-delay: -2s; animation-duration: 11s; }
.hero-deko span:nth-child(3) { width: 14px; height: 14px; top: 24%; right: 14%; animation-delay: -4s; background: var(--gruen); opacity: 0.12; }
.hero-deko span:nth-child(4) { width: 7px;  height: 7px;  top: 48%; right: 24%; animation-delay: -6s; animation-duration: 13s; }
.hero-deko span:nth-child(5) { width: 5px;  height: 5px;  bottom: 26%; left: 30%; animation-delay: -3s; animation-duration: 10s; }
.hero-deko span:nth-child(6) { width: 9px;  height: 9px;  bottom: 18%; right: 32%; animation-delay: -7s; }
.hero-deko span:nth-child(7) { width: 4px;  height: 4px;  top: 60%; left: 8%;  animation-delay: -5s; animation-duration: 12s; }
.hero-deko span:nth-child(8) { width: 6px;  height: 6px;  top: 14%; left: 46%; animation-delay: -8s; animation-duration: 14s; }

@keyframes schweben {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%      { transform: translateY(-16px) translateX(6px); }
  66%      { transform: translateY(8px) translateX(-6px); }
}

.hero-logo { position: relative; display: inline-block; isolation: isolate; }
.hero-logo img {
  position: relative;
  display: block;
  width: auto;
  height: 170px;
  animation: logo-auf 1s ease-out both;
}

@keyframes logo-auf {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Zier-Zeile: Linie · Label · Linie */
.zier-zeile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 420px;
  margin: 1.8rem auto 0;
}
.zier-zeile .linie {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--salbei));
}
.zier-zeile .linie:last-child {
  background: linear-gradient(to left, transparent, var(--salbei));
}
.zier-zeile .label {
  color: var(--gruen);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Punktreihe als Abschluss-Ornament */
.punktreihe {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 2.4rem;
}
.punktreihe i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--salbei);
  opacity: 0.5;
}
.punktreihe i:nth-child(2) { opacity: 0.7; }
.punktreihe i:nth-child(3) { width: 7px; height: 7px; background: var(--gruen); opacity: 0.7; }
.punktreihe i:nth-child(4) { opacity: 0.7; }

.hero h1 {
  font-family: var(--schrift-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--gruen-dunkel);
  margin-top: 1.2rem;
  letter-spacing: 0.01em;
}

.hero .untertitel {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--gruen);
  font-family: var(--schrift-serif);
  font-style: italic;
  margin-top: 0.4rem;
}

.hero .berufsbezeichnung {
  margin-top: 1.1rem;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.cta-button {
  display: inline-block;
  margin-top: 2.2rem;
  background: var(--gruen);
  color: var(--weiss);
  text-decoration: none;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: var(--gruen-dunkel);
  transform: translateY(-2px);
}

/* --- Sektionen --- */
section { padding: 4.5rem 0; }

.section-alt { background: var(--creme-dunkel); }

.section-kopf {
  text-align: center;
  margin-bottom: 2.8rem;
}

.section-kopf h2 {
  font-family: var(--schrift-serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--gruen-dunkel);
}

.section-kopf .zier {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--salbei);
  border-radius: 2px;
  margin: 0.9rem auto 0;
}

/* --- Über mich --- */
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}

.portrait { margin: 0; }
.portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(50, 71, 44, 0.18);
}

.ueber-text p + p { margin-top: 1rem; }

/* Zitat */
.zitat {
  margin: 3.2rem auto 0;
  max-width: 560px;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}
.zitat p {
  font-family: var(--schrift-serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--gruen);
}
.zitat::before,
.zitat::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--salbei);
  border-radius: 2px;
  margin: 0 auto 1.1rem;
}
.zitat::after { margin: 1.1rem auto 0; }

/* --- Leistungen --- */
.leistungen-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
}

.leistung-karte {
  background: var(--weiss);
  border: 1px solid var(--salbei-hell);
  border-radius: 12px;
  padding: 2rem 1.7rem;
  flex: 1 1 260px;
  max-width: 330px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.leistung-karte:hover {
  box-shadow: 0 8px 24px rgba(74, 103, 65, 0.12);
  transform: translateY(-3px);
}

.leistung-karte .icon {
  width: 46px; height: 46px;
  margin-bottom: 1rem;
}

.leistung-karte h3 {
  font-family: var(--schrift-serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--gruen-dunkel);
  margin-bottom: 0.6rem;
}

.leistung-karte p { color: var(--text-soft); font-size: 0.98rem; }

/* Behandlungen & Techniken (Chips) */
.chips-titel {
  font-family: var(--schrift-serif);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--gruen-dunkel);
  text-align: center;
  margin: 3rem 0 1.4rem;
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 820px;
  margin: 0 auto;
}

.chips li {
  background: var(--weiss);
  border: 1px solid var(--salbei);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.92rem;
  color: var(--gruen-dunkel);
}

/* Praxis-Galerie */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.galerie-grid img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(50, 71, 44, 0.14);
}

/* --- Preise --- */
.preis-tabelle {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--weiss);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(50, 71, 44, 0.07);
}

.preis-tabelle caption { /* sichtbar als Hinweis unter der Tabelle gestaltet */
  caption-side: bottom;
  font-size: 0.85rem;
  color: var(--text-soft);
  padding-top: 0.9rem;
}

.preis-tabelle th,
.preis-tabelle td {
  text-align: left;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--creme-dunkel);
}

.preis-tabelle thead th {
  background: var(--salbei-hell);
  color: var(--gruen-dunkel);
  font-family: var(--schrift-serif);
  font-weight: 400;
  font-size: 1.05rem;
}

.preis-tabelle td:last-child { text-align: right; white-space: nowrap; }

/* --- Kontakt --- */
.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  max-width: 920px;
  margin: 0 auto;
}

.kontakt-karte {
  background: var(--weiss);
  border: 1px solid var(--salbei-hell);
  border-radius: 12px;
  padding: 1.8rem 1.6rem;
  text-align: center;
}

.kontakt-karte h3 {
  font-family: var(--schrift-serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--gruen-dunkel);
  margin-bottom: 0.5rem;
}

.kontakt-karte a {
  color: var(--gruen);
  text-decoration: none;
  font-size: 1.02rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.kontakt-karte .mail { font-size: 0.85rem; overflow-wrap: break-word; }

.kontakt-karte a:hover,
.kontakt-karte a:focus-visible { text-decoration: underline; }

.hinweis-box {
  max-width: 860px;
  margin: 2.2rem auto 0;
  background: var(--salbei-hell);
  border-radius: 12px;
  padding: 1.2rem 1.6rem;
  font-size: 0.95rem;
  color: var(--gruen-dunkel);
  text-align: center;
}

/* --- Footer --- */
.site-footer {
  background: var(--gruen-dunkel);
  color: var(--creme);
  padding: 2.2rem 0;
  font-size: 0.92rem;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-footer a {
  color: var(--creme);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer a:hover,
.site-footer a:focus-visible { color: var(--salbei-hell); }

.footer-links { display: flex; gap: 1.4rem; list-style: none; }

/* --- Rechtsseiten --- */
.rechtsseite { padding: 3.5rem 0 4.5rem; max-width: 800px; margin: 0 auto; }
.rechtsseite h1 {
  font-family: var(--schrift-serif);
  font-weight: 400;
  font-size: 2.1rem;
  color: var(--gruen-dunkel);
  margin-bottom: 1.8rem;
}
.rechtsseite h2 {
  font-family: var(--schrift-serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--gruen-dunkel);
  margin: 2rem 0 0.7rem;
}
.rechtsseite p + p { margin-top: 0.9rem; }
.rechtsseite ul { margin: 0.7rem 0 0.7rem 1.4rem; }
.platzhalter {
  background: #fdf3d7;
  border-radius: 4px;
  padding: 0 0.3rem;
}

/* ============================================================
   Animationen & Mikrointeraktionen
   (Farben & Logo unverändert – nur Bewegung)
   ============================================================ */

/* --- Scroll-Reveal (greift nur mit JS, sonst alles sichtbar) --- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.js .reveal-links  { transform: translateX(-34px); }
.js .reveal-rechts { transform: translateX(34px); }
.js .reveal.sichtbar {
  opacity: 1;
  transform: none;
}

/* Zier-Linie wächst, wenn der Sektionskopf erscheint */
.js .section-kopf .zier {
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s;
}
.js .section-kopf.sichtbar .zier { transform: scaleX(1); }

/* Zitat-Linien wachsen mit */
.js .zitat::before,
.js .zitat::after {
  transform: scaleX(0);
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s;
}
.js .zitat.sichtbar::before,
.js .zitat.sichtbar::after { transform: scaleX(1); }

/* Chips tröpfeln einzeln herein */
.js .reveal-chips li {
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease,
              border-color 0.2s, box-shadow 0.2s;
}
.js .reveal-chips.sichtbar li {
  opacity: 1;
  transform: none;
}
.chips li {
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.chips li:hover {
  border-color: var(--gruen);
  box-shadow: 0 3px 10px rgba(74, 103, 65, 0.14);
  transform: translateY(-2px);
}

/* --- Hero-Auftritt (gestaffeltes Erscheinen beim Laden) --- */
.hero-auftritt {
  animation: hero-auf 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: var(--d, 0s);
}
@keyframes hero-auf {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Logo atmet ganz sanft */
.hero-logo img {
  animation: logo-auf 1s ease-out both,
             atmen 7s ease-in-out 1.2s infinite;
}
@keyframes atmen {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-5px) scale(1.015); }
}

/* Weicher Lichtschein hinter dem Logo (atmet mit) */
.logo-schein {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--salbei-hell) 0%, transparent 65%);
  opacity: 0.55;
  z-index: -1;
  animation: schein 7s ease-in-out 1.2s infinite;
  pointer-events: none;
}
@keyframes schein {
  0%, 100% { opacity: 0.4; transform: scale(0.96); }
  50%      { opacity: 0.7; transform: scale(1.05); }
}

/* Die rotierenden Ringe stecken jetzt direkt in der logo.svg (animateTransform) */

/* Dezente Blätter links/rechts im Hero, wiegen sich langsam */
.hero-blatt {
  position: absolute;
  width: 90px;
  color: var(--salbei);
  opacity: 0.16;
  pointer-events: none;
}
.hero-blatt svg { width: 100%; height: auto; display: block; }
.hero-blatt-l {
  left: 4%;
  bottom: 10%;
  transform-origin: 50% 100%;
  animation: wiegen 10s ease-in-out infinite;
}
.hero-blatt-r {
  right: 4%;
  top: 14%;
  transform: scaleX(-1) rotate(8deg);
  transform-origin: 50% 100%;
  animation: wiegen-r 12s ease-in-out -3s infinite;
}
@keyframes wiegen {
  0%, 100% { transform: rotate(-5deg); }
  50%      { transform: rotate(6deg); }
}
@keyframes wiegen-r {
  0%, 100% { transform: scaleX(-1) rotate(4deg); }
  50%      { transform: scaleX(-1) rotate(-7deg); }
}

/* Zusätzliche Schwebe-Punkte */
.hero-deko span:nth-child(9)  { width: 8px;  height: 8px;  top: 70%; right: 10%; animation-delay: -1s; animation-duration: 12s; }
.hero-deko span:nth-child(10) { width: 5px;  height: 5px;  top: 76%; left: 18%;  animation-delay: -9s;  animation-duration: 15s; }
.hero-deko span:nth-child(11) { width: 12px; height: 12px; top: 8%;  right: 38%; animation-delay: -3.5s; background: var(--gruen); opacity: 0.1; }
.hero-deko span:nth-child(12) { width: 6px;  height: 6px;  bottom: 8%; right: 44%; animation-delay: -11s; animation-duration: 16s; }

/* Punktreihe pulsiert nacheinander – wie die Punktsäule im Logo */
.punktreihe i { animation: punkt-puls 3.2s ease-in-out infinite; }
.punktreihe i:nth-child(1) { animation-delay: 0s; }
.punktreihe i:nth-child(2) { animation-delay: 0.25s; }
.punktreihe i:nth-child(3) { animation-delay: 0.5s; }
.punktreihe i:nth-child(4) { animation-delay: 0.75s; }
.punktreihe i:nth-child(5) { animation-delay: 1s; }
@keyframes punkt-puls {
  0%, 100% { transform: scale(1); }
  20%      { transform: scale(1.45); }
}

/* --- CTA: sanfter Glanz läuft beim Hover durch --- */
.cta-button {
  position: relative;
  overflow: hidden;
}
.cta-button::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.cta-button:hover::after,
.cta-button:focus-visible::after { left: 130%; }

/* --- Header: schrumpft beim Scrollen, Logo dreht leicht --- */
.site-header .container {
  transition: padding 0.3s ease;
}
.site-header.geschrumpft .container {
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}
.brand-logo { transition: height 0.3s ease, transform 0.4s ease; }
.site-header.geschrumpft .brand-logo { height: 36px; }
.brand:hover .brand-logo { transform: rotate(-4deg) scale(1.06); }
.site-header.geschrumpft { box-shadow: 0 4px 18px rgba(50, 71, 44, 0.08); }

/* Nav: animierte Unterstreichung + aktiver Abschnitt */
.site-nav a {
  position: relative;
  border-bottom: none;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--salbei);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.aktiv::after { transform: scaleX(1); }
.site-nav a.aktiv { color: var(--gruen); }

/* --- Leistungs-Karten: Icon schwingt beim Hover, Linie unten wächst --- */
.leistung-karte {
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.leistung-karte::after {
  content: "";
  position: absolute;
  left: 1.7rem; right: 1.7rem; bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--salbei);
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.leistung-karte:hover {
  transform: translateY(-6px);
  border-color: var(--salbei);
  box-shadow: 0 14px 32px rgba(74, 103, 65, 0.16);
}
.leistung-karte:hover::after { transform: scaleX(1); }
.leistung-karte .icon { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.leistung-karte:hover .icon { transform: translateY(-4px) rotate(-5deg) scale(1.08); }

/* --- Praxis-Galerie: ruhiger Zoom beim Hover --- */
.galerie-bild {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(50, 71, 44, 0.14);
}
.galerie-grid .galerie-bild img {
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.galerie-bild:hover img { transform: scale(1.045); }

/* Portrait: feiner Rahmen schiebt sich beim Hover hervor */
.portrait { position: relative; }
.portrait::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1.5px solid var(--creme);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.portrait:hover::after { opacity: 0.7; }
.portrait img { transition: transform 0.5s ease, box-shadow 0.5s ease; }
.portrait:hover img {
  transform: scale(1.015);
  box-shadow: 0 14px 38px rgba(50, 71, 44, 0.24);
}

/* --- Preistabelle: Zeilen heben sich beim Hover --- */
.preis-tabelle tbody tr { transition: background 0.2s; }
.preis-tabelle tbody tr:hover { background: var(--creme); }

/* --- Kontakt-Karten: Lift wie die Leistungs-Karten --- */
.kontakt-karte {
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.kontakt-karte:hover {
  transform: translateY(-4px);
  border-color: var(--salbei);
  box-shadow: 0 10px 26px rgba(74, 103, 65, 0.13);
}

/* --- Häufige Fragen (FAQ) --- */
.praxis-lage {
  max-width: 720px;
  margin: 2.2rem auto 0;
  text-align: center;
  color: var(--text-soft);
}

.faq-liste {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.faq {
  background: var(--weiss);
  border: 1px solid var(--salbei-hell);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq[open],
.faq:hover {
  border-color: var(--salbei);
  box-shadow: 0 6px 18px rgba(74, 103, 65, 0.1);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.4rem;
  font-family: var(--schrift-serif);
  font-size: 1.08rem;
  color: var(--gruen-dunkel);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gruen);
  border-bottom: 2px solid var(--gruen);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}
.faq[open] summary::after { transform: translateY(-30%) rotate(225deg); }

.faq p {
  padding: 0 1.4rem 1.2rem;
  color: var(--text-soft);
  font-size: 0.98rem;
  animation: faq-auf 0.35s ease both;
}
.faq a { color: var(--gruen); }

/* Textlinks im "Über mich"-Bereich */
.ueber-text a {
  color: var(--gruen);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--salbei);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.ueber-text a:hover,
.ueber-text a:focus-visible {
  color: var(--gruen-dunkel);
  text-decoration-color: var(--gruen);
}

/* Ablauf-Schritte in den FAQ (z. B. Überweisung einreichen) */
.faq .ablauf {
  padding: 0.3rem 1.4rem 0.7rem;
  display: grid;
  gap: 1.05rem;
  animation: faq-auf 0.35s ease both;
}
.ablauf-schritt {
  display: grid;
  grid-template-columns: 4.6rem 1fr;
  gap: 0.9rem;
  align-items: baseline;
}
.ablauf-nr {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gruen);
}
.faq .ablauf-schritt p {
  margin: 0;
  padding: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  animation: none;
}
.faq .ablauf-hinweis { font-style: italic; }
@media (max-width: 480px) {
  .ablauf-schritt { grid-template-columns: 1fr; gap: 0.3rem; }
}
@keyframes faq-auf {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Nach-oben-Button --- */
.nach-oben {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gruen);
  color: var(--weiss);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(50, 71, 44, 0.28);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s;
  z-index: 60;
}
.nach-oben svg { width: 18px; height: 18px; }
.nach-oben.sichtbar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nach-oben:hover,
.nach-oben:focus-visible { background: var(--gruen-dunkel); }

/* --- Reduzierte Bewegung: alles sofort sichtbar, nichts wackelt --- */
@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js .reveal-chips li,
  .js .section-kopf .zier,
  .js .zitat::before,
  .js .zitat::after {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-auftritt { animation: none !important; opacity: 1; }
  .nach-oben { opacity: 1; transform: none; pointer-events: auto; }
}

/* --- Responsive --- */
@media (max-width: 760px) {
  .site-header .container { flex-wrap: wrap; gap: 0 1rem; }
  .brand-name { font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .site-nav { flex-basis: 100%; }
  .site-nav ul {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .site-nav.offen ul { max-height: 380px; }
  .site-nav li { border-top: 1px solid var(--salbei-hell); }
  .site-nav a { display: block; padding: 0.9rem 0.2rem; }
  .ueber-grid { grid-template-columns: 1fr; }
  .portrait-platzhalter { max-width: 320px; margin: 0 auto; }
  section { padding: 3.2rem 0; }
  .hero-blatt { width: 56px; opacity: 0.1; }
  .nach-oben { right: 1rem; bottom: 1rem; width: 42px; height: 42px; }
}
