/* Manrope Variable — selbst gehostet (DSGVO-konform, kein Google-Request) */
@font-face{font-family:'Manrope';font-style:normal;font-weight:200 800;font-display:swap;src:url('../fonts/manrope-latin-wght-normal.woff2') format('woff2-variations');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Manrope';font-style:normal;font-weight:200 800;font-display:swap;src:url('../fonts/manrope-latin-ext-wght-normal.woff2') format('woff2-variations');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;}
/* ============================================================
   RESET + BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0F2540;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 100%; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --navy: #1B3A5C;
  --navy-deep: #0F2540;
  --navy-soft: #234870;
  --sage: #9CBABA;
  --sage-light: #BCD2D2;
  --sage-pale: #E0EAEA;
  --cream: #EEF1EC;
  --cream-warm: #F7F8F4;
  --white: #FFFFFF;
  --ink: #0F2540;
  --ink-60: rgba(15,37,64,0.66);
  --ink-70: rgba(15,37,64,0.7);
  --ink-75: rgba(15,37,64,0.75);
  --border: rgba(15,37,64,0.10);
  --whatsapp: #25D366;

  --shadow-soft: 0 1px 2px rgba(15,37,64,0.04), 0 8px 24px -8px rgba(15,37,64,0.08);
  --shadow-lift: 0 4px 12px -2px rgba(15,37,64,0.06), 0 24px 60px -16px rgba(15,37,64,0.18);
  --shadow-card: 0 1px 0 rgba(15,37,64,0.04), 0 16px 40px -16px rgba(15,37,64,0.14);
}

/* ============================================================
   LAYOUT — container, sections
============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) {
  .container { padding: 0 32px; }
}
.section { padding: 80px 0; }
@media (min-width: 768px) {
  .section { padding: 120px 0; }
}
.section-cream { background: var(--cream-warm); }
.section-white { background: var(--white); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.05;
  color: var(--navy-deep);
}
h1 { font-size: clamp(2rem, 6vw, 3.5rem); line-height: 1.04; font-weight: 800; }
h2 { font-size: clamp(1.875rem, 4.5vw, 3rem); line-height: 1.06; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); line-height: 1.2; letter-spacing: -0.015em; }
p  { color: var(--ink-75); line-height: 1.65; }

.h1-em { color: var(--navy-soft); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--navy); opacity: .5; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform .25s, background .25s, box-shadow .25s, border-color .25s;
}
.btn-primary { background: var(--navy-deep); color: #fff; }
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(15,37,64,0.4); }
.btn-ghost {
  border: 1px solid rgba(15,37,64,0.18);
  color: var(--navy-deep);
  background: rgba(255,255,255,0.6);
}
.btn-ghost:hover { border-color: var(--navy-deep); background: #fff; transform: translateY(-2px); }
.btn-sm { padding: 12px 20px; font-size: 14px; }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-sm svg { width: 14px; height: 14px; }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(27,58,92,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-logo svg { width: 28px; height: 36px; }
.brand-name { font-size: 22px; font-weight: 700; letter-spacing: -0.018em; line-height: 1; color: var(--navy-deep); }
.brand-sub { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(27,58,92,0.6); margin-top: 4px; }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; align-items: center; gap: 32px; }
}
.nav-link {
  font-size: 14px; font-weight: 500;
  color: rgba(27,58,92,0.8);
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .3s, color .2s;
  padding-bottom: 2px;
}
.nav-link:hover { color: var(--navy-deep); background-size: 100% 1px; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: none; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--navy-deep);
}
.header-phone svg { width: 16px; height: 16px; }
@media (min-width: 640px) { .header-phone { display: inline-flex; } }
@media (min-width: 1280px) { .header-phone-num { display: inline; } }
.header-phone-num { display: none; }
@media (min-width: 1280px) { .header-phone-label { display: none; } }

.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(27,58,92,0.15);
  color: var(--navy);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 18px; height: 18px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-nav.open { display: block; }
.mobile-nav-inner { display: flex; flex-direction: column; gap: 16px; padding: 24px; font-size: 16px; font-weight: 500; color: rgba(27,58,92,0.85); }
.mobile-nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px; color: var(--navy-deep); font-weight: 600;
}

/* ============================================================
   HERO
============================================================ */
.hero { padding-top: 110px; padding-bottom: 80px; background: var(--cream-warm); position: relative; overflow: hidden; }
@media (min-width: 768px) { .hero { padding-top: 140px; padding-bottom: 120px; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}

.hero-copy { min-width: 0; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 12px; font-weight: 600; color: var(--navy-deep);
  margin-bottom: 24px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #10B981; }

.hero h1 {
  /* Sized so 'Gebäudereinigung,' fits comfortably without mid-word breaks */
  font-size: clamp(1.875rem, 3.8vw, 3rem);
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .hero h1 { font-size: 2.5rem; }   /* 40px — fits in narrower 2-col split */
}
@media (min-width: 1200px) {
  .hero h1 { font-size: 2.875rem; } /* 46px — comfortable on big screens */
}
@media (min-width: 1400px) {
  .hero h1 { font-size: 3rem; }     /* 48px — never larger */
}

.hero-sub {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-70);
  max-width: 480px;
}
@media (min-width: 768px) { .hero-sub { font-size: 18px; } }

.hero-ctas {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 36px;
  align-items: stretch;
}
@media (min-width: 480px) { .hero-ctas { flex-direction: row; align-items: center; } }

.hero-trust {
  margin-top: 24px;
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink-60);
}
.hero-trust svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero-usp {
  list-style: none;
  margin-top: 24px;
  margin-bottom: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 24px;
}
@media (min-width: 480px) { .hero-usp { grid-template-columns: 1fr 1fr; } }
.hero-usp li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.3;
}
.hero-usp svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  padding: 3px;
  background: rgba(156, 186, 186, 0.25);
  color: var(--navy-deep);
  border-radius: 50%;
  box-sizing: content-box;
}
@media (min-width: 768px) { .hero-usp li { font-size: 15px; } }

.hero-image {
  border-radius: 32px;
  width: 100%; height: auto;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 1448 / 1086;
  object-fit: cover;
}

/* ============================================================
   SERVICES
============================================================ */
.section-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .section-header { grid-template-columns: 7fr 5fr; gap: 48px; align-items: end; margin-bottom: 64px; }
}
.section-header-center { text-align: center; max-width: 720px; margin: 0 auto 64px; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .3s;
}
.svc-card:hover { transform: translateY(-3px); border-color: rgba(15,37,64,0.25); box-shadow: var(--shadow-soft); }
.svc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cream-warm);
  color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.svc-icon svg { width: 22px; height: 22px; }
.svc-card h3 { margin-bottom: 8px; }
.svc-card p { font-size: 15px; }

.services-extra {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--ink-60);
}

/* ============================================================
   STANDORTE (locations)
============================================================ */
.location {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
.location:last-child { margin-bottom: 0; }
@media (min-width: 1024px) {
  .location {
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 120px;
  }
  .location-reverse { grid-template-columns: 7fr 5fr; }
  .location-reverse .location-visual { order: 2; }
  .location-reverse .location-content { order: 1; }
}

.location-visual {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
}
.location-visual.preetz { background: var(--navy-deep); }
.location-visual.kiel { background: var(--navy); }
.location-visual.ahrensburg { background: var(--navy-soft); }
.location-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.2;
}
.location-name {
  position: relative;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
  text-align: center;
}
.location-tag {
  position: relative;
  margin-top: 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--sage-light);
  text-align: center;
}

.location-tagline {
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(15,37,64,0.66);
  margin-bottom: 16px;
}
.location h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 20px; }
.location p { font-size: 17px; margin-bottom: 16px; }
.location-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  font-weight: 600; color: var(--navy-deep);
}
.location-link:hover { gap: 12px; }
.location-link svg { width: 14px; height: 14px; }

/* ============================================================
   PROZESS (process)
============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 600px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.process-num {
  font-size: 48px; font-weight: 700;
  color: rgba(27,58,92,0.2);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.process-step h3 { margin-bottom: 12px; }
.process-step p { font-size: 16px; }

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 5fr 7fr; gap: 80px; }
}
.about-photo-wrap { position: relative; }
.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  background: var(--navy-deep);
  overflow: hidden;
  position: relative;
}
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-nameplate {
  position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
  background: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  min-width: 220px;
  box-shadow: var(--shadow-card);
}
.about-nameplate-name { font-size: 18px; font-weight: 700; color: var(--navy-deep); }
.about-nameplate-role { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-60); margin-top: 4px; }

.about-content h2 { margin-bottom: 24px; }
.about-content p { font-size: 17px; margin-bottom: 16px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 480px) { .about-stats { grid-template-columns: repeat(3, 1fr); } }
.about-stat-num { font-size: 36px; font-weight: 700; color: var(--navy-deep); letter-spacing: -0.025em; }
.about-stat-label { font-size: 14px; color: var(--ink-60); margin-top: 4px; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: var(--cream-warm);
  border-radius: 16px;
  padding: 32px;
}
.stars { display: flex; gap: 4px; margin-bottom: 20px; color: #F59E0B; }
.stars svg { width: 14px; height: 14px; }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 16px;
  align-self: end;
}
.reviews-stars { display: flex; gap: 3px; color: #F59E0B; }
.reviews-stars svg { width: 18px; height: 18px; }
.reviews-text { display: flex; flex-direction: column; line-height: 1.3; }
.reviews-text strong { font-size: 15px; font-weight: 700; color: var(--navy-deep); }
.reviews-text span { font-size: 12px; color: var(--ink-60); }
.testimonial-quote {
  font-size: 18px;
  line-height: 1.45;
  color: var(--navy-deep);
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.testimonial-meta { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--navy-deep);
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy-deep); }
.testimonial-source { font-size: 12px; color: var(--ink-60); margin-top: 2px; }

/* CTA after testimonials */
.review-cta-wrap {
  margin-top: 48px;
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .review-cta-wrap {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    text-align: left;
  }
}
.review-cta-wrap p {
  font-size: 16px;
  color: var(--ink-75);
  margin: 0;
}

/* Review form section */
.review-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(15,37,64,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 600px) { .review-form { padding: 36px; } }

.review-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .review-form-grid { grid-template-columns: 1fr 1fr; } }

/* Star input */
.star-input {
  display: flex;
  gap: 4px;
  align-items: center;
}
.star-btn {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: #d4d4d4;
  transition: color .2s, transform .15s;
  border-radius: 6px;
}
.star-btn svg { width: 28px; height: 28px; display: block; }
.star-btn:hover { transform: scale(1.1); }
.star-btn.active { color: #F59E0B; }
.star-btn.preview { color: #FBBF24; }
.star-btn:focus-visible {
  outline: 2px solid var(--navy-deep);
  outline-offset: 2px;
}

.review-form-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-top: 8px;
}
@media (min-width: 480px) {
  .review-form-actions { flex-direction: row; align-items: center; }
}

.review-message:empty { display: none; }
.review-message {
  margin-top: 8px;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.5;
}
.review-message.success {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
}
.review-message.error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
}
.review-message-title { font-weight: 700; margin-bottom: 4px; }

/* Reviewed-by-customer label on dynamic reviews */
.testimonial[data-dynamic] .testimonial-source::before {
  content: "Neu · ";
  color: #10B981;
  font-weight: 700;
}

/* ============================================================
   FAQ
============================================================ */
.faq-wrap { max-width: 768px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.faq-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-q { font-size: 17px; font-weight: 700; color: var(--navy-deep); letter-spacing: -0.01em; }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 28px 24px;
  color: var(--ink-75);
  line-height: 1.65;
}

/* ============================================================
   CONTACT
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
    align-items: start; /* prevents card stretching to form height */
  }
}

.contact-form-intro h2 { margin-bottom: 20px; }
.contact-form-intro p { font-size: 17px; margin-bottom: 40px; max-width: 520px; }

.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: var(--cream-warm);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(15,37,64,0.06);
}
@media (min-width: 600px) { .form { grid-template-columns: repeat(2, 1fr); padding: 32px; } }
.form-full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-size: 11px; font-weight: 700; color: rgba(27,58,92,0.7);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 8px;
}
.field {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.field:focus { outline: none; border-color: var(--navy-deep); box-shadow: 0 0 0 4px rgba(15,37,64,0.08); }
.field::placeholder { color: rgba(15,37,64,0.66); }
textarea.field { resize: vertical; min-height: 110px; }

.form-actions {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  margin-top: 8px;
}
@media (min-width: 480px) { .form-actions { flex-direction: row; align-items: center; } }
.form-trust {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink-60);
}
.form-trust svg { width: 14px; height: 14px; }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 20px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 16px;
  color: #065F46;
}
.form-success.show { display: block; }
.form-success-title { font-weight: 700; margin-bottom: 4px; }
.form-success-text { font-size: 14px; }

/* Contact card (right side) */
.contact-card {
  background: var(--navy-deep);
  color: #fff;
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.contact-card-droplet {
  position: absolute; right: -48px; top: -48px;
  width: 256px; height: 320px;
  opacity: 0.1;
  pointer-events: none;
}
.contact-card-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--sage-light);
  margin-bottom: 12px;
  position: relative;
}
.contact-card h3 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 32px;
  position: relative;
}
.contact-list { display: flex; flex-direction: column; gap: 12px; position: relative; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  transition: background .2s;
}
a.contact-item:hover { background: rgba(255,255,255,0.1); }
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(156,186,186,0.2);
  color: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon.green {
  background: rgba(37,211,102,0.2);
  color: var(--whatsapp);
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 4px; }
.contact-item-value { font-size: 17px; font-weight: 500; transition: color .2s; word-break: break-word; }
a.contact-item:hover .contact-item-value { color: var(--sage-light); }
.contact-hours {
  display: flex; align-items: center; gap: 8px;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px; color: rgba(255,255,255,0.65);
  position: relative;
}
.contact-hours svg { width: 14px; height: 14px; }

/* Sticky-header-aware anchor scrolling */
section[id] { scroll-margin-top: 90px; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 4fr 3fr 2fr 3fr; gap: 32px; } }
.footer-brand-tagline { margin-top: 20px; font-size: 14px; line-height: 1.65; max-width: 360px; color: rgba(255,255,255,0.65); }
.footer-heading {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-list { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-list li { list-style: none; }
.footer-list a:hover { color: var(--sage-light); }
.footer-bottom {
  padding-top: 32px;
  display: flex; flex-direction: column; gap: 12px; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.45);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom-links { display: flex; gap: 12px; }
.footer-bottom-links a:hover { color: var(--sage-light); }
.footer-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-pill:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.footer-brand {
  display: flex; align-items: center; gap: 12px;
}
.footer-brand-logo {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
}
.footer-brand-logo svg { width: 28px; height: 36px; }
.footer-brand-name { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.018em; line-height: 1; }
.footer-brand-sub { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,0.45), 0 4px 12px rgba(15,37,64,0.15);
  transition: transform .2s;
}
@media (min-width: 768px) { .wa-fab { width: 64px; height: 64px; bottom: 28px; right: 28px; } }
.wa-fab:hover { transform: scale(1.05); }
.wa-fab svg { width: 28px; height: 28px; position: relative; z-index: 2; }
@media (min-width: 768px) { .wa-fab svg { width: 32px; height: 32px; } }
.wa-fab-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Hidden helper */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ============================================================
   STADTSEITEN  ·  Layer über dem Basis-Design (Navy / Sage / Manrope)
   ============================================================ */

/* — Breadcrumb — */
.breadcrumb { display:flex; flex-wrap:wrap; align-items:center; gap:8px; font-size:13px; font-weight:600; letter-spacing:.01em; }
.breadcrumb a { color:rgba(255,255,255,0.7); transition:color .2s; }
.breadcrumb a:hover { color:#fff; }
.breadcrumb span { color:rgba(255,255,255,0.45); }
.breadcrumb .sep { opacity:.5; }

/* — City-Hero mit Foto — */
.city-hero { position:relative; overflow:hidden; background:var(--navy-deep); color:#fff; isolation:isolate; }
.city-hero-bg { position:absolute; inset:0; z-index:-2; }
.city-hero-bg img { width:100%; height:100%; object-fit:cover; object-position:center; transform:scale(1.06); animation:cityKen 18s ease-out forwards; }
@keyframes cityKen { to { transform:scale(1); } }
.city-hero-shade { position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(15,37,64,0.72) 0%, rgba(15,37,64,0.55) 40%, rgba(15,37,64,0.78) 100%),
    linear-gradient(90deg, rgba(15,37,64,0.85) 0%, rgba(15,37,64,0.35) 55%, rgba(15,37,64,0.15) 100%); }
.city-hero-inner { position:relative; padding:120px 0 76px; max-width:760px; }
.city-hero .badge { background:rgba(255,255,255,0.10); border-color:rgba(255,255,255,0.22); color:#fff; }
.city-hero .badge-dot { background:var(--sage-light); }
.city-hero h1 { color:#fff; margin-top:22px; }
.city-hero h1 .accent { color:var(--sage-light); }
.city-hero-sub { margin-top:22px; font-size:clamp(1.05rem,2.4vw,1.3rem); line-height:1.6; color:rgba(255,255,255,0.85); max-width:600px; }
.city-hero-usp { list-style:none; display:flex; flex-wrap:wrap; gap:10px 22px; margin-top:26px; }
.city-hero-usp li { display:flex; align-items:center; gap:9px; font-size:15px; font-weight:600; color:rgba(255,255,255,0.92); }
.city-hero-usp svg { width:18px; height:18px; color:var(--sage-light); flex-shrink:0; }
.city-hero-ctas { display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.city-hero .btn-primary { background:#fff; color:var(--navy-deep); }
.city-hero .btn-primary:hover { background:var(--sage-pale); }
.city-hero .btn-ghost { color:#fff; border-color:rgba(255,255,255,0.4); }
.city-hero .btn-ghost:hover { border-color:#fff; background:rgba(255,255,255,0.08); }

/* — Intro / Lead-Block — */
.city-lead { display:grid; gap:40px; align-items:start; }
@media (min-width:900px){ .city-lead { grid-template-columns:1.35fr 1fr; gap:64px; } }
.city-lead .prose p { margin-bottom:18px; }
.city-lead .prose p:last-child { margin-bottom:0; }
.city-aside { background:var(--sage-pale); border-radius:20px; padding:30px; }
.city-aside h3 { font-size:18px; color:var(--navy-deep); margin-bottom:18px; }
.city-aside ul { list-style:none; display:flex; flex-direction:column; gap:14px; }
.city-aside li { display:flex; gap:12px; font-size:15px; color:var(--ink-75); line-height:1.5; }
.city-aside li svg { width:20px; height:20px; color:var(--navy); flex-shrink:0; margin-top:1px; }

/* — Gebiets-Chips — */
.area-chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.area-chip { display:inline-flex; align-items:center; gap:7px; padding:9px 16px; border-radius:999px;
  background:#fff; border:1px solid var(--sage-pale); font-size:14px; font-weight:600; color:var(--navy-deep);
  transition:transform .25s cubic-bezier(.16,1,.3,1), border-color .25s, box-shadow .25s; }
.area-chip svg { width:14px; height:14px; color:var(--sage); }
.area-chip:hover { transform:translateY(-2px); border-color:var(--sage); box-shadow:0 10px 24px -14px rgba(15,37,64,0.3); }

/* — Media-Row (Foto + Text) — */
.media-row { display:grid; gap:34px; align-items:center; }
@media (min-width:860px){ .media-row { grid-template-columns:1fr 1fr; gap:56px; } .media-row.reverse .media-row-figure { order:2; } }
.media-row-figure { position:relative; border-radius:22px; overflow:hidden; box-shadow:0 30px 60px -34px rgba(15,37,64,0.45); }
.media-row-figure img { width:100%; height:100%; object-fit:cover; display:block; aspect-ratio:4/3;
  transition:transform .6s cubic-bezier(.16,1,.3,1); }
.media-row-figure:hover img { transform:scale(1.04); }
.media-row-body h2 { margin-bottom:18px; }
.media-row-body .prose p { margin-bottom:16px; }
.media-row-body .prose p:last-child { margin-bottom:0; }

/* — Lokale Kennzahlen — */
.local-stats { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
@media (min-width:720px){ .local-stats { grid-template-columns:repeat(4,1fr); gap:24px; } }
.local-stat { background:#fff; border:1px solid var(--sage-pale); border-radius:18px; padding:26px 22px; }
.local-stat-num { font-size:clamp(2rem,4vw,2.6rem); font-weight:800; color:var(--navy-deep); line-height:1; letter-spacing:-0.02em; }
.local-stat-label { margin-top:10px; font-size:14px; color:var(--ink-60); line-height:1.45; }

/* — CTA-Band — */
.cta-band { position:relative; overflow:hidden; background:var(--navy-deep); color:#fff; border-radius:28px; padding:clamp(36px,5vw,60px); isolation:isolate; }
.cta-band::after { content:""; position:absolute; z-index:-1; top:-40%; right:-10%; width:60%; height:180%;
  background:radial-gradient(closest-side, rgba(156,186,186,0.22), transparent 70%); pointer-events:none; }
.cta-band h2 { color:#fff; max-width:620px; }
.cta-band p { color:rgba(255,255,255,0.78); max-width:560px; margin-top:16px; }
.cta-band .city-hero-ctas { margin-top:30px; }
.cta-band .btn-primary { background:#fff; color:var(--navy-deep); }
.cta-band .btn-primary:hover { background:var(--sage-pale); }
.cta-band .btn-ghost { color:#fff; border-color:rgba(255,255,255,0.4); }
.cta-band .btn-ghost:hover { border-color:#fff; background:rgba(255,255,255,0.08); }

/* — Andere Städte — */
.city-links { display:grid; gap:18px; }
@media (min-width:760px){ .city-links { grid-template-columns:repeat(3,1fr); } }
.city-link-card { position:relative; overflow:hidden; border-radius:20px; min-height:180px; display:flex; align-items:flex-end;
  padding:24px; color:#fff; isolation:isolate; transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s; }
.city-link-card img { position:absolute; inset:0; z-index:-2; width:100%; height:100%; object-fit:cover; transition:transform .6s cubic-bezier(.16,1,.3,1); }
.city-link-card::after { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(180deg, rgba(15,37,64,0.15) 0%, rgba(15,37,64,0.82) 100%); }
.city-link-card:hover { transform:translateY(-5px); box-shadow:0 26px 50px -26px rgba(15,37,64,0.5); }
.city-link-card:hover img { transform:scale(1.06); }
.city-link-card .cl-name { font-size:21px; font-weight:800; letter-spacing:-0.01em; }
.city-link-card .cl-go { margin-top:4px; font-size:13px; font-weight:600; color:var(--sage-light); display:flex; align-items:center; gap:7px; }
.city-link-card .cl-go svg { width:15px; height:15px; transition:transform .25s; }
.city-link-card:hover .cl-go svg { transform:translateX(4px); }

/* — Section-Intro linksbündig (Stadtseiten) — */
.section-header { max-width:640px; }
.section-header p { margin-top:18px; }

/* — Reduced Motion — */
@media (prefers-reduced-motion: reduce) {
  .city-hero-bg img { animation:none; transform:none; }
  .media-row-figure img, .city-link-card img, .area-chip { transition:none; }
}

/* ============================================================
   RATGEBER / BLOG  — angehängt, nutzt Marken-Variablen
   ============================================================ */
html { scroll-behavior: smooth; }

/* — Lesefortschritt oben — */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--navy) 0%, var(--sage) 100%);
  z-index: 200; transition: width .12s linear; will-change: width;
}

/* — Ratgeber-Übersicht: Hero — */
.ratgeber-hero { padding: 132px 0 24px; background: var(--white); }
.ratgeber-hero .breadcrumb { margin-bottom: 26px; }
.ratgeber-hero-inner { max-width: 760px; }
.ratgeber-hero h1 { font-size: clamp(34px, 6vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; margin-top: 16px; color: var(--ink); }
.ratgeber-hero p { margin-top: 22px; font-size: clamp(16px, 2.1vw, 19px); line-height: 1.65; color: var(--ink-70); max-width: 64ch; }

/* — Karten-Raster (Übersicht + verwandte Artikel) — */
.post-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  text-decoration: none; color: inherit; isolation: isolate;
  box-shadow: var(--shadow-soft);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1), border-color .35s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--sage-light); }
.post-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--sage-pale); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.post-card:hover .post-card-media img { transform: scale(1.06); }
.post-card-body { display: flex; flex-direction: column; gap: 10px; padding: 22px 22px 24px; flex: 1; }
.post-card-cat {
  align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy); background: var(--sage-pale); padding: 5px 11px; border-radius: 999px;
}
.post-card-title { font-size: 19px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.28; color: var(--ink); }
.post-card-excerpt { font-size: 14.5px; line-height: 1.6; color: var(--ink-70); }
.post-card-meta { margin-top: auto; padding-top: 6px; font-size: 12.5px; color: var(--ink-60); font-weight: 500; }

/* — Artikel: Hero — */
.article-hero { padding-top: 124px; background: var(--white); }
.article-hero-inner { max-width: 760px; }
.article-hero .breadcrumb { margin-bottom: 22px; }
.article-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); background: var(--sage-pale); padding: 6px 13px; border-radius: 999px;
}
.article-hero h1 { font-size: clamp(30px, 5vw, 50px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin-top: 18px; color: var(--ink); }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 20px; font-size: 14px; color: var(--ink-60); font-weight: 500; }
.article-meta .dot { color: var(--sage); }
.article-cover { margin: 34px 0 0; border-radius: 22px; overflow: hidden; aspect-ratio: 16 / 8; box-shadow: var(--shadow-card); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* — Artikel: Lese-Spalte — */
.article-wrap { padding: 8px 0 4px; }
.article-body { max-width: 720px; margin: 0 auto; padding: 40px 24px 8px; }
.article-body > * { margin: 0; }
.article-body h2 {
  font-size: clamp(22px, 3.4vw, 30px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2;
  color: var(--ink); margin-top: 46px; scroll-margin-top: 96px;
}
.article-body h2:first-of-type { margin-top: 36px; }
.article-body h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-top: 26px; letter-spacing: -0.01em; }
.article-body p { font-size: 17px; line-height: 1.72; color: var(--ink-75); margin-top: 18px; }
.article-body ul { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 11px; padding: 0; }
.article-body ul li { position: relative; padding-left: 30px; font-size: 16.5px; line-height: 1.6; color: var(--ink-75); }
.article-body ul li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 16px; height: 16px;
  background: var(--sage-pale); border-radius: 50%;
}
.article-body ul li::after {
  content: ""; position: absolute; left: 5px; top: 12px; width: 6px; height: 6px;
  background: var(--navy); border-radius: 50%;
}
.article-body a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--sage-light); transition: text-decoration-color .2s, color .2s; }
.article-body a:hover { color: var(--navy-deep); text-decoration-color: var(--navy); }
.article-body strong { font-weight: 700; color: var(--ink); }

/* — Artikel: Intro / Lead — */
.article-lead p { font-size: 19.5px; line-height: 1.6; color: var(--ink); font-weight: 500; margin-top: 0; }
@media (min-width: 700px) { .article-lead p { font-size: 21px; } }

/* — Inhaltsverzeichnis — */
.article-toc {
  margin-top: 30px; padding: 22px 24px; border: 1px solid var(--border); border-radius: 16px;
  background: var(--cream-warm);
}
.article-toc-title { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 12px; }
.article-toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; display: flex; flex-direction: column; gap: 8px; }
.article-toc li { counter-increment: toc; }
.article-toc a { display: flex; gap: 10px; font-size: 15px; line-height: 1.45; color: var(--ink-70); text-decoration: none; font-weight: 500; transition: color .2s; }
.article-toc a::before { content: counter(toc, decimal-leading-zero); color: var(--sage); font-weight: 700; font-variant-numeric: tabular-nums; }
.article-toc a:hover { color: var(--navy); }
.article-toc a.active { color: var(--navy); font-weight: 700; }

/* — Callout / Info-Box — */
.callout {
  margin-top: 26px; padding: 22px 24px; border-radius: 16px;
  background: var(--sage-pale); border: 1px solid var(--sage-light);
}
.callout .callout-title { display: block; font-size: 13px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.callout p { margin-top: 0; font-size: 16px; color: var(--ink-75); }
.callout p + p { margin-top: 12px; }
.callout ul { margin-top: 0; }
.callout-tip { background: var(--cream-warm); border-color: var(--border); }
.callout-tip .callout-title { color: var(--navy-soft); }

/* — Kostenliste — */
.callout-cost { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff; }
.callout-cost .callout-title { color: var(--sage-light); }
.cost-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.cost-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.cost-list li:last-child { border-bottom: none; }
.cost-list .cost-label { font-size: 15.5px; color: rgba(255,255,255,0.82); line-height: 1.4; }
.cost-list .cost-val { font-size: 16px; font-weight: 700; color: #fff; white-space: nowrap; text-align: right; }
.cost-note { margin: 14px 0 0; font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* — Bild im Artikel — */
.article-figure { margin: 30px 0 0; }
.article-figure picture, .article-figure img { display: block; width: 100%; border-radius: 16px; }
.article-figure figcaption { margin-top: 10px; font-size: 13px; color: var(--ink-60); text-align: center; }

/* — Autoren-Box — */
.author-box {
  margin-top: 48px; padding: 26px; border: 1px solid var(--border); border-radius: 18px;
  background: var(--white); display: flex; gap: 20px; align-items: flex-start; box-shadow: var(--shadow-soft);
}
.author-box-photo { flex-shrink: 0; width: 76px; height: 76px; border-radius: 50%; overflow: hidden; background: var(--sage-pale); }
.author-box-photo picture, .author-box-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-box-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-60); }
.author-box-name { display: block; font-size: 18px; font-weight: 800; color: var(--ink); margin-top: 3px; letter-spacing: -0.01em; }
.author-box-body p { margin-top: 10px; font-size: 15px; line-height: 1.6; color: var(--ink-70); }
.author-box-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--navy); text-decoration: none; }
.author-box-link svg { width: 15px; height: 15px; transition: transform .25s; }
.author-box-link:hover svg { transform: translateX(4px); }
@media (max-width: 520px) { .author-box { flex-direction: column; gap: 14px; } }

/* — Aktiver Nav-Link — */
.nav-link.active { color: var(--navy-deep); font-weight: 700; }

/* — Reduced Motion — */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reading-progress { transition: none; }
  .post-card, .post-card-media img, .author-box-link svg { transition: none; }
}


/* ===== ELITE-FEINSCHLIFF (additiv, konfliktfrei) ===== */
html{ scroll-behavior:smooth; }
::selection{ background:var(--sage); color:var(--navy-deep); }
:focus-visible{ outline:2px solid var(--navy-deep); outline-offset:3px; border-radius:6px; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible){ outline:none; }

/* Primär-Button: dezenter Lichtsweep bei Hover */
.btn-primary{ position:relative; overflow:hidden; }
.btn-primary::after{
  content:""; position:absolute; top:0; left:0; width:55%; height:100%; pointer-events:none;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform:translateX(-180%) skewX(-18deg);
  transition:transform .8s cubic-bezier(.16,1,.3,1);
}
.btn-primary:hover::after{ transform:translateX(320%) skewX(-18deg); }

/* etwas mehr Tiefe bei Karten-Hover */
.svc-card:hover{ box-shadow:0 18px 42px -18px rgba(15,37,64,.22); }

/* Bild-Zoom in der Über-uns-Fotokachel */
.about-photo{ overflow:hidden; }
.about-photo img, .about-photo picture{ transition:transform .8s cubic-bezier(.16,1,.3,1); display:block; }
.about-photo:hover img{ transform:scale(1.04); }

/* weicheres, einheitliches Reveal-Timing */
.reveal{ transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }

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

/* ===== AUFKLAPPBARE LEISTUNGS-KARTEN (Stadtseiten) ===== */
details.svc-card{ overflow:hidden; }
details.svc-card[open]{ box-shadow:var(--shadow-soft); border-color:rgba(15,37,64,0.2); }
.svc-summary{ display:block; list-style:none; cursor:pointer; outline:none; }
.svc-summary::-webkit-details-marker{ display:none; }
.svc-summary::marker{ content:""; }
.svc-summary:focus-visible{ outline:2px solid var(--navy-deep); outline-offset:4px; border-radius:10px; }
.svc-more{ display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-size:14px; font-weight:700; color:var(--navy); }
.svc-more svg{ width:16px; height:16px; flex:none; transition:transform .35s cubic-bezier(.16,1,.3,1); }
.svc-more-open{ display:none; }
details[open] .svc-more svg{ transform:rotate(180deg); }
details[open] .svc-more .svc-more-closed{ display:none; }
details[open] .svc-more .svc-more-open{ display:inline; }
.svc-detail{ margin-top:18px; padding-top:18px; border-top:1px solid var(--border); font-size:15px; line-height:1.68; color:var(--ink-70); animation:svcReveal .45s cubic-bezier(.16,1,.3,1); }
.svc-detail p{ margin:0 0 12px; }
.svc-points{ list-style:none; margin:14px 0 4px; padding:0; display:flex; flex-direction:column; gap:9px; }
.svc-points li{ position:relative; padding-left:28px; font-size:14.5px; color:var(--ink); line-height:1.5; }
.svc-points li::before{ content:""; position:absolute; left:0; top:1px; width:18px; height:18px; background:var(--sage-pale); border-radius:50%; }
.svc-points li::after{ content:""; position:absolute; left:5.5px; top:6px; width:6px; height:3px; border-left:2px solid var(--navy-deep); border-bottom:2px solid var(--navy-deep); transform:rotate(-45deg); }
.svc-cta{ display:inline-flex; align-items:center; gap:7px; margin-top:16px; font-weight:700; font-size:14.5px; color:var(--navy); text-decoration:none; }
.svc-cta svg{ width:16px; height:16px; flex:none; transition:transform .35s cubic-bezier(.16,1,.3,1); }
.svc-cta:hover{ color:var(--navy-deep); }
.svc-cta:hover svg{ transform:translateX(5px); }
.svc-inline{ color:var(--navy); font-weight:600; text-decoration:underline; text-underline-offset:2px; text-decoration-thickness:1px; }
.svc-inline:hover{ color:var(--navy-deep); }
@keyframes svcReveal{ from{ opacity:0; transform:translateY(-6px); } to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce){ .svc-detail{ animation:none; } }
