/*
Theme Name: Landzahnarzt
Theme URI: https://landzahnarzt.com
Author: Landzahnarzt Relaunch
Description: Modernes, bildstarkes WordPress-Theme fuer eine Zahnarztpraxis. Reinweiss, Flieder, Tuerkis und Gruen, grosse Typografie fuer beste Lesbarkeit, Hero mit Bild/Slider/Video, Team- und Audioverwaltung, integriertes Kontaktformular.
Version: 1.2.0
Requires at least: 6.2
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: landzahnarzt
Tags: dentist, health, business, custom-colors, custom-logo, custom-menu, featured-images, translation-ready, accessibility-ready
*/

/* ============================================================
   1. Design-Tokens
   ============================================================ */
:root {
  --lz-white: #ffffff;
  --lz-bg: #ffffff;
  --lz-surface: #f6f5f9;
  --lz-surface-2: #eef0f4;
  --lz-line: #e4e2ec;
  --lz-ink: #23212c;
  --lz-muted: #5c5966;
  --lz-primary: #8f7bd6;
  --lz-primary-soft: #ece6fa;
  --lz-primary-dark: #6a55b5;
  --lz-turquoise: #4cbfc4;
  --lz-turquoise-soft: #d7f3f2;
  --lz-green: #7fb69a;
  --lz-green-soft: #e6f2ec;

  --lz-font-heading: "Baloo 2", "Quicksand", system-ui, sans-serif;
  --lz-font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --lz-base: 18px;

  --lz-radius-s: 12px;
  --lz-radius: 20px;
  --lz-radius-l: 32px;
  --lz-radius-xl: 44px;

  --lz-pad: clamp(1.25rem, 5vw, 4rem);
  --lz-maxw: 1240px;
  --lz-section: clamp(4rem, 9vw, 8rem);

  --lz-shadow-s: 0 6px 18px rgba(35, 33, 44, 0.06);
  --lz-shadow: 0 18px 50px rgba(35, 33, 44, 0.1);
  --lz-shadow-l: 0 30px 80px rgba(106, 85, 181, 0.16);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--lz-bg);
  color: var(--lz-ink);
  font-family: var(--lz-font-body);
  font-size: var(--lz-base);
  line-height: 1.75;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

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

a { color: var(--lz-primary-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--lz-ink); }

h1, h2, h3, h4, h5, h6, .lz-display {
  font-family: var(--lz-font-heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--lz-ink);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); }
h5 { font-size: 1.08rem; }
h6 { font-size: 1rem; }

p { margin: 0 0 1.15em; max-width: 68ch; }

.lz-lead { font-size: clamp(1.1rem, 1.7vw, 1.35rem); color: var(--lz-muted); line-height: 1.65; }
.lz-eyebrow {
  display: inline-block;
  font-family: var(--lz-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lz-primary-dark);
  background: var(--lz-primary-soft);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  margin-bottom: 1rem;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link:focus {
  position: fixed; top: 1rem; left: 1rem; z-index: 999;
  width: auto; height: auto; clip: auto;
  background: #fff; padding: 0.75rem 1.25rem; border-radius: 999px;
  box-shadow: var(--lz-shadow);
}
:focus-visible { outline: 3px solid var(--lz-primary); outline-offset: 3px; border-radius: 6px; }

/* ============================================================
   3. Layout
   ============================================================ */
.lz-wrap { width: 100%; max-width: var(--lz-maxw); margin-inline: auto; padding-inline: var(--lz-pad); }
.lz-section { padding-block: var(--lz-section); position: relative; }
.lz-section--soft { background: var(--lz-surface); }
.lz-section--tint { background: linear-gradient(160deg, var(--lz-primary-soft), var(--lz-turquoise-soft)); }
.lz-section__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.lz-section__head--center { margin-inline: auto; text-align: center; }
.lz-section__head--center p { margin-inline: auto; }

.lz-grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.lz-grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.lz-grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }
.lz-grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.lz-split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .lz-split { grid-template-columns: 1.05fr 1fr; } .lz-split--rev > :first-child { order: 2; } }

/* ============================================================
   4. Buttons
   ============================================================ */
.lz-btn {
  --btn-bg: var(--lz-primary);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--lz-font-body);
  font-weight: 600; font-size: 1.02rem; line-height: 1;
  padding: 1.05rem 1.9rem;
  border-radius: 999px; border: 2px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg);
  text-decoration: none; cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s, background .25s, color .25s;
  box-shadow: 0 10px 26px rgba(143, 123, 214, 0.28);
}
.lz-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(143, 123, 214, 0.36); color: #fff; }
.lz-btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--lz-ink);
  border-color: currentColor; box-shadow: none;
}
.lz-btn--ghost:hover { background: var(--lz-ink); color: #fff; border-color: var(--lz-ink); }
.lz-btn--light {
  --btn-bg: rgba(255,255,255,.9); --btn-fg: var(--lz-ink); box-shadow: var(--lz-shadow-s);
}
.lz-btn--light:hover { color: var(--lz-primary-dark); background: #fff; }
.lz-btn--turquoise { --btn-bg: var(--lz-turquoise); box-shadow: 0 10px 26px rgba(76, 191, 196, .3); }

/* ============================================================
   5. Header / Navigation
   ============================================================ */
.lz-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.lz-header.is-stuck { background: rgba(255,255,255,.93); border-color: var(--lz-line); box-shadow: 0 8px 30px rgba(35,33,44,.06); }
.lz-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: 84px;
}
.lz-brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--lz-ink); }
.lz-brand img { max-height: 56px; width: auto; }
.lz-brand__name { font-family: var(--lz-font-heading); font-weight: 800; font-size: 1.4rem; line-height: 1.05; }
.lz-brand__tag { display: block; font-family: var(--lz-font-body); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--lz-muted); font-weight: 600; }

.lz-nav { display: none; }
@media (min-width: 1040px) { .lz-nav { display: block; } }
.lz-nav ul { list-style: none; display: flex; align-items: center; gap: .35rem; margin: 0; padding: 0; }
.lz-nav li { position: relative; }
.lz-nav a {
  display: block; padding: .6rem .85rem; border-radius: 999px;
  font-weight: 500; font-size: 1rem; color: var(--lz-ink); text-decoration: none;
  transition: background .2s, color .2s;
}
.lz-nav a:hover, .lz-nav .current-menu-item > a { background: var(--lz-primary-soft); color: var(--lz-primary-dark); }
.lz-nav .sub-menu {
  position: absolute; top: calc(100% + .6rem); left: 0; min-width: 15rem;
  flex-direction: column; align-items: stretch; gap: .15rem;
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
  border: 1px solid var(--lz-line); border-radius: var(--lz-radius); padding: .6rem;
  box-shadow: var(--lz-shadow); opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: .22s;
}
.lz-nav li:hover > .sub-menu, .lz-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }

.lz-header__actions { display: flex; align-items: center; gap: .75rem; }
.lz-header__cta { display: none; }
@media (min-width: 720px) { .lz-header__cta { display: inline-flex; padding: .8rem 1.4rem; } }

.lz-burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 52px; height: 52px; padding: 0 13px; border: 0; cursor: pointer;
  background: var(--lz-primary-soft); border-radius: 50%;
}
@media (min-width: 1040px) { .lz-burger { display: none; } }
.lz-burger span { display: block; height: 2px; background: var(--lz-ink); border-radius: 2px; transition: .3s; }
.lz-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.lz-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lz-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.lz-mobile {
  position: fixed; inset: 0; z-index: 190;
  background: linear-gradient(170deg, rgba(255,255,255,.92), rgba(236,230,250,.9));
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  padding: 7rem var(--lz-pad) 3rem;
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-1.5rem);
  transition: .35s cubic-bezier(.2,.8,.3,1);
}
.lz-mobile.is-open { opacity: 1; visibility: visible; transform: none; }
.lz-mobile ul { list-style: none; margin: 0; padding: 0; }
.lz-mobile > ul > li { border-bottom: 1px solid rgba(35,33,44,.08); }
.lz-mobile a {
  display: block; padding: 1rem 0; font-family: var(--lz-font-heading);
  font-size: 1.5rem; font-weight: 700; color: var(--lz-ink); text-decoration: none;
}
.lz-mobile .sub-menu a { font-size: 1.1rem; font-weight: 500; font-family: var(--lz-font-body); padding-left: 1rem; }
.lz-mobile__foot { margin-top: 2.5rem; display: grid; gap: .85rem; }

/* ============================================================
   6. Hero
   ============================================================ */
.lz-hero { position: relative; isolation: isolate; overflow: hidden; }
.lz-hero__media { position: absolute; inset: 0; z-index: -2; }
.lz-hero__media img, .lz-hero__media video { width: 100%; height: 100%; object-fit: cover; }
.lz-hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.lz-hero__slide.is-active { opacity: 1; }
.lz-hero__slide img { transform: scale(1.06); transition: transform 8s linear; }
.lz-hero__slide.is-active img { transform: scale(1); }
.lz-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(35,33,44,.5) 0%, rgba(35,33,44,.18) 55%, rgba(143,123,214,.22) 100%);
}
.lz-hero__inner { position: relative; display: flex; align-items: center; min-height: clamp(30rem, 78vh, 46rem); padding-block: clamp(5rem, 10vw, 8rem); }
.lz-hero--page .lz-hero__inner { min-height: clamp(22rem, 55vh, 32rem); }

.lz-glass {
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--lz-radius-xl);
  box-shadow: 0 30px 70px rgba(35,33,44,.22);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  max-width: 44rem;
  color: #fff;
}
.lz-glass h1, .lz-glass h2 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.18); }
.lz-glass p { color: rgba(255,255,255,.94); font-size: clamp(1.05rem, 1.6vw, 1.3rem); text-shadow: 0 1px 12px rgba(0,0,0,.2); }
.lz-glass .lz-eyebrow { background: rgba(255,255,255,.28); color: #fff; }
.lz-hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.6rem; }

.lz-hero__dots { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 3; }
.lz-hero__dots button {
  width: 11px; height: 11px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.5); transition: .25s;
}
.lz-hero__dots button.is-active { background: #fff; width: 34px; border-radius: 999px; }

/* geschwungene / schraege Abschluesse */
.lz-shape { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; line-height: 0; pointer-events: none; }
.lz-shape svg { width: 100%; height: clamp(48px, 7vw, 110px); display: block; }
.lz-shape path { fill: var(--lz-bg); }
.lz-shape--soft path { fill: var(--lz-surface); }

/* ============================================================
   7. Karten & Medien
   ============================================================ */
.lz-card {
  background: #fff; border: 1px solid var(--lz-line); border-radius: var(--lz-radius-l);
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
  box-shadow: var(--lz-shadow-s);
  transition: transform .35s cubic-bezier(.2,.8,.3,1), box-shadow .35s, border-color .35s;
  height: 100%;
}
.lz-card:hover { transform: translateY(-6px); box-shadow: var(--lz-shadow-l); border-color: transparent; }
.lz-card h3 { margin-bottom: .4rem; }
.lz-card p { margin-bottom: 0; color: var(--lz-muted); }
.lz-card__icon {
  width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center;
  background: var(--lz-turquoise-soft); color: var(--lz-primary-dark); margin-bottom: 1.1rem;
  font-family: var(--lz-font-heading); font-weight: 800; font-size: 1.3rem;
}
.lz-card--link { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.lz-card__more { margin-top: auto; padding-top: 1.1rem; font-weight: 600; color: var(--lz-primary-dark); }

.lz-media { border-radius: var(--lz-radius-l); overflow: hidden; box-shadow: var(--lz-shadow); background: var(--lz-surface); }
.lz-media img { width: 100%; transition: transform .8s cubic-bezier(.2,.8,.3,1); }
.lz-media:hover img { transform: scale(1.05); }
.lz-media--tall img { aspect-ratio: 3/4; object-fit: cover; }
.lz-media--wide img { aspect-ratio: 16/10; object-fit: cover; }

.lz-parallax { will-change: transform; }

/* ============================================================
   8. Team
   ============================================================ */
.lz-team { display: grid; gap: clamp(1rem, 2vw, 1.75rem); grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr)); }
.lz-team--compact { grid-template-columns: repeat(auto-fill, minmax(min(100%, 12.5rem), 1fr)); margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.lz-team__group { margin: 2.5rem 0 1.25rem; padding-bottom: .65rem; border-bottom: 2px solid var(--lz-turquoise-soft); }
.lz-team-photo { max-width: 68rem; margin: 0 auto clamp(3rem, 6vw, 5rem); border-radius: var(--lz-radius-xl); overflow: hidden; box-shadow: var(--lz-shadow); }
.lz-team-photo img { width: 100%; aspect-ratio: 16/7; object-fit: cover; object-position: center; }
.lz-member { position: relative; }
.lz-member__photo {
  position: relative; border-radius: var(--lz-radius-l); overflow: hidden;
  aspect-ratio: 3/4; background: var(--lz-surface); box-shadow: var(--lz-shadow-s);
}
.lz-member__photo img { width: 100%; height: 100%; object-fit: cover; transition: opacity .5s, transform .7s cubic-bezier(.2,.8,.3,1); }
.lz-member__photo img.is-alt { position: absolute; inset: 0; opacity: 0; }
.lz-member:hover .lz-member__photo img.is-base { opacity: 0; }
.lz-member:hover .lz-member__photo img.is-alt { opacity: 1; }
.lz-member:hover .lz-member__photo img { transform: scale(1.04); }
.lz-member__photo::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: linear-gradient(180deg, rgba(35,33,44,0) 40%, rgba(35,33,44,.45));
}
.lz-member:hover .lz-member__photo::after { opacity: 1; }
.lz-member__heading { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
.lz-member__heading > div { min-width: 0; }
.lz-member__play {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--lz-line); cursor: pointer;
  background: var(--lz-white); display: grid; place-items: center; transition: transform .25s, background .25s, box-shadow .25s;
  box-shadow: var(--lz-shadow-s);
}
.lz-member__play:hover, .lz-member__play:focus-visible, .lz-member__play.is-playing { transform: scale(1.07); background: var(--lz-turquoise-soft); }
.lz-member__play svg { width: 18px; height: 18px; fill: var(--lz-primary-dark); }
.lz-member__play--empty { cursor: default; opacity: .78; }
.lz-member__play--empty svg { fill: var(--lz-muted); }
.lz-member__audio-empty { flex: 0 0 auto; display: grid; justify-items: center; gap: .2rem; color: var(--lz-muted); line-height: 1; }
.lz-member__audio-empty small { font-size: .67rem; white-space: nowrap; }
.lz-member__body { padding: 1rem .25rem 0; }
.lz-member__name { font-family: var(--lz-font-heading); font-weight: 700; font-size: 1.2rem; margin: 0; }
.lz-member__role { color: var(--lz-primary-dark); font-weight: 600; font-size: .95rem; margin: .15rem 0 .45rem; }
.lz-member__text { color: var(--lz-muted); font-size: .97rem; margin: 0; }
.lz-member__editmedia { display: none; gap: .4rem; flex-wrap: wrap; margin-top: .75rem; }
.lz-member__editmedia button { border: 1px solid var(--lz-turquoise); border-radius: 999px; padding: .45rem .7rem; background: var(--lz-white); color: var(--lz-ink); font: inherit; font-size: .75rem; cursor: pointer; }
.lz-member__editmedia button.is-selected { background: var(--lz-turquoise-soft); }
.lz-is-editing .lz-member__editmedia { display: flex; }
.lz-team__cta { display: flex; justify-content: center; margin-top: clamp(2.25rem, 5vw, 4rem); }

/* ============================================================
   9. Floating Bars
   ============================================================ */
.lz-floating {
  position: fixed; right: clamp(.75rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%);
  z-index: 150; display: grid; gap: .6rem; width: min(19rem, calc(100vw - 2rem));
}
.lz-floating__panel {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--lz-radius-l); padding: 1rem;
  box-shadow: var(--lz-shadow);
}
.lz-floating__close {
  position: absolute; top: .55rem; right: .65rem; width: 34px; height: 34px;
  border: 0; border-radius: 50%; background: var(--lz-turquoise-soft); color: var(--lz-ink);
  display: grid; place-items: center; font-size: 1.45rem; line-height: 1; cursor: pointer;
}
.lz-floating__title { font-family: var(--lz-font-heading); font-weight: 700; font-size: 1rem; margin: 0 0 .6rem; }
.lz-voice { display: flex; align-items: center; gap: .7rem; padding: .45rem 0; }
.lz-voice + .lz-voice { border-top: 1px solid rgba(35,33,44,.08); }
.lz-voice__btn {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--lz-primary); display: grid; place-items: center; transition: .25s;
}
.lz-voice__btn:hover { transform: scale(1.08); }
.lz-voice__btn svg { width: 16px; height: 16px; fill: #fff; }
.lz-voice__meta { min-width: 0; }
.lz-voice__name { font-weight: 600; font-size: .92rem; line-height: 1.25; }
.lz-voice__sub { font-size: .8rem; color: var(--lz-muted); line-height: 1.25; }
.lz-floating--collapsed .lz-floating__panel { display: none; }
.lz-floating__toggle {
  justify-self: end; border: 0; cursor: pointer; border-radius: 999px;
  background: var(--lz-primary); color: #fff; font-weight: 600; font-size: .85rem;
  padding: .7rem 1.1rem; box-shadow: var(--lz-shadow-s);
}

@media (max-width: 860px) {
  .lz-floating { top: auto; bottom: 5.25rem; transform: none; right: .65rem; left: auto; width: min(13.25rem, calc(100vw - 1.3rem)); justify-items: end; }
  .lz-floating__panel { padding: .65rem; border-radius: var(--lz-radius); }
  .lz-floating__close { top: .4rem; right: .45rem; width: 29px; height: 29px; font-size: 1.2rem; }
  .lz-floating__title { padding-right: 1.8rem; font-size: .82rem; margin-bottom: .35rem; }
  .lz-voice { gap: .48rem; padding: .25rem 0; }
  .lz-voice__btn { width: 32px; height: 32px; }
  .lz-voice__btn svg { width: 13px; height: 13px; }
  .lz-voice__name { font-size: .76rem; }
  .lz-voice__sub { display: none; }
  .lz-floating__toggle { padding: .6rem .9rem; font-size: .78rem; }
}

.lz-sticky-cta {
  position: fixed; left: 50%; bottom: 1.2rem; transform: translate(-50%, 140%);
  z-index: 160; display: flex; align-items: center; gap: .9rem;
  background: rgba(255,255,255,.82); backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255,255,255,.7); border-radius: 999px;
  padding: .55rem .6rem .55rem 1.4rem; box-shadow: var(--lz-shadow);
  transition: transform .45s cubic-bezier(.2,.8,.3,1), opacity .35s; opacity: 0;
  max-width: calc(100vw - 1.5rem);
}
.lz-sticky-cta.is-visible { transform: translate(-50%, 0); opacity: 1; }
.lz-sticky-cta__text { font-weight: 600; font-size: .98rem; }
@media (max-width: 560px) { .lz-sticky-cta__text { display: none; } .lz-sticky-cta { padding: .5rem; } }

/* ============================================================
   10. Kontaktformular
   ============================================================ */
.lz-contact { background: linear-gradient(165deg, var(--lz-primary-soft) 0%, #fff 55%, var(--lz-turquoise-soft) 100%); }
.lz-form {
  background: #fff; border-radius: var(--lz-radius-xl); padding: clamp(1.5rem, 3.5vw, 3rem);
  box-shadow: var(--lz-shadow); border: 1px solid var(--lz-line);
}
.lz-form__row { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); margin-bottom: 1.1rem; }
.lz-field { display: grid; gap: .4rem; }
.lz-field label { font-weight: 600; font-size: .98rem; }
.lz-field input, .lz-field textarea, .lz-field select {
  font: inherit; font-size: 1.02rem; color: var(--lz-ink);
  padding: .95rem 1.1rem; border: 2px solid var(--lz-line); border-radius: var(--lz-radius-s);
  background: var(--lz-surface); transition: border-color .2s, background .2s;
  width: 100%;
}
.lz-field input:focus, .lz-field textarea:focus, .lz-field select:focus { outline: none; border-color: var(--lz-primary); background: #fff; }
.lz-field textarea { min-height: 9rem; resize: vertical; }
.lz-consent { display: flex; gap: .75rem; align-items: flex-start; font-size: .95rem; color: var(--lz-muted); margin-bottom: 1.4rem; }
.lz-consent input { width: 1.4rem; height: 1.4rem; flex: 0 0 auto; margin-top: .15rem; accent-color: var(--lz-primary); }
.lz-hp { position: absolute; left: -9999px; }
.lz-notice { border-radius: var(--lz-radius); padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-weight: 500; }
.lz-notice--ok { background: var(--lz-green-soft); color: #2f5f49; }
.lz-notice--err { background: #fdecec; color: #8c2f2f; }

.lz-contactinfo { display: grid; gap: 1.25rem; }
.lz-contactinfo__item { display: flex; gap: .9rem; align-items: flex-start; }
.lz-contactinfo__label { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--lz-muted); font-weight: 600; }
.lz-contactinfo__value { font-family: var(--lz-font-heading); font-weight: 700; font-size: 1.2rem; }
.lz-contactinfo a { text-decoration: none; }

/* ============================================================
   11. Footer
   ============================================================ */
.lz-footer { background: var(--lz-ink); color: rgba(255,255,255,.78); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.lz-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: .9rem; }
.lz-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.lz-footer a:hover { color: #fff; }
.lz-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.lz-footer__grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.lz-footer__brand { font-family: var(--lz-font-heading); font-weight: 800; font-size: 1.5rem; color: #fff; }
.lz-footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .9rem;
}
.lz-footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }

/* ============================================================
   12. Beitraege / Inhalt
   ============================================================ */
.lz-prose { max-width: 46rem; }
.lz-prose h2 { margin-top: 2.2em; }
.lz-prose ul, .lz-prose ol { padding-left: 1.3rem; }
.lz-prose li { margin-bottom: .5rem; }
.lz-prose img { border-radius: var(--lz-radius); }
.lz-prose blockquote {
  margin: 2rem 0; padding: 1.5rem 1.75rem; border-left: 4px solid var(--lz-primary);
  background: var(--lz-surface); border-radius: var(--lz-radius);
  font-family: var(--lz-font-heading); font-size: 1.25rem; line-height: 1.45;
}
.lz-posts { display: grid; gap: 1.75rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); }
.lz-post { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--lz-line); border-radius: var(--lz-radius-l); overflow: hidden; box-shadow: var(--lz-shadow-s); transition: transform .35s, box-shadow .35s; }
.lz-post__link { display: flex; flex: 1; flex-direction: column; color: inherit; text-decoration: none; }
.lz-post:hover { transform: translateY(-6px); box-shadow: var(--lz-shadow-l); }
.lz-post__img { aspect-ratio: 16/10; overflow: hidden; background: var(--lz-surface); }
.lz-post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.lz-post:hover .lz-post__img img { transform: scale(1.06); }
.lz-post__body { padding: 1.4rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.lz-post__date { font-size: .85rem; color: var(--lz-muted); margin-bottom: .4rem; }
.lz-post__title { font-size: 1.25rem; margin-bottom: .5rem; }
.lz-post__title a { color: inherit; text-decoration: none; }

.lz-gallery { display: grid; gap: clamp(.75rem, 1.5vw, 1.25rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.lz-gallery figure { margin: 0; border-radius: var(--lz-radius); overflow: hidden; box-shadow: var(--lz-shadow-s); }
.lz-gallery img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .7s cubic-bezier(.2,.8,.3,1), filter .5s; }
.lz-gallery figure:hover img { transform: scale(1.07); }

.lz-facts { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr)); text-align: center; }
.lz-fact__num { font-family: var(--lz-font-heading); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--lz-primary-dark); line-height: 1; }
.lz-fact__label { color: var(--lz-muted); font-size: .98rem; }

.lz-steps { counter-reset: step; display: grid; gap: 1.25rem; }
.lz-step { width: 100%; display: flex; gap: 1.1rem; align-items: flex-start; text-align: left; color: inherit; font: inherit; cursor: pointer; background: #fff; border: 1px solid var(--lz-line); border-radius: var(--lz-radius-l); padding: 1.4rem 1.6rem; transition: border-color .25s, box-shadow .25s, transform .25s; }
.lz-step:hover, .lz-step:focus-visible, .lz-step.is-active { border-color: var(--lz-turquoise); box-shadow: var(--lz-shadow-s); transform: translateX(.3rem); }
.lz-step::before {
  counter-increment: step; content: counter(step);
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  background: var(--lz-turquoise-soft); color: var(--lz-turquoise);
  display: grid; place-items: center; font-family: var(--lz-font-heading); font-weight: 800; font-size: 1.1rem;
}
.lz-focus__media { position: relative; aspect-ratio: 16/10; }
.lz-focus__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; opacity: 0; transform: scale(1.03); transition: opacity .4s, transform .7s cubic-bezier(.2,.8,.3,1); }
.lz-focus__image.is-active { opacity: 1; transform: scale(1); }

/* Direkte Bearbeitung für angemeldete Redakteure */
.lz-frontedit { position: fixed; left: 1rem; bottom: 1rem; z-index: 1000; font-family: var(--lz-font-body); }
.lz-frontedit__toggle, .lz-frontedit__save, .lz-frontedit__cancel, .lz-frontedit__bar button, .lz-frontedit__bar select {
  min-height: 42px; border: 1px solid var(--lz-line); border-radius: 999px; padding: .65rem 1rem; background: var(--lz-white); color: var(--lz-ink); font: inherit; font-weight: 600; cursor: pointer; box-shadow: var(--lz-shadow-s);
}
.lz-frontedit__toggle, .lz-frontedit__save { background: var(--lz-primary); color: var(--lz-white); border-color: transparent; }
.lz-frontedit__bar { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; max-width: calc(100vw - 2rem); padding: .55rem; border: 1px solid var(--lz-line); border-radius: var(--lz-radius); background: color-mix(in srgb, var(--lz-white) 92%, transparent); backdrop-filter: blur(16px); box-shadow: var(--lz-shadow); }
.lz-frontedit__bar button { min-width: 42px; padding-inline: .8rem; }
.lz-frontedit__status { padding-inline: .55rem; color: var(--lz-muted); font-size: .85rem; }
.lz-is-editing [data-lz-edit-field] { outline: 2px dashed var(--lz-turquoise); outline-offset: 4px; cursor: text; }
.lz-is-editing img[data-lz-edit-field], .lz-is-editing [data-lz-edit-gallery] { cursor: pointer; }
.lz-is-editing [data-lz-edit-field]:focus { outline-style: solid; background: color-mix(in srgb, var(--lz-turquoise-soft) 45%, transparent); }

@media (max-width: 680px) {
  .lz-section { padding-block: clamp(3.25rem, 13vw, 4.75rem); }
  .lz-team { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lz-member__name { font-size: 1.05rem; }
  .lz-member__role, .lz-member__text { font-size: .88rem; }
  .lz-member__play { width: 42px; height: 42px; }
  .lz-step { padding: 1rem; }
  .lz-team-photo img { aspect-ratio: 4/3; }
  .lz-frontedit { left: .65rem; right: .65rem; bottom: .65rem; }
  .lz-frontedit__bar { max-height: 40vh; overflow: auto; }
  .lz-frontedit__status { width: 100%; order: 4; }
}

.lz-pagination { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 3rem; }
.lz-pagination .page-numbers {
  display: grid; place-items: center; min-width: 46px; height: 46px; padding: 0 .75rem;
  border-radius: 999px; background: var(--lz-surface); text-decoration: none; font-weight: 600;
}
.lz-pagination .current { background: var(--lz-primary); color: #fff; }

/* ============================================================
   13. Animationen
   ============================================================ */
.lz-reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.8,.3,1), transform .8s cubic-bezier(.2,.8,.3,1); }
.lz-reveal.is-in { opacity: 1; transform: none; }
.lz-reveal[data-delay="1"] { transition-delay: .09s; }
.lz-reveal[data-delay="2"] { transition-delay: .18s; }
.lz-reveal[data-delay="3"] { transition-delay: .27s; }
.lz-reveal[data-delay="4"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .lz-reveal { opacity: 1; transform: none; }
}

/* WordPress Basisklassen */
.alignwide { max-width: 1100px; margin-inline: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption-text, figcaption { font-size: .88rem; color: var(--lz-muted); padding-top: .5rem; }
.admin-bar .lz-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .lz-header { top: 46px; } }
