/* ==========================================================================
   Mit Hand und Herz – Physiotherapie Teresa Kling
   Design-System nach Referenz "Grafische Aufbereitung.png"
   ========================================================================== */

/* ---- Schriften (selbst gehostet, DSGVO-konform) -------------------------- */
@font-face {
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dancing-script-v29-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/dancing-script-v29-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Ms Madi";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ms-madi-v2-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/montserrat-v31-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/montserrat-v31-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/montserrat-v31-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/nunito-sans-v19-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/nunito-sans-v19-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/nunito-sans-v19-latin-700.woff2") format("woff2");
}

/* ---- Design-Tokens -------------------------------------------------------- */
:root {
  /* Farben */
  --cream: #faf6ef;
  --cream-2: #f4ede1;
  --paper: #fffefb;
  --sage: #8a9b7e;
  --sage-deep: #67775c;
  --sage-soft: #d9e0cd;
  --sage-wash: #eef1e6;
  --rose: #d49a9a;
  --rose-deep: #b97e7e;
  --rose-wash: #f6e9e6;
  --ink: #3e463b;
  --ink-soft: #6f7669;
  --line: #e7dfd1;

  /* Typografie */
  --font-logo: "Ms Madi", "Dancing Script", "Segoe Script", cursive;
  --font-script: "Dancing Script", "Segoe Script", cursive;
  --font-display: "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;

  /* Layout */
  --container: 71rem;
  --radius: 16px;
  --shadow: 0 10px 30px -12px rgba(62, 70, 59, 0.18);
  --shadow-soft: 0 6px 18px -8px rgba(62, 70, 59, 0.14);
}

/* ---- Basis ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Sprungziele nicht unter dem klebenden Header parken */
  scroll-padding-top: 5.75rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 0.75em;
}

p {
  margin: 0 0 1.1em;
}

a {
  color: var(--sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--rose-deep);
}

ul {
  padding-left: 1.2em;
}

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

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6em 1.2em;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ---- Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95em 1.9em;
  min-height: 2.75rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--rose);
  color: #fff;
}

.btn-primary:hover {
  background: var(--rose-deep);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--sage-deep);
  border-color: var(--sage);
}

.btn-outline:hover {
  background: var(--sage);
  color: #fff;
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}

.btn-light:hover {
  border-color: var(--rose);
  color: var(--rose-deep);
}

/* ---- Header / Navigation ----------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.6rem;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.05;
  padding-block: 0.55rem;
}

.brand-script {
  font-family: var(--font-logo);
  font-weight: 400;
  font-size: 1.9rem;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.brand-script .brand-heart {
  width: 1.05em;
  height: 1.05em;
  transform: translateY(0.18em);
  flex: none;
}

.brand-sub {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a:not(.btn),
.nav-drop-btn {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.site-nav a:not(.btn):hover,
.site-nav a[aria-current="page"] {
  color: var(--rose-deep);
}

.site-nav a[aria-current="page"] {
  border-bottom: 2px solid var(--rose);
  padding-bottom: 0.2em;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-drop-btn::after {
  content: "";
  width: 0.45em;
  height: 0.45em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.has-dropdown.open .nav-drop-btn::after {
  transform: rotate(225deg) translateY(-2px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 15.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  display: none;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -0.95rem;
  left: 0;
  right: 0;
  height: 1rem;
}

.has-dropdown.open .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 0.55em 0.9em;
  border-radius: 8px;
  letter-spacing: 0.05em !important;
}

.dropdown a:hover {
  background: var(--sage-wash);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.7rem;
  height: 2.7rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0.6rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 0.8rem 1.2rem 1.4rem;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav > ul > li {
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:not(.btn),
  .nav-drop-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.9em 0.2em;
    font-size: 0.88rem;
  }

  .site-nav a[aria-current="page"] {
    border-bottom: 0;
    color: var(--rose-deep);
  }

  .dropdown {
    position: static;
    transform: none;
    display: none;
    border: 0;
    box-shadow: none;
    background: var(--sage-wash);
    border-radius: 10px;
    margin: 0 0 0.8rem;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .nav-cta {
    margin-top: 1.1rem;
  }
}

/* ---- Hero (Startseite) ---------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2.5rem, 6vw, 4.5rem);
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

/* Logo-Block nach Vorlage: Schriftzug, Linien, Herz, Name */
.hero-logo {
  max-width: 30rem;
  margin-inline: auto;
  text-align: center;
}

.logo-script {
  display: block;
  font-family: var(--font-logo);
  font-weight: 400;
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 1.6rem;
}

.logo-script .ls-1,
.logo-script .ls-2 {
  display: block;
  font-size: clamp(3.1rem, 7vw, 4.5rem);
}

.logo-script .ls-1 {
  transform: translateX(-0.55em);
}

.logo-script .ls-2 {
  transform: translateX(0.35em);
}

@media (max-width: 560px) {
  .logo-script .ls-1 {
    transform: translateX(-0.15em);
  }

  .logo-script .ls-2 {
    transform: translateX(0.1em);
  }
}

.logo-script .word-herz {
  position: relative;
  display: inline-block;
  isolation: isolate;
  color: var(--rose-deep);
}

.logo-script .word-herz svg {
  position: absolute;
  width: 1.55em;
  height: 1.45em;
  top: -0.52em;
  right: -0.72em;
  z-index: -1;
  transform: rotate(6deg);
  pointer-events: none;
}

.logo-caps {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.logo-caps::before,
.logo-caps::after {
  content: "";
  flex: 1 1 0;
  height: 1px;
  background: var(--ink-soft);
  opacity: 0.45;
}

.logo-caps.logo-name {
  font-size: clamp(0.85rem, 1.8vw, 1.02rem);
  color: var(--ink-soft);
}

.logo-heart {
  display: flex;
  justify-content: center;
  color: var(--rose);
  margin: 0.55rem 0;
}

.logo-heart svg {
  width: 0.95rem;
  height: 0.95rem;
}

.hero-claim {
  font-family: var(--font-logo);
  font-size: clamp(1.9rem, 3.8vw, 2.4rem);
  color: var(--rose-deep);
  text-align: center;
  margin: 1.6rem 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-center .hero-actions {
  justify-content: center;
}

.hero-art {
  position: relative;
}

.hero-art img {
  width: min(100%, 27rem);
  margin-inline: auto;
}

@media (min-width: 900px) {
  .hero-art {
    order: -1;
  }
}

/* Vertrauens-Leiste unter dem Hero */
.trust-bar {
  background: var(--sage-wash);
  border-block: 1px solid var(--line);
}

.trust-bar ul {
  list-style: none;
  margin: 0;
  padding: 1.1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 2.6rem;
}

.trust-bar li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.trust-bar li svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
}

/* ---- Sektionen ------------------------------------------------------------------ */
.section {
  padding-block: clamp(3.2rem, 7vw, 5.5rem);
}

.section-alt {
  background: var(--cream-2);
}

.section-head {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
}

.eyebrow {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 400;
  color: var(--rose-deep);
  margin-bottom: 0.4rem;
}

.section-head h1,
.section-head h2 {
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

@media (max-width: 520px) {
  .section-head h1,
  .section-head h2,
  .prose h2 {
    letter-spacing: 0.07em;
    hyphens: auto;
    overflow-wrap: break-word;
  }
}

.heart-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 0.9rem auto 0;
  color: var(--rose);
}

.heart-divider::before,
.heart-divider::after {
  content: "";
  width: 3.2rem;
  height: 1px;
  background: var(--rose);
  opacity: 0.55;
}

.heart-divider svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* Zitat */
.quote {
  position: relative;
  max-width: 44rem;
  margin: 0 auto 2.2rem;
  padding: 1.6rem 2rem;
  background: var(--paper);
  border-left: 3px solid var(--rose);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-soft);
  font-style: italic;
  color: var(--ink-soft);
}

.quote footer {
  margin-top: 0.6rem;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prose {
  max-width: 46rem;
  margin-inline: auto;
}

.prose h2 {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.2em;
}

/* ---- Leistungs-Karten -------------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem 1.7rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1.2rem;
}

.card h3 {
  font-size: 1.02rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.card p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  flex-grow: 1;
}

.card .card-link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--rose-deep);
}

.card .card-link::after {
  content: " →";
}

.card .card-link:hover {
  color: var(--sage-deep);
}

/* Karte als Ganzes klickbar */
.card .card-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
}

.card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card .card-link:focus-visible {
  outline: none;
}

.card .card-link:focus-visible::before {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

/* ---- Listen mit Blatt-Aufzählung ------------------------------------------------------ */
.leaf-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4em;
}

.leaf-list li {
  position: relative;
  padding-left: 1.9em;
  margin-bottom: 0.55em;
}

.leaf-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 1.05em;
  height: 1.05em;
  background: url("../img/leaf-bullet.svg") no-repeat center / contain;
}

/* zweispaltige Liste auf breiten Screens */
@media (min-width: 720px) {
  .leaf-list.cols-2 {
    columns: 2;
    column-gap: 2.5rem;
  }

  .leaf-list.cols-2 li {
    break-inside: avoid;
  }
}

/* ---- Vorteils-Box ------------------------------------------------------------------ */
.benefit-box {
  background: var(--sage-wash);
  border: 1px solid var(--sage-soft);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  margin-block: 2rem;
}

.benefit-box h3 {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.benefit-box .leaf-list {
  margin-bottom: 0;
}

/* ---- Über-mich-Teaser --------------------------------------------------------------- */
.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr 1.15fr;
  }
}

/* Porträtfoto im organischen Bogen-Rahmen, eingebettet in eine Aquarell-Fläche */
.portrait-frame {
  position: relative;
  width: min(100%, 24rem);
  margin-inline: auto;
  isolation: isolate;
}

/* weiche Aquarell-Fläche hinter dem Foto (Salbei + Altrosa) */
.portrait-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -7% -9%;
  border-radius: 46% 54% 48% 52% / 42% 44% 56% 58%;
  background:
    radial-gradient(58% 52% at 68% 30%, var(--sage-soft), transparent 72%),
    radial-gradient(56% 50% at 30% 72%, var(--rose-wash), transparent 74%);
  filter: blur(7px);
}

/* kleiner Zweig als dekorativer Akzent unten links */
.portrait-frame::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 6.5rem;
  height: 2.4rem;
  left: -1.4rem;
  bottom: 1.2rem;
  background: url("../img/sprig.svg") no-repeat center / contain;
  transform: scaleX(-1) rotate(-8deg);
  opacity: 0.9;
  pointer-events: none;
}

.portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50% 50% 14% 14% / 34% 34% 10% 10%;
  border: 7px solid var(--paper);
  box-shadow: 0 16px 34px -12px rgba(62, 70, 59, 0.32);
}

/* ---- Rundes Doppelporträt (Übergabe-Abschnitt) --------------------------------------- */
@media (min-width: 860px) {
  .about-grid.about-grid-flip {
    grid-template-columns: 1.15fr 1fr;
  }
}

.portrait-round {
  position: relative;
  width: min(100%, 21rem);
  margin: 0 auto;
  isolation: isolate;
}

/* weiche Aquarell-Fläche hinter dem Foto */
.portrait-round::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -8%;
  border-radius: 50%;
  background:
    radial-gradient(58% 52% at 68% 30%, var(--sage-soft), transparent 72%),
    radial-gradient(56% 50% at 30% 72%, var(--rose-wash), transparent 74%);
  filter: blur(8px);
}

.portrait-round img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 60%;
  border-radius: 50%;
  border: 7px solid var(--paper);
  box-shadow: 0 16px 34px -12px rgba(62, 70, 59, 0.32);
}

.portrait-round figcaption {
  margin-top: 1.1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Fließtext unter dem Doppelporträt schließt bündig an die Textspalte an */
.about-grid-flip + .prose {
  margin-inline: 0;
  margin-top: clamp(1.6rem, 4vw, 2.6rem);
}

/* ---- CTA-Band ------------------------------------------------------------------------ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--sage-deep);
  color: #fff;
  text-align: center;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.cta-band .eyebrow {
  color: var(--rose-wash);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-band p {
  max-width: 38rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band .hero-actions {
  justify-content: center;
  margin-top: 1.8rem;
}

.cta-band .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.cta-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ---- Unterseiten: Seitenkopf ----------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.6rem, 6vw, 4.2rem);
  text-align: center;
}

.page-hero .section-head {
  margin-bottom: 0;
}

.breadcrumb {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

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

.breadcrumb a:hover {
  color: var(--rose-deep);
}

.breadcrumb span[aria-current] {
  color: var(--sage-deep);
}

/* Deko-Blobs (Aquarell) */
.blob {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.hero .blob-sage {
  width: 34rem;
  top: -8rem;
  right: -10rem;
  opacity: 0.9;
}

.hero .blob-rose {
  width: 22rem;
  bottom: -7rem;
  left: -8rem;
}

.page-hero .blob-sage {
  width: 26rem;
  top: -6rem;
  right: -8rem;
}

.page-hero .blob-rose {
  width: 18rem;
  bottom: -6rem;
  left: -6rem;
}

.hero,
.page-hero,
.cta-band {
  isolation: isolate;
}

.cta-band .blob {
  opacity: 0.25;
  filter: saturate(0);
}

.cta-band .blob-rose {
  width: 24rem;
  top: -8rem;
  right: -8rem;
  bottom: auto;
  left: auto;
}

/* Zweig-Deko am Sektionsende */
.sprig-end {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem;
}

.sprig-end img {
  width: 7.5rem;
  opacity: 0.85;
}

/* ---- Kontakt --------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 940px) {
  .contact-grid {
    grid-template-columns: 1fr 1.25fr;
    align-items: start;
  }
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.contact-card svg {
  width: 2.3rem;
  height: 2.3rem;
  flex: none;
}

.contact-card h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.hours-table td {
  padding: 0.35em 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}

.hours-table td:last-child {
  text-align: right;
}

/* Formular */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid .full {
    grid-column: 1 / -1;
  }
}

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75em 1em;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 8.5rem;
}

.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.consent input {
  margin-top: 0.3em;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--sage-deep);
  flex: none;
}

.form-status {
  display: none;
  margin-top: 1.1rem;
  padding: 0.9em 1.2em;
  border-radius: 10px;
  font-size: 0.95rem;
}

.form-status.ok {
  display: block;
  background: var(--sage-wash);
  border: 1px solid var(--sage-soft);
  color: var(--sage-deep);
}

.form-status.error {
  display: block;
  background: var(--rose-wash);
  border: 1px solid var(--rose);
  color: var(--rose-deep);
}

/* Honeypot unsichtbar */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---- Hinweis-Box (Platzhalter) ----------------------------------------------------------- */
.notice {
  background: var(--rose-wash);
  border: 1px dashed var(--rose);
  border-radius: 12px;
  padding: 0.9em 1.2em;
  font-size: 0.9rem;
  color: var(--rose-deep);
}

/* ---- Footer -------------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: #e9e6dd;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 2.2rem;
  padding-block: clamp(2.8rem, 6vw, 4rem) 2.2rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-brand .brand-script {
  color: #fff;
  font-size: 2.1rem;
}

.footer-brand .brand-sub {
  color: #b9bfae;
}

.footer-brand p {
  font-size: 0.92rem;
  color: #c9c5ba;
  margin-top: 1rem;
}

.kassen-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  border: 1px solid rgba(212, 154, 154, 0.5);
  border-radius: 999px;
  padding: 0.5em 1.1em;
  margin-top: 0.6rem;
}

.kassen-badge svg {
  width: 0.95rem;
  height: 0.95rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.5em;
}

.site-footer a {
  color: #d4d1c6;
  text-decoration: none;
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: var(--rose);
}

.footer-contact p {
  font-size: 0.95rem;
  color: #d4d1c6;
  margin-bottom: 0.5em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  font-size: 0.85rem;
  color: #a9a698;
}

.footer-bottom a {
  color: inherit;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: var(--rose);
}

/* ---- Rechtsseiten / Textseiten --------------------------------------------------------------- */
.legal .prose h2 {
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  margin-top: 2.2em;
}

.legal .prose h3 {
  font-size: 0.95rem;
  margin-top: 1.8em;
}

/* ---- Werdegang / CV ---------------------------------------------------------------------------- */
.cv-block {
  margin-bottom: 2.4rem;
}

.cv-block:last-child {
  margin-bottom: 0;
}

.cv-block h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.1rem;
}

.cv-block h3 svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: none;
}

.cv-list {
  margin: 0;
}

.cv-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.2rem 1.5rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.cv-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.cv-period {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--rose-deep);
  padding-top: 0.15em;
}

.cv-role {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.cv-place {
  display: block;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}

@media (max-width: 540px) {
  .cv-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .cv-period {
    padding-top: 0;
  }
}

/* ---- Ergänzungen ------------------------------------------------------------------------------- */
.hero-h {
  margin: 0;
  font-weight: 500;
}

.hero-script,
.hero-title {
  display: block;
}

.trust-bar li img {
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
}

.kassen-badge.on-light {
  color: var(--rose-deep);
  border-color: var(--rose);
}

.footer-brand .brand-script,
.footer-brand .brand-sub {
  display: block;
}

.section-head.left {
  text-align: left;
  margin: 0 0 1.2rem;
  max-width: none;
}

.section-head.left .heart-divider {
  justify-content: flex-start;
  margin-left: 0;
}

.section-head.left .heart-divider::before {
  display: none;
}

/* ---- Sonstiges -------------------------------------------------------------------------------- */
.center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

/* ---- Motion (nur ohne Reduced-Motion-Wunsch, mit No-JS-Fallback) ------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes rise-in {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  .hero-h,
  .hero-claim,
  .hero .hero-actions,
  .hero-art {
    animation: rise-in 0.7s ease-out backwards;
  }

  .hero-claim {
    animation-delay: 0.12s;
  }

  .hero .hero-actions {
    animation-delay: 0.24s;
  }

  .hero-art {
    animation-delay: 0.18s;
  }

  html.js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
    transition-delay: calc(var(--stagger, 0) * 70ms);
  }

  html.js .reveal.in {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
