/* ==========================================================================
   MESTO BAU — Stylesheet v2
   Modern, clean, professional design
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Farben */
  --c-ink:        #1A1D23;
  --c-ink-soft:   #2D323B;
  --c-white:      #FFFFFF;
  --c-bg:         #FAFAF8;
  --c-bg-alt:     #F0EFEC;
  --c-brick:      #C7512E;
  --c-brick-dark: #A84124;
  --c-brick-light:#E8A084;
  --c-steel:      #3A6B8A;
  --c-steel-dark: #2A4F67;
  --c-steel-light:#7BA3BE;
  --c-text:       #4A4D52;
  --c-text-light: #8A8D93;
  --c-line:       #E2E0DB;
  --c-success:    #4C7A5D;

  /* Typografie */
  --f-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --f-body:    'Inter', 'Segoe UI', sans-serif;

  /* Abstände */
  --gap-xs: .5rem;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 4rem;
  --gap-xl: 6rem;

  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;

  --shadow-sm: 0 2px 8px rgba(26,29,35,.06);
  --shadow-md: 0 8px 30px rgba(26,29,35,.08);
  --shadow-lg: 0 20px 50px -20px rgba(26,29,35,.25);
  --shadow-xl: 0 30px 60px -25px rgba(26,29,35,.35);

  --maxw: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--c-ink);
  margin: 0 0 .5em;
  line-height: 1.2;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 .8em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 5vw; }
@media (min-width: 1400px) { .container { padding: 0 2rem; } }

:focus-visible { outline: 3px solid var(--c-steel); outline-offset: 3px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--f-display);
  font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--c-brick);
  margin-bottom: .8em;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--c-brick);
  display: inline-block;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--f-display); font-weight: 700; font-size: .95rem;
  padding: .85em 1.8em;
  border-radius: var(--radius-s);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-primary { background: var(--c-brick); color: #fff; }
.btn-primary:hover { background: var(--c-brick-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--c-ink); color: var(--c-ink); }
.btn-outline:hover { background: var(--c-ink); color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--c-ink); color: #fff; }
.btn-dark:hover { background: var(--c-steel-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: .65em 1.4em; font-size: .88rem; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(26,29,35,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: .75rem 5vw;
}
.nav-logo { display: flex; align-items: center; gap: .6rem; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo span {
  font-family: var(--f-display); font-weight: 800; color: #fff;
  font-size: 1.1rem; letter-spacing: -.02em;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: rgba(255,255,255,.75); font-family: var(--f-display); font-weight: 600;
  font-size: .9rem; position: relative; padding: .25rem 0;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  height: 2px; width: 0; background: var(--c-brick);
  transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--c-brick); color: #fff !important; padding: .55em 1.3em;
  border-radius: var(--radius-s); font-weight: 700 !important;
}
.nav-cta:hover { background: var(--c-brick-dark) !important; }
.nav-cta::after { display: none; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer; z-index: 1100;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: #fff; margin: 0 auto;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; top: 0; height: 100vh; width: min(75vw, 320px);
    background: var(--c-ink); flex-direction: column; align-items: flex-start;
    padding: 6rem 2rem 2rem; gap: 1.5rem;
    transform: translateX(100%); transition: transform .35s ease;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--c-ink);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.hero::before {
  content: "";
  position: absolute; top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(199,81,46,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--gap-lg); align-items: center;
}
.hero-eyebrow { color: var(--c-brick-light); }
.hero-eyebrow::before { background: var(--c-brick-light); }
.hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.hero h1 em { font-style: normal; color: var(--c-brick-light); }
.hero-lead {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  max-width: 48ch; margin-bottom: 1.8rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero-visual { position: relative; }
.hero-visual .frame {
  position: relative; border-radius: var(--radius-m); overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,.1);
}
.hero-visual img { height: 380px; object-fit: cover; width: 100%; }
.hero-tag {
  position: absolute; left: -1rem; bottom: -1rem;
  background: var(--c-brick); color: #fff; padding: .9rem 1.2rem;
  border-radius: var(--radius-s); box-shadow: var(--shadow-lg);
  font-family: var(--f-display); max-width: 210px;
}
.hero-tag strong { display: block; font-size: .95rem; margin-bottom: .15rem; }
.hero-tag span { font-size: .78rem; opacity: .85; }
.hero-corner {
  position: absolute; top: -12px; right: -12px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--c-steel); border-right: 2px solid var(--c-steel);
  opacity: .7;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--gap-md); }
  .hero-visual { order: -1; }
  .hero-visual img { height: 280px; }
  .hero-tag { position: static; margin-top: .8rem; max-width: none; }
}

/* ---------- Section basics ---------- */
section { padding: var(--gap-xl) 0; }
.section-alt { background: var(--c-bg-alt); }
.section-head { max-width: 680px; margin-bottom: var(--gap-md); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Intro (Über uns Seite) ---------- */
.intro {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--gap-lg); align-items: start;
}
.intro-media { position: relative; height: 400px; overflow: hidden; border-radius: var(--radius-m); }
.intro-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-m); box-shadow: var(--shadow-md); }
@media (max-width: 860px) { .intro { grid-template-columns: 1fr; } .intro-media { order: -1; height: 280px; } }

/* ---------- CTA Band (Unterseiten) ---------- */
.cta-band {
  background: var(--c-brick); color: #fff; border-radius: var(--radius-m);
  padding: clamp(2rem, 4vw, 3rem); display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin: 0 0 .3rem; font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
.cta-band p { margin: 0; color: rgba(255,255,255,.8); font-size: .95rem; }
.cta-band .btn-dark { background: #fff; color: var(--c-brick); }
.cta-band .btn-dark:hover { background: var(--c-ink); color: #fff; }

/* ---------- About + USPs (Kompakt) ---------- */
.about-usp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); align-items: start;
}
.about-content p { font-size: .95rem; color: var(--c-text); }
.arrow-link {
  display: inline-flex; align-items: center; gap: .4em;
  font-family: var(--f-display); font-weight: 700; font-size: .9rem;
  color: var(--c-brick); margin-top: .5rem;
  transition: gap .25s ease;
}
.arrow-link:hover { gap: .7em; }
.arrow-link::after { content: "→"; }

.usp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.usp-card {
  background: #fff; border-radius: var(--radius-m); padding: 1.4rem;
  border: 1px solid var(--c-line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.usp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.usp-icon {
  width: 36px; height: 36px; border-radius: var(--radius-s);
  background: var(--c-bg-alt); color: var(--c-brick);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-size: .9rem;
  margin-bottom: .6rem;
}
.usp-text h3 { font-size: .95rem; margin-bottom: .2rem; }
.usp-text p { font-size: .85rem; margin: 0; color: var(--c-text-light); }

@media (max-width: 860px) {
  .about-usp-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .usp-grid { grid-template-columns: 1fr; }
}

/* ---------- Services (Modern & Kompakt) ---------- */
.services-grid-modern {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.service-card-modern {
  background: #fff; border-radius: var(--radius-m); padding: 1.8rem 1.5rem;
  border: 1px solid var(--c-line);
  position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card-modern:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent;
}
.card-bg-icon {
  position: absolute; top: .5rem; right: .8rem;
  font-family: var(--f-display); font-weight: 800; font-size: 3rem;
  color: rgba(199,81,46,.06); line-height: 1;
  pointer-events: none;
}
.service-num {
  font-family: var(--f-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-brick); margin-bottom: .4rem; display: block;
}
.service-card-modern h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.service-card-modern p { font-size: .88rem; color: var(--c-text-light); margin-bottom: .8rem; }
.service-link {
  font-family: var(--f-display); font-weight: 700; font-size: .85rem;
  color: var(--c-brick); display: inline-flex; align-items: center; gap: .3em;
  transition: gap .25s ease;
}
.service-link:hover { gap: .6em; }
.service-link::after { content: "→"; }

.service-card-cta {
  background: var(--c-ink); border-color: var(--c-ink);
  display: flex; flex-direction: column; justify-content: center;
}
.service-card-cta h3 { color: #fff; font-size: 1.1rem; }
.service-card-cta p { color: rgba(255,255,255,.65); font-size: .88rem; }
.service-card-cta .btn { align-self: flex-start; margin-top: .3rem; }

@media (max-width: 960px) { .services-grid-modern { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid-modern { grid-template-columns: 1fr; } }

/* ---------- Process (Kompakt) ---------- */
.process-modern {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  position: relative;
}
.process-step-modern {
  background: #fff; border-radius: var(--radius-m); padding: 1.6rem 1.4rem;
  border: 1px solid var(--c-line); text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-step-modern:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-brick); color: #fff;
  font-family: var(--f-display); font-weight: 800; font-size: .9rem;
  margin-bottom: .8rem;
}
.process-step-modern h3 { font-size: 1rem; margin-bottom: .3rem; }
.process-step-modern p { font-size: .85rem; color: var(--c-text-light); margin: 0; }

@media (max-width: 860px) { .process-modern { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-modern { grid-template-columns: 1fr; } }

/* ---------- Testimonials + FAQ (Kompakt, 2-Spaltig) ---------- */
.feedback-faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); align-items: start;
}
.testimonials-compact {
  display: flex; flex-direction: column; gap: 1rem;
}
.testi-item-compact {
  background: #fff; border-radius: var(--radius-m); padding: 1.4rem;
  border: 1px solid var(--c-line); margin: 0;
}
.testi-stars { color: var(--c-brick); letter-spacing: .12em; font-size: .9rem; margin-bottom: .5rem; }
.testi-item-compact p {
  font-style: italic; font-size: .9rem; color: var(--c-ink-soft);
  margin: 0 0 .6rem; line-height: 1.5;
}
.testi-item-compact cite {
  font-style: normal; font-family: var(--f-display); font-weight: 700;
  font-size: .85rem; color: var(--c-ink);
}
.testi-item-compact cite span { font-weight: 400; color: var(--c-text-light); font-family: var(--f-body); }

.faq-compact { display: flex; flex-direction: column; }
.faq-compact .faq-item { border-bottom: 1px solid var(--c-line); }
.faq-compact .faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.2rem 0; font-family: var(--f-display); font-weight: 700;
  font-size: .95rem; color: var(--c-ink);
}
.faq-compact .faq-q .plus {
  flex: 0 0 auto; width: 24px; height: 24px; position: relative;
}
.faq-compact .faq-q .plus::before,
.faq-compact .faq-q .plus::after {
  content: ""; position: absolute; background: var(--c-brick);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-compact .faq-q .plus::before { width: 14px; height: 2px; }
.faq-compact .faq-q .plus::after { width: 2px; height: 14px; transition: transform .25s ease; }
.faq-compact .faq-item.is-open .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-compact .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-compact .faq-a p { padding: 0 0 1.2rem; margin: 0; font-size: .9rem; color: var(--c-text-light); }

@media (max-width: 860px) { .feedback-faq-grid { grid-template-columns: 1fr; } }

/* ---------- CTA + Contact ---------- */
.cta-contact-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); align-items: center;
  background: var(--c-ink); border-radius: var(--radius-l); padding: clamp(2rem, 4vw, 3rem);
  color: #fff;
}
.cta-banner-side h2 { color: #fff; font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: .5rem; }
.cta-banner-side p { color: rgba(255,255,255,.65); font-size: .95rem; margin-bottom: 1.4rem; }
.contact-info-side h3 {
  color: #fff; font-size: 1rem; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 1rem;
}
.compact-contact-list { display: flex; flex-direction: column; gap: .6rem; }
.contact-row {
  display: flex; align-items: center; gap: .8rem;
  padding: .7rem .9rem; border-radius: var(--radius-s);
  background: rgba(255,255,255,.06);
  transition: background .2s ease;
}
.contact-row:hover { background: rgba(255,255,255,.12); }
.contact-icon { font-size: 1.1rem; flex: 0 0 auto; }
.contact-details strong { display: block; font-family: var(--f-display); font-size: .85rem; color: #fff; }
.contact-details span { font-size: .82rem; color: rgba(255,255,255,.6); }

@media (max-width: 860px) { .cta-contact-wrapper { grid-template-columns: 1fr; gap: var(--gap-md); } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-ink); color: rgba(255,255,255,.55);
  padding: var(--gap-lg) 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--gap-md); padding-bottom: var(--gap-md);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.footer-brand img { height: 34px; }
.footer-brand span { font-family: var(--f-display); font-weight: 800; color: #fff; font-size: 1.05rem; }
.footer-grid p { font-size: .88rem; max-width: 32ch; }
.footer-col h4 {
  color: #fff; font-family: var(--f-display); font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-col li { margin-bottom: .6rem; font-size: .88rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem; padding-top: 1.4rem; font-size: .82rem;
}
.footer-bottom a:hover { color: #fff; }

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

/* ---------- Page Header (Unterseiten) ---------- */
.page-hero {
  background: var(--c-ink); color: #fff;
  padding: 4.5rem 0 3.5rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; top: -20%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(199,81,46,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .breadcrumb { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: .8rem; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; max-width: 55ch; }
.page-hero p { color: rgba(255,255,255,.6); max-width: 55ch; font-size: 1.02rem; }

/* ---------- Leistungen Detailseiten ---------- */
.service-block { padding: var(--gap-xl) 0; border-bottom: 1px solid var(--c-line); }
.service-block:nth-child(even) { background: var(--c-bg-alt); }
.service-body { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); align-items: center; }
.service-block:nth-child(even) .service-body { direction: rtl; }
.service-block:nth-child(even) .service-body > * { direction: ltr; }
.service-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  margin: 1.5rem 0 0; padding: .85rem 1.3rem;
  border: 1px solid var(--c-line); border-radius: var(--radius-s);
  background: #fff; color: var(--c-ink);
  font-family: var(--f-display); font-weight: 700; font-size: .9rem;
  cursor: pointer; transition: background .25s ease, border-color .25s ease;
}
.service-toggle:hover { background: var(--c-bg-alt); border-color: var(--c-ink); }
.service-media { position: relative; }
.service-media img {
  border-radius: var(--radius-m); box-shadow: var(--shadow-md);
  width: 100%; height: 380px; object-fit: cover;
}
.service-media.placeholder {
  height: 380px; border-radius: var(--radius-m);
  display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
  background: linear-gradient(135deg, var(--c-steel) 0%, var(--c-ink) 100%);
  position: relative; overflow: hidden;
}
.service-media.placeholder.alt { background: linear-gradient(135deg, var(--c-brick) 0%, var(--c-ink) 100%); }
.service-media.placeholder .icon { font-size: 3rem; font-family: var(--f-display); font-weight: 800; opacity: .9; }
.service-media.placeholder span.cap {
  display: block; margin-top: .5rem; font-size: .82rem;
  color: rgba(255,255,255,.7); max-width: 200px;
}
.service-tag {
  font-family: var(--f-display); font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-brick); margin-bottom: .6rem; display: block;
}
.service-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin: 1.4rem 0 1.8rem; }
.service-cols h4 {
  font-family: var(--f-display); font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--c-ink); margin-bottom: .6rem;
}
.service-cols li { padding-left: 1.2rem; position: relative; margin-bottom: .5rem; font-size: .92rem; }
.service-cols li::before { content: "✓"; position: absolute; left: 0; color: var(--c-success); font-weight: 700; }

@media (max-width: 900px) {
  .service-media {order: 0;}
  .service-body { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-body { direction: ltr; }
  .service-block:nth-child(even) .service-body > * { direction: ltr; }
  .service-media, .service-media.placeholder {
    height: 260px;
    order: -1;
    overflow: hidden;      /* NEU: schneidet Überstand ab */
  }
  .service-media img {
    height: 100%;           /* NEU: Bild passt sich dem Container an */
  }
  .service-cols { grid-template-columns: 1fr; }
}

/* ---------- Über uns Extras ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; text-align: center; }
.stat { padding: 1.8rem 1rem; border-right: 1px solid var(--c-line); }
.stat:last-child { border-right: none; }
.stat strong { display: block; font-family: var(--f-display); font-size: 2.2rem; color: var(--c-brick); font-weight: 800; }
.stat span { font-size: .82rem; color: var(--c-text-light); }

@media (max-width: 760px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--c-line); }
}

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.value-card {
  padding: 1.8rem; background: #fff; border-radius: var(--radius-m);
  border: 1px solid var(--c-line);
}
.value-card .mark { font-family: var(--f-display); font-weight: 800; color: var(--c-brick); font-size: 1.4rem; margin-bottom: .5rem; }

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

/* ---------- Kontakt Seite ---------- */
.contact-main { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); align-items: start; }
.contact-panel { background: #fff; border-radius: var(--radius-m); border: 1px solid var(--c-line); padding: 2rem; }
.contact-line { display: flex; gap: .8rem; padding: 1rem 0; border-bottom: 1px solid var(--c-line); }
.contact-line:last-child { border-bottom: none; }
.contact-line .ico {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-bg-alt); display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; color: var(--c-brick);
}
.contact-line h4 { font-size: .9rem; margin-bottom: .1rem; }
.contact-line a, .contact-line p { font-size: .9rem; margin: 0; color: var(--c-text); }
.map-wrap { border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--c-line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: .8rem; }
.hours-table td { padding: .45rem 0; font-size: .9rem; border-bottom: 1px dashed var(--c-line); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--c-ink); }

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

/* ---------- Rechtstexte (Impressum/Datenschutz) ---------- */
.legal { max-width: 800px; }
.legal h2 { margin-top: 2rem; font-size: 1.3rem; }
.legal h3 { margin-top: 1.4rem; font-size: 1.05rem; }
.legal p, .legal li { font-size: .93rem; }
.legal ul { padding-left: 1.2rem; list-style: disc; margin-bottom: .8rem; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: #fff; color: #111; padding: .7rem 1.1rem; z-index: 2000;
}
.skip-link:focus { left: 1rem; top: 1rem; }