/* ===== Variablen (Grün-Grau, passend zu Logo) ===== */
:root {
  --green-900: #1a3329;
  --green-700: #2d5a4a;
  --green-600: #3d6b58;
  --green-500: #4a7c68;
  --green-400: #6b9b87;
  --green-200: #c5ddd4;
  --green-100: #e8f2ee;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --font: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(26, 51, 41, 0.12);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
}

/* Skip-Link: nur bei Fokus sichtbar (Barrierefreiheit) */
.skip-link {
  position: absolute;
  top: -3rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--green-700);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0.75rem;
  outline: 3px solid var(--green-400);
  outline-offset: 2px;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
  border-radius: 2px;
}

/* E-Mail- und Telefon-Links: einheitlicher Hover wie im Header */
a[href^="mailto:"],
a[href^="tel:"] {
  transition: color 0.2s ease;
}
a[href^="mailto:"]:hover,
a[href^="tel:"]:hover {
  color: var(--green-700);
  text-decoration: none;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  --container-padding: 1.25rem;
}

.container.narrow {
  max-width: 720px;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 100;
  transition: box-shadow 0.35s var(--ease);
}

.header.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: opacity 0.3s var(--ease);
}

.logo:hover {
  text-decoration: none;
  opacity: 0.9;
}

.logo-img {
  display: block;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}

.logo:hover .logo-img {
  transform: scale(1.02);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  gap: 0.05em;
}

.logo-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--green-700);
}

.logo-title {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--gray-500);
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.header-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-contact-link:hover {
  color: var(--green-700);
}

.header-contact-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: inherit;
}

.header-contact-icon svg {
  width: 12px;
  height: 12px;
  display: block;
}

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

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

.nav a {
  color: var(--gray-700);
  font-weight: 500;
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--green-500);
  border-radius: 1px;
  transition: width 0.35s var(--ease), left 0.35s var(--ease);
}

.nav a:hover {
  color: var(--green-700);
  text-decoration: none;
}

.nav a:hover::after {
  width: 100%;
  left: 0;
}

.nav a.header-cta::after {
  display: none;
}

.nav .header-cta {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  color: var(--white);
  transition: opacity 0.3s var(--ease), transform 0.25s var(--ease), box-shadow 0.3s var(--ease);
}

.nav .header-cta:hover {
  color: var(--white);
  opacity: 0.95;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  transition: opacity 0.25s var(--ease);
}

.nav-toggle:hover {
  opacity: 0.8;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
  border-radius: var(--radius);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

@media (max-width: 700px) {
  .header-contact {
    display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 1.25rem;
    display: none;
  }

  .nav.is-open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(165deg, var(--green-200) 0%, #b8d9cc 25%, var(--green-100) 50%, #d4e9e0 75%, var(--gray-100) 100%);
  padding: 5rem 0 6rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(45, 90, 74, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 80% 100%, rgba(45, 90, 74, 0.06) 0%, transparent 45%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, transparent 0%, var(--green-400) 20%, var(--green-600) 50%, var(--green-400) 80%, transparent 100%);
  opacity: 0.9;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 90, 74, 0.2), transparent);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-container {
  display: flex;
  gap: 2rem;
  min-height: 0;
}

.hero-inner {
  flex: 1;
  min-width: 0;
  z-index: 2;
}

.hero-image-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 363px;
  position: absolute;
  bottom: -6rem;
  right: 2rem;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 865px) {
  .hero-image-wrap {
    display: none;
  }
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-logo-img {
  display: block;
  width: auto;
  max-width: 200px;
  height: auto;
  max-height: 52px;
  filter: drop-shadow(0 2px 8px rgba(26, 51, 41, 0.15));
}

.hero-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  gap: 0.05em;
  text-align: left;
}

.hero-logo-name {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--green-800, var(--green-900));
}

.hero-logo-title {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-600);
}

.hero-location {
  margin: 0 0 0.6rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 0 0 1.35rem;
  font-size: clamp(2.1rem, 5.5vw, 3rem);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 18ch;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-lead {
  margin: 0 0 1.5rem;
  max-width: 540px;
  font-size: 1.25rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.hero-usps {
  margin: 0 0 2.25rem;
  padding: 1.25rem 1.5rem 1.35rem;
  list-style: none;
  max-width: 500px;
  text-align: left;
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(45, 90, 74, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(26, 51, 41, 0.08);
}

.hero-usps li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.6rem;
}

.hero-usps li:last-child {
  margin-bottom: 0;
}

.hero-usps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 2px rgba(45, 90, 74, 0.2);
}

.hero-usps strong {
  color: var(--green-900);
}

.btn-hero {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(45, 90, 74, 0.35), 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(45, 90, 74, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(45, 90, 74, 0.3);
}

.btn-primary:hover {
  background: var(--green-600);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(45, 90, 74, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-700);
  border: 2px solid var(--green-500);
}

.btn-secondary:hover {
  background: var(--green-100);
  color: var(--green-900);
  text-decoration: none;
  border-color: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(45, 90, 74, 0.15);
}

button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 1.0625rem;
  text-decoration: none;
}

.btn-contact .btn-icon {
  font-size: 1.2em;
  line-height: 1;
}

/* ===== Sektionen ===== */
.section {
  padding: 3.5rem 0;
}

/* Scroll-Ziel: Abstand nach oben, damit der sticky Header den Titel nicht überdeckt */
.section[id] {
  scroll-margin-top: 5.5rem;
}

.section:nth-child(even) {
  background: var(--gray-100);
}

.section h2 {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 2.5rem;
  height: 3px;
  background: var(--green-500);
  border-radius: 2px;
}

.section-intro {
  margin: 0 0 2rem;
  max-width: 560px;
  color: var(--gray-600);
}

.section-usp {
  margin: 0 0 1.75rem;
  max-width: 560px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--green-700);
  line-height: 1.5;
}

.section-vorstellung .section-usp {
  margin-bottom: 1.5rem;
}

.section-leistungen .section-usp {
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

.section-kontakt .section-usp {
  margin-bottom: 1.5rem;
}

/* ===== Vorstellung ===== */
.vorstellung-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.vorstellung-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vorstellung-figure {
  margin: 0;
}

.vorstellung-caption {
  margin-top: 0.5rem;
  line-height: 1.4;
}

.vorstellung-caption-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green-900);
}

.vorstellung-caption-role {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-600);
}

.vorstellung-portrait {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.vorstellung-portrait:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.img-placeholder {
  background: var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.img-portrait {
  aspect-ratio: 3/4;
  max-height: 320px;
}

/* Räumlichkeiten: 1/11, 9/11, 1/11 – wechselt alle 7 s, Höhe bleibt gleich */
.vorstellung-premises-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-900);
  margin: 2rem 0 0;
  padding: 0;
}

.premises-grid {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 9fr 1fr 1fr;
  grid-template-rows: minmax(200px, 32vw) auto;
  gap: 0.5rem 0.5rem;
  transition: grid-template-columns 0.5s var(--ease);
}

.premises-grid.premises--active-0 { grid-template-columns: 9fr 1fr 1fr; }
.premises-grid.premises--active-1 { grid-template-columns: 1fr 9fr 1fr; }
.premises-grid.premises--active-2 { grid-template-columns: 1fr 1fr 9fr; }

.premises-cell {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 0;
  display: flex;
  align-items: stretch;
}

.premises-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Progressbar: läuft 7 s, dann Wechsel */
.premises-progress {
  grid-column: 1 / -1;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.25rem;
}

.premises-progress-fill {
  height: 100%;
  width: 100%;
  background: var(--green-600);
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
}

.premises-progress-fill.is-running {
  animation: premises-progress 7s linear forwards;
}

@keyframes premises-progress {
  to { transform: scaleX(1); }
}

@media (max-width: 600px) {
  .premises-grid {
    gap: 0.35rem;
  }
}

.vorstellung-text .lead {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-top: 0;
}

.vorstellung-text p {
  margin: 0 0 1rem;
}

.vorstellung-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .vorstellung-grid {
    grid-template-columns: 1fr;
  }

  .vorstellung-media {
    order: -1;
  }
}

/* Qualifikationen & Lebenslauf (Über mich) */
.lebenslauf-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.lebenslauf-title {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-900);
}

.lebenslauf-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lebenslauf-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: 0.6rem 0;
  border-left: 2px solid var(--green-200);
  padding-left: 1rem;
  margin-left: 0.5rem;
}

.lebenslauf-item + .lebenslauf-item {
  margin-top: 0;
}

.lebenslauf-jahr {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--green-700);
  white-space: nowrap;
}

.lebenslauf-text {
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.lebenslauf-auszeichnung {
  display: block;
  margin-top: 0.35rem;
  font-style: italic;
  font-weight: 600;
  color: var(--green-700);
  padding-left: 0.75rem;
  border-left: 3px solid var(--green-400);
}

@media (max-width: 500px) {
  .lebenslauf-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* ===== Leistungen (Kacheln) ===== */
.leistungen-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.kachel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.kachel:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300, var(--green-200));
  transform: translateY(-5px);
}

.kachel-icon {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 0.75rem;
  transition: transform 0.5s var(--ease);
}

.kachel:hover .kachel-icon {
  transform: scale(1.15);
}

.kachel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--green-900);
  transition: color 0.25s var(--ease);
}

.kachel:hover h3 {
  color: var(--green-700);
}

.kachel p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.section-leistungen .section-intro {
  margin-bottom: 0.5rem;
}

/* Leistungen: gestaffeltes Einblenden beim Scroll */
@media (prefers-reduced-motion: no-preference) {
  .section-leistungen .kachel {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  }

  .section-leistungen .kachel:nth-child(1) { transition-delay: 0.05s; }
  .section-leistungen .kachel:nth-child(2) { transition-delay: 0.15s; }
  .section-leistungen .kachel:nth-child(3) { transition-delay: 0.25s; }
  .section-leistungen .kachel:nth-child(4) { transition-delay: 0.35s; }

  .section-leistungen.is-visible .kachel {
    opacity: 1;
    transform: translateY(0);
  }

  .section-leistungen.is-visible .kachel:hover {
    transform: translateY(-5px);
  }
}

/* Häufige Fragen (Leistungen) */
.faq-block {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-200);
}

.faq-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-900);
  margin: 0 0 1.25rem 0;
}

.faq-list {
  margin: 0;
  padding: 0;
}

.faq-item {
  margin-bottom: 0.35rem;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.faq-item:hover {
  border-color: var(--green-200);
}

.faq-item.is-open {
  border-color: var(--green-300, var(--green-200));
  box-shadow: 0 2px 8px rgba(45, 90, 74, 0.08);
}

.faq-question {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
  padding: 0.5rem 0.875rem 0.5rem 2.25rem;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid var(--green-600);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: transform 0.3s var(--ease);
}

.faq-item.is-open .faq-question::before {
  transform: translateY(-50%) rotate(90deg);
}

/* Aufklapp-Animation der Antwort (öffnen + schließen) */
.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
  min-height: 0;
}

.faq-item.is-open .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer-wrapper > .faq-answer {
  overflow: hidden;
  min-height: 0;
  transition: opacity 0.25s var(--ease), padding 0.35s var(--ease);
  opacity: 0;
  padding: 0;
}

.faq-item.is-open .faq-answer-wrapper > .faq-answer {
  opacity: 1;
  padding: 0 0.875rem 0.75rem 2.25rem;
}

.faq-question:hover {
  color: var(--green-700);
}

.faq-question:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
}

.faq-answer {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ===== Kontakt ===== */

/* CTA-Block: Kontakt aufnehmen – verbesserte UI/UX */
.cta-block {
  margin-bottom: 2.5rem;
  background: var(--white);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: 0 2px 16px rgba(26, 51, 41, 0.08);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-700));
  opacity: 0.9;
}

.cta-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.cta-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-600);
}

.cta-headline {
  margin: 0 0 0.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.cta-text {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.cta-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.btn-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 1.25rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  text-align: left;
}

.btn-cta:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
}

.btn-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  margin-bottom: 0.15rem;
}

.btn-cta-icon svg {
  display: block;
}

.btn-cta-label {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
}

.btn-cta-detail {
  font-size: 0.8125rem;
  opacity: 0.9;
  line-height: 1.35;
  word-break: break-all;
}

.btn-cta-primary {
  background: var(--green-700);
  color: var(--white);
  border: 1px solid var(--green-700);
}

.btn-cta-primary .btn-cta-detail {
  opacity: 0.88;
}

.btn-cta-primary[href^="mailto:"]:hover {
  color: var(--white);
}

.btn-cta-secondary {
  background: var(--gray-100);
  color: var(--green-700);
  border: 1px solid var(--gray-200);
}

@media (max-width: 520px) {
  .cta-buttons {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .cta-block {
    padding: 1.75rem 1.25rem;
  }
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.kontakt-grid .standort-karte {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

@media (max-width: 900px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
  }

  .kontakt-grid .standort-karte {
    grid-column: auto;
    grid-row: auto;
  }
}

.kontakt-details-block {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.kontakt-details-title {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--green-900);
}

.opening-hours-promo {
  background: linear-gradient(135deg, var(--green-100) 0%, var(--green-200) 100%);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(45, 90, 74, 0.08);
  transition: box-shadow 0.3s var(--ease);
  min-width: 0;
}

.opening-hours-promo:hover {
  box-shadow: 0 4px 20px rgba(45, 90, 74, 0.12);
}

.opening-hours-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.opening-hours-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-900);
}

.opening-hours-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
}

.opening-hours-badge--open {
  background: var(--green-700);
  color: var(--white);
}

.opening-hours-badge--closed {
  background: var(--white);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}

.opening-hours-note {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.opening-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.opening-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  font-size: 1.0625rem;
  padding: 0.25rem 0.5rem;
  margin: 0 -0.5rem;
  border-radius: var(--radius);
  transition: background 0.2s var(--ease);
}

.opening-hours-list li.is-today {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 1px rgba(45, 90, 74, 0.15);
}

.opening-hours-list .day {
  font-weight: 600;
  color: var(--green-900);
  min-width: 2ch;
}

.opening-hours-list .time {
  color: var(--gray-700);
  font-variant-numeric: tabular-nums;
}

.kontakt-details {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.kontakt-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.kontakt-detail-item:last-child {
  margin-bottom: 0;
}

.kontakt-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--green-600);
}

.kontakt-icon svg {
  width: 1em;
  height: 1em;
}

.kontakt-details a {
  color: var(--green-700);
}


.section-kontakt .kontakt-grid + .kontakt-block,
.kontakt-block h3 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--green-900);
}

.kontakt-block p {
  margin: 0 0 0.5rem;
}

.kontakt-block .small {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

.kontakt-block a {
  word-break: break-all;
}

/* Standort-Karte (gleicher Stil wie Öffnungszeiten-Box) */
.standort-karte {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s var(--ease);
  min-width: 0;
}

.standort-karte:hover {
  box-shadow: var(--shadow-md);
}

.standort-karte-title {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-900);
}

.standort-karte-adresse {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.standort-karte-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  flex: 1;
  min-height: 280px;
}

.standort-karte-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.kontakt-grid .standort-karte .standort-karte-map {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.kontakt-grid .standort-karte .standort-karte-map iframe {
  flex: 1;
  min-height: 280px;
}

/* ===== Rechtliche Sektionen ===== */
.section-legal {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section-legal h1,
.section-legal h2 {
  margin-bottom: 1.25rem;
}

.section-legal h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-900);
}

.section-legal p {
  font-size: 0.9375rem;
}

.section-legal .container.narrow {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.credits-block {
  margin-top: 2.5rem;
  padding: 1rem;
  border-top: 2px solid var(--gray-200);
  background: var(--green-100);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.credits-block:hover {
  background: var(--green-200);
  box-shadow: var(--shadow);
}

.credits-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
}

.credits-logo {
  display: block;
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.credits-logo:hover {
  opacity: 1;
}

.credits-url {
  font-size: 0.875rem;
  color: var(--green-700);
}

.credits-block:hover .credits-url {
  text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
  background: var(--green-900);
  color: var(--gray-400);
  padding: 0.75rem 0;
  text-align: center;
  font-size: 0.8125rem;
}

.footer p {
  margin: 0 0 0.25rem;
}

.footer p:last-child {
  margin-bottom: 0;
}

.footer a {
  color: var(--green-200);
  transition: color 0.2s var(--ease);
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ===== Utility ===== */
.small {
  font-size: 0.875rem;
}

/* ===== Scroll-Animation (dezent, nur wenn keine Reduced-Motion) ===== */
@media (prefers-reduced-motion: no-preference) {
  .section {
    opacity: 0.96;
    transform: translateY(14px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  }

  .section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Print: kompakter Steckbrief mit allen Infos ===== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  .skip-link,
  .nav-toggle,
  .header .nav,
  .hero-bg,
  .hero-image-wrap,
  .btn-hero,
  .vorstellung-media,
  .premises-grid,
  .lebenslauf-block,
  .faq-block,
  .cta-block,
  .standort-karte-map,
  .opening-hours-badge {
    display: none !important;
  }

  body {
    font-size: 11pt;
    line-height: 1.35;
    margin: 0;
    padding: 0.5in;
  }

  .header {
    position: static;
    border-bottom: 1pt solid #333;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .header .container {
    min-height: 0;
    padding: 0;
  }

  .logo-text { display: inline-block; }
  .logo-title { font-size: 0.9em; opacity: 0.9; }

  .hero {
    padding: 0 0 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1pt solid #ccc;
  }

  .hero-container { flex-direction: column; align-items: flex-start; }
  .hero-logo { margin-bottom: 0.25rem; }
  .hero-location { font-size: 0.95em; margin: 0.1rem 0; }
  .hero h1 { font-size: 1.35rem; margin: 0.25rem 0; }
  .hero-lead { display: none; }
  .hero-usps {
    list-style: none;
    padding: 0;
    margin: 0.35rem 0 0;
    font-size: 0.95em;
  }
  .hero-usps li { margin: 0.15rem 0; }
  .hero-usps li::before { content: "• "; }

  .section {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    opacity: 1;
    transform: none;
  }

  .section h2 {
    font-size: 1.1rem;
    margin: 0 0 0.4rem;
    padding-bottom: 0.2rem;
    border-bottom: 1pt solid #ccc;
  }

  .section-vorstellung .vorstellung-text .lead { margin-bottom: 0.3rem; }
  .section-vorstellung .vorstellung-text p { margin: 0.25rem 0; font-size: 0.95em; }

  .section-leistungen .section-intro { display: none; }
  .leistungen-grid {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .leistungen-grid .kachel {
    break-inside: avoid;
    margin: 0.35rem 0;
    padding: 0.25rem 0;
    border: none;
    box-shadow: none;
    border-bottom: 1pt solid #eee;
  }
  .leistungen-grid .kachel-icon { display: none; }
  .leistungen-grid .kachel h3 { font-size: 1em; margin: 0 0 0.15rem; }
  .leistungen-grid .kachel p { font-size: 0.9em; margin: 0; }

  .section-kontakt h2 { margin-top: 0; }
  .section-kontakt .section-usp { display: none; }
  .kontakt-grid {
    display: block;
  }
  .opening-hours-promo,
  .kontakt-details-block {
    margin-bottom: 0.75rem;
  }
  .opening-hours-title,
  .kontakt-details-title {
    font-size: 1rem;
    margin: 0 0 0.35rem;
  }
  .opening-hours-note { margin: 0.15rem 0; font-size: 0.9em; }
  .opening-hours-list { margin: 0; padding: 0; list-style: none; }
  .opening-hours-list li { display: flex; justify-content: space-between; max-width: 12em; margin: 0.1rem 0; }
  .kontakt-details { display: block; }
  .kontakt-detail-item { display: block; margin: 0.2rem 0; }
  .standort-karte-title { font-size: 1rem; margin: 0 0 0.2rem; }
  .standort-karte-adresse { margin: 0 0 0.5rem; font-size: 0.95em; }

  .footer {
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1pt solid #ccc;
    font-size: 0.85em;
  }
  .footer p { margin: 0.25rem 0; }

  a[href^="mailto:"]::after,
  a[href^="tel:"]::after { content: " (" attr(href) ")"; font-size: 0.9em; }
}
