/* ══════════════════════════════════════════
   Anela Pflegedienst – Main CSS
   ══════════════════════════════════════════ */

:root {
  --primary:        hsl(197, 55%, 55%);
  --primary-dark:   hsl(197, 55%, 42%);
  --primary-light:  hsl(197, 55%, 93%);
  --secondary:      hsl(152, 35%, 55%);
  --secondary-light:hsl(152, 35%, 93%);
  --bg:             hsl(40, 33%, 98%);
  --fg:             hsl(210, 20%, 15%);
  --card:           #ffffff;
  --muted:          hsl(40, 25%, 94%);
  --muted-fg:       hsl(210, 10%, 45%);
  --border:         hsl(210, 15%, 88%);
  --radius:         0.625rem;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.06);
  --shadow-md:      0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:      0 10px 30px rgba(0,0,0,.10);
  --font-sans:      'DM Sans', sans-serif;
  --font-display:   'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--muted); }
::-webkit-scrollbar-thumb { background: hsl(197 55% 55% / .35); border-radius: 4px; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .25s;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-md); }
.btn-outline {
  background: rgba(255,255,255,.8);
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: #fff; box-shadow: var(--shadow-sm); }
.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover { background: rgba(255,255,255,.92); }
.btn-secondary {
  background: var(--secondary);
  color: #fff;
}
.btn-secondary:hover { background: hsl(152,35%,45%); }

/* ── Animate on scroll ── */
.aos {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.aos.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all .3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

/* Topbar */
.header-topbar {
  background: var(--primary-light);
  display: block;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .375rem;
  font-size: .8125rem;
  color: var(--muted-fg);
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: var(--muted-fg);
  text-decoration: none;
  transition: color .2s;
}
.topbar-link:hover { color: var(--primary); }
.topbar-sep { margin-inline: .5rem; opacity: .4; }
.topbar-emergency {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}
.topbar-emergency:hover { text-decoration: underline; }
.topbar-hours-item { display: none; }
@media (min-width: 1024px) { .topbar-hours-item { display: inline-flex; } }

/* Mobilde topbar-left gizle, sadece tel + notdienst + sosyal göster */
@media (max-width: 767px) {
  .topbar-left { display: none; }
  .topbar-inner {
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
    padding-block: .5rem;
    font-size: .75rem;
  }
  .topbar-right {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .topbar-mobile-phone { display: inline-flex !important; }
}

/* Main nav */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .75rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
}
.nav-brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--fg); line-height: 1.2; }
.brand-sub  { font-size: .7rem; color: var(--muted-fg); margin-top: .1rem; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: .25rem;
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-link {
  padding: .5rem .75rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: hsl(210,20%,40%);
  text-decoration: none;
  transition: all .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-link--karriere {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  border: 1px solid var(--primary);
  border-radius: 99px;
  padding: .25rem .75rem !important;
  color: var(--primary) !important;
  font-weight: 600;
}
.nav-link--karriere:hover, .nav-link--karriere.active {
  background: var(--primary) !important;
  color: #fff !important;
}

.nav-actions { display: flex; align-items: center; gap: .5rem; }
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius);
  transition: background .2s;
}
.hamburger:hover { background: var(--muted); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--fg); border-radius: 2px; transition: all .3s; }
@media (min-width: 1024px) { .hamburger { display: none; } }

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
}
.nav-mobile.open { display: block; }
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding-block: 1rem;
}
.mobile-nav-inner .nav-link { display: block; padding: .75rem 1rem; }

/* Page offset */
.page-offset { padding-top: 100px; }
@media (min-width: 768px) { .page-offset { padding-top: 130px; } }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,.95) 0%, rgba(255,255,255,.80) 50%, rgba(255,255,255,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 4rem 5rem;
  max-width: 520px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background: hsl(197 55% 55% / .12);
  color: var(--primary);
  padding: .375rem .875rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  font-size: .875rem;
  color: var(--muted-fg);
}
.hero-phone a { color: var(--primary); font-weight: 600; text-decoration: none; }
.hero-phone a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   WARUM ANELA
   ══════════════════════════════════════════ */
.warum-section {
  background: #fff;
  padding-block: 4rem 4.5rem;
}
.warum-header {
  text-align: center;
  margin-bottom: 3rem;
}
.warum-label-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.warum-label-line .line {
  flex: 1;
  max-width: 60px;
  height: 2px;
  background: var(--primary);
  display: block;
}
.warum-label-text {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--primary);
  text-transform: uppercase;
}
.warum-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.2;
}
.warum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 900px) { .warum-grid { grid-template-columns: repeat(4, 1fr); } }
.warum-card {
  border: 1px solid hsl(197 55% 78% / .55);
  border-radius: var(--radius-lg, 1rem);
  padding: 2rem 1.5rem;
  background: #fff;
  transition: box-shadow .25s, transform .25s;
}
.warum-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  transform: translateY(-3px);
}
.warum-icon {
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.warum-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: .625rem;
}
.warum-card-desc {
  font-size: .875rem;
  color: var(--muted-fg);
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */
.section { padding-block: 4rem; }
.section-muted { background: hsl(40,25%,96%); }
.section-primary { background: var(--primary); }
.section-memorial { background: linear-gradient(to bottom, #f9f6f2, #f3ede6); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: .75rem;
}
.section-subtitle { color: var(--muted-fg); max-width: 600px; margin-inline: auto; }

/* ══════════════════════════════════════════
   SERVICES CARDS
   ══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--card);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all .3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.service-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-img-wrap { overflow: hidden; }
.service-card-body { padding: 1.25rem; }
.service-card-head { display: flex; align-items: center; gap: .625rem; margin-bottom: .5rem; }
.service-icon-wrap {
  width: 36px; height: 36px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.service-card-title { font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--fg); }
.service-card-desc { font-size: .8125rem; color: var(--muted-fg); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.service-card-more { margin-top: .75rem; color: var(--primary); font-size: .8125rem; font-weight: 500; display: flex; align-items: center; gap: .25rem; transition: gap .2s; }
.service-card:hover .service-card-more { gap: .5rem; }

/* Services list (Leistungen page) */
.service-item { display: grid; gap: 2rem; align-items: center; margin-bottom: 3rem; }
@media (min-width: 768px) { .service-item { grid-template-columns: 1fr 1fr; } }
.service-item.reverse .service-item-img { order: 2; }
.service-item.reverse .service-item-body { order: 1; }
.service-item-img { border-radius: calc(var(--radius)*1.5); overflow: hidden; aspect-ratio: 4/3; }
.service-item-img img { width: 100%; height: 100%; object-fit: cover; }
.service-item-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: calc(var(--radius)*1.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: .75rem;
}
.service-item-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: .75rem;
}
.service-item-desc { color: var(--muted-fg); line-height: 1.7; margin-bottom: 1rem; }
.service-item-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  color: var(--secondary);
}

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img { border-radius: calc(var(--radius)*1.5); overflow: hidden; aspect-ratio: 16/10; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-title { font-family: var(--font-display); font-size: clamp(1.25rem,2.5vw,1.75rem); font-weight: 700; margin-bottom: 1rem; }
.about-text { color: var(--muted-fg); line-height: 1.75; margin-bottom: .875rem; }
.about-facts { list-style: none; margin-top: .5rem; }
.about-facts li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: hsl(210,20%,35%);
  margin-bottom: .5rem;
}
.about-facts svg { color: var(--secondary); flex-shrink: 0; }

/* ══════════════════════════════════════════
   MEMORIAL
   ══════════════════════════════════════════ */
.memorial-grid {
  display: grid;
  grid-template-areas:
    "header"
    "photo"
    "body";
  gap: 2rem;
}
@media (min-width: 1024px) {
  .memorial-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "header photo"
      "body   photo";
    gap: 1.5rem 3.5rem;
    align-items: start;
  }
}
.memorial-header { grid-area: header; }
.memorial-photo-wrap { grid-area: photo; }
.memorial-body { grid-area: body; }
.memorial-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: hsl(197,55%,45%);
  margin-bottom: .75rem;
}
.memorial-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem,2.8vw,2.25rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
.memorial-divider-line {
  width: 56px;
  height: 3px;
  background: hsl(197,55%,55%);
  border-radius: 2px;
  margin-bottom: 0;
}
.memorial-text p {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  color: hsl(20,20%,30%);
  line-height: 2;
  margin-bottom: 1.1rem;
  font-size: 1.075rem;
  letter-spacing: .01em;
}
.memorial-signature {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-top: 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  color: hsl(197,55%,40%);
}
.memorial-photo-wrap {
  position: relative;
  padding-right: 16px;
  padding-bottom: 16px;
}
.memorial-photo {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius)*2.5);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.memorial-photo img { width: 100%; height: auto; display: block; }
.memorial-photo-deco {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 2px solid hsl(197,55%,70%);
  border-radius: calc(var(--radius)*2.5);
  z-index: 0;
}

/* ══════════════════════════════════════════
   KOSTEN
   ══════════════════════════════════════════ */
.kosten-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .kosten-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .kosten-grid { grid-template-columns: repeat(3, 1fr); } }

.kosten-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.kosten-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: hsl(197 55% 95%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.kosten-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
}
.kosten-desc {
  color: var(--muted-fg);
  line-height: 1.7;
  font-size: .95rem;
}

/* ══════════════════════════════════════════
   FINANCING
   ══════════════════════════════════════════ */
.financing-card {
  background: var(--card);
  border-radius: calc(var(--radius)*2);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.financing-card .section-title { margin-bottom: .75rem; }
.financing-card p { color: var(--muted-fg); max-width: 600px; margin-inline: auto; margin-bottom: 1.5rem; line-height: 1.7; }

/* ══════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════ */
.cta-section { text-align: center; }
.cta-title { font-family: var(--font-display); font-size: clamp(1.25rem,2.5vw,1.75rem); font-weight: 700; color: #fff; margin-bottom: .75rem; }
.cta-sub { color: rgba(255,255,255,.8); max-width: 500px; margin-inline: auto; margin-bottom: 1.5rem; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .875rem;
  text-decoration: none;
  transition: background .2s;
}
.btn-phone:hover { background: rgba(255,255,255,.2); }

/* ══════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════ */
.team-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.team-hero-bg { position: absolute; inset: 0; z-index: 0; }
.team-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.team-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.92), rgba(255,255,255,.72), rgba(255,255,255,1));
}
.team-hero-content { position: relative; z-index: 1; padding-block: 4rem 5rem; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .team-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3,1fr); } }
.team-card {
  background: var(--card);
  border-radius: calc(var(--radius)*1.5);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow .3s;
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.team-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.team-role { color: var(--primary); font-size: .8125rem; font-weight: 500; }
.team-desc { color: var(--muted-fg); font-size: .8125rem; line-height: 1.6; margin-top: .75rem; }

/* ══════════════════════════════════════════
   PAGE HEADER
   ══════════════════════════════════════════ */
.page-header {
  background: var(--primary-light);
  padding-block: 3rem 3.5rem;
  text-align: center;
}
.page-header-icon { color: var(--primary); margin-bottom: 1rem; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem,3vw,2.25rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: .625rem;
}
.page-header p { color: var(--muted-fg); max-width: 580px; margin-inline: auto; }

/* ══════════════════════════════════════════
   FORMS
   ══════════════════════════════════════════ */
.form-card {
  background: var(--card);
  border-radius: calc(var(--radius)*2);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-grid-2 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: .375rem;
}
.form-label svg { color: var(--muted-fg); }
.form-control {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .625rem 1rem;
  font-size: .875rem;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px hsl(197 55% 55% / .18); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-btn {
  width: 100%;
  padding: .875rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: background .25s;
}
.form-btn:hover { background: var(--primary-dark); }
.form-btn:disabled { opacity: .6; cursor: not-allowed; }
.form-note { font-size: .75rem; color: var(--muted-fg); text-align: center; }
.form-consent { margin-top: .5rem; }
.form-label--consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
  font-size: .8125rem;
  line-height: 1.5;
  color: var(--muted-fg);
}
.form-label--consent a { color: var(--primary); }
.form-label--consent a:hover { text-decoration: underline; }
.form-consent-checkbox {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: .2rem;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.success-icon {
  width: 56px; height: 56px;
  background: var(--secondary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--secondary);
}
.form-error-msg {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .875rem;
  display: none;
}
.form-error-msg.show { display: block; }

/* ── Contact layout ── */
.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info h2 { font-family: var(--font-display); font-weight: 700; margin-bottom: 1.25rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}
.contact-info-icon {
  width: 36px; height: 36px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-info-label { font-size: .75rem; color: var(--muted-fg); margin-bottom: .125rem; }
.contact-info-value { font-size: .875rem; font-weight: 500; color: var(--fg); text-decoration: none; transition: color .2s; }
a.contact-info-value:hover { color: var(--primary); }
.emergency-badge {
  margin-top: 1.5rem;
  padding: .875rem 1rem;
  background: var(--secondary-light);
  border: 1px solid hsl(152 35% 55% / .25);
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: hsl(152,35%,35%);
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ══════════════════════════════════════════
   STATIC PAGES (Datenschutz / Impressum)
   ══════════════════════════════════════════ */
.prose {
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.8;
  color: var(--fg);
}
.prose h1 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; margin-bottom: 1.5rem; }
.prose h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-top: 2rem; margin-bottom: .75rem; }
.prose p  { color: var(--muted-fg); margin-bottom: 1rem; }
.prose a  { color: var(--primary); }
.prose ul { padding-left: 1.5rem; color: var(--muted-fg); margin-bottom: 1rem; }
.prose ul li { margin-bottom: .375rem; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer { background: hsl(210,20%,13%); color: rgba(255,255,255,.75); }
.footer-grid {
  display: grid;
  gap: 2rem;
  padding-block: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3,1fr); } }
.footer-col {}
.footer-brand { display: flex; align-items: center; gap: .625rem; margin-bottom: 1rem; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; color: #fff; }
.footer-desc { font-size: .8125rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-heading { color: #fff; font-weight: 600; margin-bottom: 1rem; font-size: .9375rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .8125rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact { display: flex; flex-direction: column; gap: .875rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.footer-contact-item:hover { color: var(--primary); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
  text-decoration: none;
}
.footer-social-link:hover { background: var(--primary); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-bottom-social-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-size: .75rem;
  transition: color .2s;
}
.footer-bottom-social-link:hover { color: #fff; }
.footer-credit { opacity: .5; font-size: .75rem; }
.footer-credit a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-credit a:hover { color: #fff; opacity: 1; }

/* ══════════════════════════════════════════
   BEWERBUNGSFORMULAR
   ══════════════════════════════════════════ */
.bew-section-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.75rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--primary-light);
}
.bew-section-title:first-child { margin-top: 0; }

.form-optional {
  font-weight: 400;
  font-size: .8125rem;
  color: var(--muted-fg);
}

/* File Drop Area */
.file-drop-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: var(--muted);
  position: relative;
}
.file-drop-area:hover,
.file-drop-area.drag-over {
  border-color: var(--primary);
  background: var(--primary-light);
}
.file-drop-area.has-file {
  border-color: var(--secondary);
  background: var(--secondary-light);
}
.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.file-drop-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .375rem;
  pointer-events: none;
  color: var(--muted-fg);
}
.file-drop-label svg { color: var(--primary); opacity: .7; }
.file-drop-text { font-size: .875rem; }
.file-drop-name {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--secondary);
  word-break: break-all;
}

/* ══════════════════════════════════════════
   TOPBAR SOCIAL
   ══════════════════════════════════════════ */
.topbar-right {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: .375rem;
}
.topbar-social-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  transition: opacity .2s;
}
.topbar-social-link:hover { opacity: .7; }

/* ══════════════════════════════════════════
   TESTIMONIALS SLIDER
   ══════════════════════════════════════════ */
.testimonials-section {
  background: hsl(40,25%,97%);
  padding-block: 4rem 4.5rem;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}
.testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: .5rem;
}
.testimonials-subtitle {
  font-size: 1rem;
  color: var(--muted-fg);
  margin: 0;
}

/* Slider wrapper */
.testi-slider-wrap {
  position: relative;
  overflow: hidden;
}
.testi-track {
  display: flex;
  align-items: stretch;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  align-items: stretch;
}

/* Card — flex-shrink:0 so they don't collapse */
.testi-card {
  flex: 0 0 100%;
  background: #fff;
  border-radius: var(--radius-lg, 1rem);
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .testi-card { flex: 0 0 50%; padding: 2.5rem; }
}
@media (min-width: 1100px) {
  .testi-card { flex: 0 0 33.333%; }
}

.testi-quote { color: hsl(197 55% 75%); }
.testi-text {
  font-size: .9375rem;
  color: var(--muted-fg);
  line-height: 1.75;
  flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: none;
}
.testi-card.expanded .testi-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.testi-read-more {
  background: none;
  border: none;
  padding: 0;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  align-self: flex-start;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: -.25rem;
}
.testi-read-more:hover { color: var(--primary-dark); }
.testi-card:not(.overflowing) .testi-read-more { display: none; }
.testi-stars {
  color: #f59e0b;
  font-size: 1.125rem;
  letter-spacing: .1em;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.0625rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9375rem; color: var(--fg); }
.testi-author span   { font-size: .8125rem; color: var(--muted-fg); }

/* Arrows */
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s, box-shadow .2s;
}
.testi-arrow:hover { background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.18); }
.testi-prev { left: -8px; }
.testi-next { right: -8px; }
@media (min-width: 768px) {
  .testi-prev { left: -20px; }
  .testi-next { right: -20px; }
}

/* Dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.75rem;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.testi-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* Testi CTA */
.testi-cta { text-align: center; margin-top: 2.5rem; }

/* ══════════════════════════════════════════
   REVIEW MODAL
   ══════════════════════════════════════════ */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.review-modal[hidden] { display: none; }
.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(3px);
}
.review-modal-box {
  position: relative;
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.review-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--muted);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--muted-fg);
  transition: background .2s;
}
.review-modal-close:hover { background: var(--border); }
.review-modal-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: .375rem;
}
.review-modal-sub { font-size: .875rem; color: var(--muted-fg); margin-bottom: 1.5rem; }

/* Star picker */
.review-stars-field { margin-bottom: 1.25rem; }
.review-stars-field > label { display: block; font-size: .875rem; font-weight: 600; color: var(--fg); margin-bottom: .5rem; }
.star-picker { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: .25rem; }
.star-btn {
  background: none; border: none; font-size: 2rem;
  color: #d1d5db; cursor: pointer; padding: 0 .1rem;
  transition: color .15s, transform .15s;
  line-height: 1;
}
.star-btn:hover,
.star-btn.active { color: #f59e0b; transform: scale(1.15); }
.star-picker:hover .star-btn { color: #f59e0b; }
.star-picker .star-btn:hover ~ .star-btn { color: #d1d5db; }

/* Review fields */
.review-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 480px) { .review-fields { grid-template-columns: 1fr; } }

.review-form-error   { color: #dc2626; font-size: .875rem; margin-bottom: .75rem; min-height: 1.25rem; }
.review-form-success { color: #16a34a; font-size: .9375rem; font-weight: 600; text-align: center; padding: 1rem; background: #f0fdf4; border-radius: .75rem; margin-bottom: .75rem; }
.review-submit { width: 100%; justify-content: center; }
.req { color: var(--primary); }

/* ══════════════════════════════════════════
   WHATSAPP BUTTON
   ══════════════════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  text-decoration: none;
  animation: wa-float 2s ease-in-out infinite;
  transition: transform .2s;
}
.whatsapp-btn:hover { transform: scale(1.12); }
.whatsapp-btn:active { transform: scale(.95); }
.wa-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .35;
  animation: wa-ping 1.8s cubic-bezier(0,0,.2,1) infinite;
}
.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: #25D366;
  opacity: .13;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes wa-ping {
  75%, 100% { transform: scale(1.8); opacity: 0; }
}
@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
@keyframes pulse {
  0%, 100% { opacity: .13; }
  50%       { opacity: .22; }
}

/* ══════════════════════════════════════════
   SPINNER
   ══════════════════════════════════════════ */
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.spinner.show { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Section Label ── */
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .5rem;
}
.section-header .section-label { text-align: center; }

/* ══════════════════════════════════════════
   Öffnungszeiten
   ══════════════════════════════════════════ */
.oeff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .oeff-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.oeff-note {
  color: var(--muted-fg);
  font-size: .9375rem;
  margin-top: .75rem;
}

.oeff-table-wrap { position: relative; }

.oeff-status-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.oeff-status-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.oeff-status-badge.open  { background: hsl(152,40%,92%); color: hsl(152,45%,30%); }
.oeff-status-badge.open::before  { background: hsl(152,50%,40%); }
.oeff-status-badge.closed { background: hsl(0,40%,93%); color: hsl(0,45%,38%); }
.oeff-status-badge.closed::before { background: hsl(0,55%,55%); }

.oeff-table { width: 100%; border-collapse: collapse; }
.oeff-table tr { border-bottom: 1px solid var(--border); }
.oeff-table tr:last-child { border-bottom: none; }
.oeff-table tr.oeff-today .oeff-day { color: var(--primary); font-weight: 700; }
.oeff-table tr.oeff-today .oeff-hours { color: var(--primary); font-weight: 700; }
.oeff-day   { padding: .7rem .5rem .7rem 0; font-size: .9375rem; color: var(--fg); width: 50%; }
.oeff-hours { padding: .7rem 0; font-size: .9375rem; color: var(--muted-fg); text-align: right; }
.oeff-closed .oeff-day,
.oeff-closed .oeff-hours { color: hsl(210,10%,65%); }

/* ══════════════════════════════════════════
   Google Maps – DSGVO-konform (2-Klick)
   ══════════════════════════════════════════ */
.map-consent-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg, 1rem);
  overflow: hidden;
  background: hsl(210,15%,93%);
}
.map-consent-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(circle at 30% 40%, hsl(210,20%,88%) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, hsl(197,30%,87%) 0%, transparent 50%),
    hsl(210,15%,93%);
}
.map-pin { color: var(--primary); opacity: .7; }
.map-place-name { font-weight: 700; font-size: 1.0625rem; color: var(--fg); margin: 0; }
.map-place-addr { font-size: .9rem; color: var(--muted-fg); margin: 0; }
.map-consent-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: .65rem 1.5rem;
  border-radius: var(--radius, .75rem);
  font-size: .9375rem; font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  margin-top: .25rem;
}
.map-consent-btn:hover { background: var(--primary-dark); }
.map-consent-note {
  font-size: .75rem;
  color: var(--muted-fg);
  max-width: 380px;
  margin: 0;
  line-height: 1.5;
}
.map-consent-note a { color: var(--primary); text-decoration: underline; }

/* Küçük (front-page) varyant */
.map-consent-wrap--sm { height: 280px; border-radius: var(--radius, .75rem); }
.map-consent-btn--sm  { padding: .5rem 1.1rem; font-size: .875rem; }

/* Öffnungszeiten map wrapper */
.oeff-map-wrap {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.oeff-gmaps-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8125rem; color: var(--primary);
  text-decoration: underline; text-underline-offset: 3px;
}
.oeff-gmaps-link:hover { color: var(--primary-dark); }

/* Kontakt map section */
.map-section .map-consent-wrap { height: 460px; }
@media (max-width: 768px) {
  .map-consent-wrap     { height: 300px; }
  .map-consent-wrap--sm { height: 220px; }
  .map-section .map-consent-wrap { height: 300px; }
}

/* ══════════════════════════════════════════
   Hero Slider
   ══════════════════════════════════════════ */
.hero-slider { position: relative; overflow: hidden; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  min-height: 520px;
}
.hero-slide.prev { position: absolute; opacity: 0; }

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-arrow:hover {
  background: rgba(255,255,255,0.32);
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--primary);
  z-index: 20;
  width: 0%;
  transition: width linear;
}

@media (max-width: 640px) {
  .slider-arrow { width: 38px; height: 38px; }
  .slider-prev  { left: 0.75rem; }
  .slider-next  { right: 0.75rem; }
}
