/* =====================================================================
   LEL – Praxis für Logopädie, Ergotherapie & Lerntherapie Mandy Thormeier
   Stylesheet 2026 – Farben und Schrift aus dem bestehenden Auftritt,
   modernisiertes Layout.
   ===================================================================== */

/* ---------- Schriften (selbst gehostet, kein Google-Fonts-Aufruf) ---------- */
@font-face {
  font-family: "Neuton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/neuton-400.woff2") format("woff2");
}
@font-face {
  font-family: "Neuton";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/neuton-700.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("../fonts/nunito-sans-var.woff2") format("woff2");
}

/* ---------- Design-Tokens ---------- */
:root {
  --orange: #ef7b10;
  --orange-dark: #d46a08;
  --orange-soft: #fdeedd;
  --orange-tint: #fff7ee;
  --grey: #706f6f;
  --grey-dark: #3d3c3c;
  --grey-light: #b2b2b2;
  --line: #ebe4dc;
  --paper: #fbf8f4;
  --white: #ffffff;
  --success: #2f8f5b;
  --error: #c8412b;

  --font-head: "Neuton", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(61, 60, 60, 0.08);
  --shadow-sm: 0 4px 14px rgba(61, 60, 60, 0.06);
  --container: 1180px;
  --header-h: 84px;
}

/* ---------- Reset / Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--grey-dark);
  background: var(--paper);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--orange-dark);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--grey-dark);
  margin: 0 0 0.5em;
}
h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}
h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}
h3 {
  font-size: 1.45rem;
}
h4 {
  font-size: 1.15rem;
}
p {
  margin: 0 0 1.1em;
}
ul,
ol {
  margin: 0 0 1.2em;
  padding-left: 1.3em;
}
strong {
  font-weight: 700;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.7rem;
}
.lead {
  font-size: 1.18rem;
  color: var(--grey);
}
.muted {
  color: var(--grey);
}
.accent {
  color: var(--orange);
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--orange);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 200;
}
.skip-link:focus {
  left: 8px;
}
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(18px, 4vw, 32px);
}
.section {
  padding-block: clamp(56px, 8vw, 104px);
}
.section--tight {
  padding-block: clamp(36px, 5vw, 64px);
}
.section--white {
  background: var(--white);
}
.section--tint {
  background: var(--orange-tint);
}
.section-head {
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn svg {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(239, 123, 16, 0.3);
}
.btn--primary:hover {
  background: var(--orange-dark);
  color: #fff;
}
.btn--secondary {
  background: var(--white);
  color: var(--grey-dark);
  border-color: var(--line);
}
.btn--secondary:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}
.btn--ghost {
  background: transparent;
  color: var(--orange);
  padding-inline: 0.4rem;
}
.btn--lg {
  padding: 1rem 1.9rem;
  font-size: 1.08rem;
}
.btn--block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  /* Mobil: Logo mittig, Menü-Button rechts */
  display: grid;
  grid-template-columns: minmax(46px, 1fr) auto minmax(46px, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}
.site-header__inner .brand {
  grid-column: 2;
  justify-self: center;
}
.site-header__inner .nav-toggle {
  grid-column: 3;
  justify-self: end;
}
@media (min-width: 1024px) {
  /* Desktop: Logo, Navigation und Button als kompakte Gruppe mittig */
  .site-header__inner {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2.2vw, 2.75rem);
  }
  .site-header__inner .brand,
  .site-header__inner .nav,
  .site-header__inner .header-actions {
    grid-column: auto;
    justify-self: auto;
  }
}
.header-actions .btn {
  padding: 0.7rem 1.15rem;
  font-size: 0.95rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: none;
}
.brand img {
  height: 58px;
  width: auto;
}
@media (max-width: 420px) {
  .brand img {
    height: 50px;
  }
}
.brand__text {
  display: none;
  font-family: var(--font-head);
  font-size: 1rem;
  line-height: 1.2;
  color: var(--grey);
}
.brand__text strong {
  display: block;
  color: var(--grey-dark);
  font-size: 1.05rem;
}
@media (min-width: 1360px) {
  .brand__text {
    display: block;
  }
}
.nav {
  display: none;
  align-items: center;
  gap: 0.2rem;
}
.nav a {
  padding: 0.5rem 0.55rem;
  border-radius: 999px;
  color: var(--grey-dark);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav a:hover {
  background: var(--orange-soft);
  color: var(--orange-dark);
}
.nav a[aria-current="page"] {
  background: var(--orange);
  color: #fff;
}
.header-actions {
  display: none;
  align-items: center;
  gap: 0.6rem;
}
.header-phone {
  display: none;
  white-space: nowrap;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--grey-dark);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
}
.header-phone:hover {
  color: var(--orange-dark);
  background: var(--orange-soft);
}
.header-phone svg {
  width: 1.1em;
  height: 1.1em;
  color: var(--orange);
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: none;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 0;
  color: var(--grey-dark);
  cursor: pointer;
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 1024px) {
  .nav,
  .header-actions {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}
@media (min-width: 1440px) {
  .header-phone {
    display: inline-flex;
  }
}
.site-header .container {
  max-width: var(--container);
}

/* Mobile-Menü */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--white);
  padding: 1.2rem clamp(18px, 4vw, 32px) 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  overflow-y: auto;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.mobile-menu__top {
  display: grid;
  grid-template-columns: minmax(46px, 1fr) auto minmax(46px, 1fr);
  align-items: center;
  min-height: var(--header-h);
}
.mobile-menu__top .brand {
  grid-column: 2;
}
.mobile-menu__top .nav-toggle {
  grid-column: 3;
  justify-self: end;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.mobile-menu nav a {
  font-family: var(--font-head);
  font-size: 1.7rem;
  padding: 0.55rem 0.6rem;
  border-radius: var(--radius-sm);
  color: var(--grey-dark);
}
.mobile-menu nav a[aria-current="page"] {
  color: var(--orange);
}
.mobile-menu__cta {
  margin-top: auto;
  display: grid;
  gap: 0.7rem;
}
.mobile-menu__meta {
  color: var(--grey);
  font-size: 0.95rem;
}
body.menu-open {
  overflow: hidden;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(44px, 7vw, 96px);
}
.hero::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--orange-soft), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
  }
}
.hero h1 {
  margin-bottom: 0.6em;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.hero__media {
  position: relative;
}
.hero__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero__badge {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.6rem;
  margin-top: 0.9rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 1.1rem;
  font-size: 0.95rem;
  color: var(--grey);
  border-left: 4px solid var(--orange);
}
.hero__badge strong {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--grey-dark);
}
.notice {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--orange-soft);
  color: var(--orange-dark);
  border-radius: 999px;
  padding: 0.45rem 1rem 0.45rem 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}
.notice__tag {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Kurz-Fakten */
.facts {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.fact {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}
.fact__icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
}
.fact__icon svg {
  width: 22px;
  height: 22px;
}
.fact strong {
  display: block;
  color: var(--grey-dark);
}
.fact span {
  color: var(--grey);
  font-size: 0.95rem;
}

/* ---------- Karten / Leistungen ---------- */
.cards {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card__media img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}
.card__body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__body p {
  color: var(--grey);
  flex: 1;
}
.card__link {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card__link svg {
  width: 1em;
  height: 1em;
  transition: transform 0.2s ease;
}
.card:hover .card__link svg {
  transform: translateX(3px);
}
.card--soft {
  background: var(--orange-tint);
  border-color: var(--orange-soft);
}

/* ---------- Text + Bild ---------- */
.split {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}
@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .split--reverse .split__media {
    order: -1;
  }
}
.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}
.split__media--portrait img {
  aspect-ratio: 4 / 5;
}
.split__media--landscape img {
  aspect-ratio: 4 / 3;
}
.prose p:last-child {
  margin-bottom: 0;
}

/* ---------- Listen mit Häkchen ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.check-list li {
  position: relative;
  padding-left: 1.9rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--orange-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef7b10' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/62% no-repeat;
}
.two-col {
  display: grid;
  gap: 2rem;
}
@media (min-width: 760px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.panel h3 {
  margin-bottom: 1rem;
}

/* ---------- Ablauf / Schritte ---------- */
.steps {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  position: relative;
}
.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.3rem;
}
.step p {
  color: var(--grey);
  margin: 0;
}

/* ---------- Standorte ---------- */
.locations {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.location {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.location__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.location__pin {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex: none;
}
.location__pin svg {
  width: 22px;
  height: 22px;
}
.location h3 {
  margin: 0;
}
.location__sub {
  color: var(--grey);
  font-size: 0.95rem;
}
.location address {
  font-style: normal;
  line-height: 1.55;
}
.location__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin-top: auto;
  padding-top: 0.4rem;
}
.location__links a {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.location__links svg {
  width: 1em;
  height: 1em;
}
.tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  vertical-align: middle;
}
.tag--soft {
  background: var(--orange-soft);
  color: var(--orange-dark);
}

/* ---------- Kontakt-Bereich ---------- */
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 940px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
  }
}
.contact-info {
  display: grid;
  gap: 1rem;
}
.contact-line {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.contact-line__icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
}
.contact-line__icon svg {
  width: 21px;
  height: 21px;
}
.contact-line strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}
.contact-line a {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--grey-dark);
}
.contact-line a:hover {
  color: var(--orange-dark);
}

/* ---------- Formulare ---------- */
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}
.form h3 {
  margin-bottom: 0.3rem;
}
.form__intro {
  color: var(--grey);
  margin-bottom: 1.4rem;
}
.form__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 600px) {
  .form__grid {
    grid-template-columns: 1fr 1fr;
  }
  .form__grid .field--full {
    grid-column: 1 / -1;
  }
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
  color: var(--grey-dark);
}
.field label .opt {
  color: var(--grey-light);
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--grey-dark);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(239, 123, 16, 0.15);
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23706f6f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 1.1rem;
  padding-right: 2.6rem;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--error);
}
.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.choice {
  position: relative;
}
.choice input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.choice span {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.15s ease;
}
.choice input:checked + span {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.choice input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(239, 123, 16, 0.25);
}
.checkbox {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--grey);
}
.checkbox input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.2rem;
  accent-color: var(--orange);
  flex: none;
}
.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
}
.form__note {
  font-size: 0.88rem;
  color: var(--grey-light);
  margin: 0;
}
.form__status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
}
.form__status.is-success {
  display: block;
  background: #e7f5ec;
  color: var(--success);
}
.form__status.is-error {
  display: block;
  background: #fdecea;
  color: var(--error);
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ---------- CTA-Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #f59a3f 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  gap: 1.4rem;
  align-items: center;
  box-shadow: 0 16px 40px rgba(239, 123, 16, 0.28);
}
@media (min-width: 860px) {
  .cta-banner {
    grid-template-columns: 1.4fr 1fr;
  }
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.4rem;
}
.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-start;
}
@media (min-width: 860px) {
  .cta-banner__actions {
    justify-content: flex-end;
  }
}
.cta-banner .btn--primary {
  background: #fff;
  color: var(--orange-dark);
  box-shadow: none;
}
.cta-banner .btn--primary:hover {
  background: var(--orange-tint);
}
.cta-banner .btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.cta-banner .btn--secondary:hover {
  border-color: #fff;
  color: #fff;
}

/* ---------- Seitenkopf (Unterseiten) ---------- */
.page-head {
  padding-block: clamp(40px, 6vw, 80px) clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--orange-soft), transparent 70%);
  pointer-events: none;
}
.page-head .container {
  position: relative;
}
.page-head h1 {
  max-width: 800px;
}
.page-head .lead {
  max-width: 760px;
}
.breadcrumb {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--grey);
}
.breadcrumb a:hover {
  color: var(--orange-dark);
}
.breadcrumb span {
  margin-inline: 0.4rem;
  color: var(--grey-light);
}

/* ---------- Galerie ---------- */
.gallery {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery a {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s ease;
}
.gallery a:hover img {
  transform: scale(1.04);
}
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(96vw, 1200px);
}
.lightbox::backdrop {
  background: rgba(30, 28, 26, 0.85);
}
.lightbox img {
  max-height: 88vh;
  width: auto;
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 0 auto;
}
.lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--grey-dark);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

/* ---------- Team ---------- */
.team {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.member {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.member__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--orange-tint);
}
.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.member__body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.member__role {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.member h3 {
  margin-bottom: 0.2rem;
}
.member ul {
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: var(--grey);
}
.member ul li {
  margin-bottom: 0.25rem;
}
.member h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 1rem 0 0.4rem;
}
details.more {
  margin-top: 0.6rem;
  border-top: 1px solid var(--line);
  padding-top: 0.6rem;
}
details.more summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--orange);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
details.more summary::-webkit-details-marker {
  display: none;
}
details.more summary::after {
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
}
details.more[open] summary::after {
  content: "–";
}

/* Fortbildungs-Timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
.timeline li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.timeline .year {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--orange);
  font-size: 1.2rem;
}

/* Angebote (Zusatzangebote) */
.offer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--orange);
}
.offer h3 {
  margin-bottom: 0.3rem;
}
.offer .meta {
  color: var(--grey);
  font-weight: 600;
}
blockquote.quote {
  margin: 0;
  padding: 1.4rem 1.6rem;
  border-left: 5px solid var(--orange);
  background: var(--orange-tint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-head);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--grey-dark);
}

/* ---------- Rechtstexte ---------- */
.legal {
  max-width: 820px;
}
.legal h2 {
  font-size: 1.6rem;
  margin-top: 2.2rem;
}
.legal h3,
.legal p strong {
  font-family: var(--font-body);
  font-weight: 700;
}
.legal p,
.legal li {
  font-size: 1rem;
  color: var(--grey-dark);
  word-break: break-word;
}
.legal ul {
  padding-left: 1.4rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #f3f1ee;
  border-top: 1px solid #e6e2dd;
  color: var(--grey-dark);
  padding-block: clamp(48px, 6vw, 72px) 2rem;
  margin-top: 0;
}
.site-footer a {
  color: var(--grey-dark);
}
.site-footer a:hover {
  color: var(--orange-dark);
}
.footer-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 2.5rem;
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}
.site-footer h4 {
  color: var(--orange);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}
.site-footer address {
  font-style: normal;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid #e0dbd4;
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  font-size: 0.9rem;
  color: var(--grey);
}
.footer-bottom ul {
  display: flex;
  gap: 1.2rem;
}

/* ---------- Mobile Aktionsleiste ---------- */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.6rem clamp(12px, 3vw, 18px) calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn {
  padding-inline: 0.8rem;
  font-size: 0.95rem;
}
.mobile-bar {
  transform: translateY(110%);
  transition: transform 0.25s ease;
}
.mobile-bar.is-visible {
  transform: none;
}
@media (min-width: 1024px) {
  .mobile-bar {
    display: none;
  }
}
@media (max-width: 1023px) {
  body {
    padding-bottom: 78px;
  }
}

/* ---------- Hilfsklassen ---------- */
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mb-0 {
  margin-bottom: 0;
}
.text-center {
  text-align: center;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* =====================================================================
   Standorte: Dropdown, Umschalter, Anruf-Auswahl, Standort-Hinweis
   ===================================================================== */
.nav-drop {
  position: relative;
}
.nav-drop__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.55rem;
  border-radius: 999px;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--grey-dark);
  cursor: pointer;
  white-space: nowrap;
}
.nav-drop__btn svg {
  width: 1em;
  height: 1em;
  transition: transform 0.2s ease;
}
.nav-drop__btn:hover,
.nav-drop.is-open .nav-drop__btn {
  background: var(--orange-soft);
  color: var(--orange-dark);
}
.nav-drop__btn.is-active {
  background: var(--orange);
  color: #fff;
}
.nav-drop.is-open .nav-drop__btn svg {
  transform: rotate(180deg);
}
.nav-drop__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 290px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.nav-drop.is-open .nav-drop__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav .nav-drop__menu a {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  white-space: normal;
}
.nav .nav-drop__menu a strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem;
}
.nav .nav-drop__menu a span {
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 400;
}
.nav .nav-drop__menu a[aria-current="page"] {
  background: var(--orange-soft);
  color: var(--orange-dark);
}
.nav .nav-drop__menu a[aria-current="page"] span {
  color: var(--orange-dark);
}

.mobile-menu__locs {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
}
.mobile-menu nav .mobile-menu__locs a {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mobile-menu__locs svg {
  width: 1.1em;
  height: 1.1em;
  color: var(--orange);
}
.mobile-menu__meta a {
  color: var(--orange);
}

.location__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--grey-dark);
}
.location__phone svg {
  width: 1em;
  height: 1em;
  color: var(--orange);
}
.location__phone:hover {
  color: var(--orange-dark);
}
.location__links {
  align-items: center;
}

/* Standort-Umschalter auf den Standortseiten */
.loc-switch {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 1.1rem;
}
.loc-switch a {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--grey);
}
.loc-switch a.is-active {
  background: var(--orange);
  color: #fff;
}
.loc-hero {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .loc-hero {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}
.loc-hero__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

/* Anruf-Auswahl (Mobile-Leiste, wenn kein Standort gewählt) */
.call-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.18);
  padding: 1.2rem clamp(16px, 4vw, 24px) calc(1.2rem + env(safe-area-inset-bottom));
  display: grid;
  gap: 0.7rem;
}
.call-sheet[hidden] {
  display: none;
}
.call-sheet p {
  margin: 0 0 0.2rem;
  font-weight: 700;
}
.call-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(30, 28, 26, 0.45);
}

/* Gemerkter Standort */
.loc-hint {
  background: var(--orange-soft);
  color: var(--grey-dark);
  border-bottom: 1px solid #f7d9bd;
  font-size: 0.92rem;
}
.loc-hint__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 40px;
  padding-block: 0.3rem;
}
.loc-hint__inner > span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.loc-hint svg {
  width: 1em;
  height: 1em;
  color: var(--orange);
}
.loc-hint a {
  color: var(--orange-dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: auto;
}
.loc-hint a:hover {
  color: var(--orange);
}
.loc-hint button {
  background: none;
  border: none;
  color: var(--grey-dark);
  cursor: pointer;
  padding: 0.3rem;
  display: inline-flex;
}
.loc-hint button svg {
  color: var(--grey);
  width: 1.1em;
  height: 1.1em;
}
.loc-hint__inner > span,
.loc-hint__inner a {
  white-space: nowrap;
}
.loc-hint__inner > span strong {
  margin-left: 0.2rem;
}
@media (max-width: 480px) {
  .loc-hint {
    font-size: 0.85rem;
  }
  .loc-hint__inner {
    gap: 0.6rem;
  }
}

.nav .nav-drop__menu a.nav-drop__foot {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.2rem;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding-top: 0.8rem;
  font-weight: 700;
  color: var(--orange);
}
.nav .nav-drop__menu a.nav-drop__foot svg {
  width: 1em;
  height: 1em;
}

.cards--4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.cards--4 .card__body {
  padding: 1.2rem 1.25rem 1.4rem;
}
.cards--4 h3 {
  font-size: 1.3rem;
}

/* Hero-Badge als Link mit CTA */
a.hero__badge {
  color: var(--grey);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
a.hero__badge:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.hero__badge-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}
.hero__badge-cta svg {
  width: 1em;
  height: 1em;
  transition: transform 0.2s ease;
}
a.hero__badge:hover .hero__badge-cta svg {
  transform: translateX(3px);
}
.hero__media > a img {
  transition: transform 0.3s ease;
}
.hero__media > a:hover img {
  transform: scale(1.015);
}

/* Team-Seite: großes Teambild über der Philosophie */
.team-hero {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.team-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.team-hero figcaption {
  margin-top: 0.8rem;
  color: var(--grey);
}
.team-hero figcaption strong {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--grey-dark);
}
.team-philosophy {
  max-width: 820px;
}

/* Hero-Badge: CTA linksbündig in eigener Zeile */
.hero__badge {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.hero__badge-cta {
  margin-left: 0;
  margin-top: 0.35rem;
}
