.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 76px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  background-color: white;
}
.navbar__inner {
  margin-left: 10rem;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar__inner__logo {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 2.8rem;
}
.navbar__inner__logo__satz {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
@media (max-width: 1300px) {
  .navbar__inner__logo__satz {
    display: none;
  }
}
.navbar__inner__logo__satz span {
  color: #FF7F11;
}
.navbar__logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #FFFFFC;
  line-height: 1.2;
  width: 350px !important;
  height: auto;
  margin-top: -25px;
}
@media (max-width: 768px) {
  .navbar__logo {
    width: 230px !important;
  }
}
.navbar__logo span {
  display: block;
  color: #FF7F11;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: white !important;
  margin-top: 30px;
}
.navbar__link {
  text-decoration: none;
  color: #FFFFFC;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.25s ease, color 0.25s ease;
  color: black;
}
.navbar__link:hover {
  opacity: 1;
  color: #FF7F11;
}
.navbar__link--cta {
  color: #FF7F11;
  border-radius: 6px;
  opacity: 1;
  font-weight: 600;
}
@media (max-width: 768px) {
  .navbar__link--cta {
    padding: 0.5rem 1.25rem;
    background: #FF7F11;
    color: #000000;
  }
}
.navbar__link--cta:hover {
  background: #FF3F00;
  color: #FFFFFC;
}
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFC;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  background-color: black;
}
.navbar__burger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__burger--open span:nth-child(2) {
  opacity: 0;
}
.navbar__burger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.navbar--scrolled {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .navbar__burger {
    display: flex;
  }
  .navbar__nav {
    display: none;
    position: fixed;
    top: 46px;
    left: 0;
    right: 0;
    background: #000000;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .navbar__nav--open {
    display: flex;
  }
  .navbar__link {
    font-size: 1.1rem;
    width: 100%;
  }
  .navbar__link--cta {
    text-align: center;
    margin-top: 0.5rem;
  }
}

.navbar__logo-img {
  width: auto;
  display: block;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #000000;
  background: #FFFFFC;
  -webkit-font-smoothing: antialiased;
}

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

address {
  font-style: normal;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: #FF7F11;
  color: #000000;
}
.btn--primary:hover {
  background: #FF3F00;
  color: #FFFFFC;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: #FFFFFC;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  border-color: #FF7F11;
  color: #FF7F11;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header--light .section-eyebrow {
  color: rgba(255, 255, 252, 0.6);
}
.section-header--light .section-title {
  color: #FFFFFC;
}
.section-header--light .section-subtitle {
  color: rgba(255, 255, 252, 0.7);
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF7F11;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #000000;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.6);
  max-width: 560px;
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  background: #000000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255, 127, 17, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__content {
  padding: 8rem 4rem 8rem 2rem;
  max-width: 640px;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF7F11;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #FFFFFC;
  margin-bottom: 0.3rem;
  margin-top: -6rem;
}
@media (max-width: 768px) {
  .hero__title {
    margin-top: 0.1rem;
    font-size: 3rem;
  }
}
.hero__title span {
  color: #FF7F11;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 252, 0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
}
.hero__image-wrapper {
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, rgba(255, 127, 17, 0.12), rgba(255, 127, 17, 0.03));
  border: 1px solid rgba(255, 127, 17, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__image-wrapper::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 127, 17, 0.3), transparent 50%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1px;
}
.hero__badge {
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  background: #FF7F11;
  color: #000000;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(255, 127, 17, 0.4);
}
.hero__badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero__badge-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  opacity: 0.85;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(76px + 2rem);
  }
  .hero__content {
    padding: 4rem 2rem 2rem;
    margin: 0 auto;
  }
}
@media (max-width: 900px) and (max-width: 768px) {
  .hero__content {
    padding-bottom: 290px;
  }
}
@media (max-width: 900px) {
  .hero__visual {
    display: none;
  }
}

.leitsatz {
  padding: 4rem 0;
  background: #000000;
  text-align: center;
}
.leitsatz__quote {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #FFFFFC;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.leitsatz__mark {
  color: #FF7F11;
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.3em;
  font-style: normal;
  margin: 0 0.15em;
}

.leistungen {
  padding: 8rem 0;
  background: #FFFFFC;
}
.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .leistungen__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .leistungen__grid {
    grid-template-columns: 1fr;
  }
}
.leistungen__card {
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #FFFFFC;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.leistungen__card:hover {
  border-color: #FF7F11;
  box-shadow: 0 8px 32px rgba(255, 127, 17, 0.12);
  transform: translateY(-3px);
}
.leistungen__card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.leistungen__card p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.65;
}
.leistungen__icon {
  width: 48px;
  height: 48px;
  color: #FF7F11;
  margin-bottom: 1rem;
}
.leistungen__icon svg {
  width: 100%;
  height: 100%;
}

.ueber-uns {
  padding: 8rem 0;
  background: #FFFFFC;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.ueber-uns__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .ueber-uns__inner {
    grid-template-columns: 1fr;
  }
}
.ueber-uns__image-block {
  position: relative;
  display: flex;
  flex-direction: column;
}
.ueber-uns__image-placeholder {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 127, 17, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  aspect-ratio: 3/4;
}
.ueber-uns__image-placeholder svg {
  width: 100%;
  height: 100%;
}
.ueber-uns__accent-box {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #000000;
  color: #FFFFFC;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.ueber-uns__accent-box strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #FF7F11;
}
.ueber-uns__accent-box span {
  font-size: 0.8rem;
  opacity: 0.6;
}
@media (max-width: 560px) {
  .ueber-uns__accent-box {
    position: static;
    margin-top: 1rem;
    border-radius: 6px;
  }
}
.ueber-uns__content {
  padding-left: 1rem;
}
.ueber-uns__content .section-title {
  text-align: left;
}
@media (max-width: 900px) {
  .ueber-uns__content {
    padding-left: 0;
  }
}
.ueber-uns__text {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.ueber-uns__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2rem;
}
.ueber-uns__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.ueber-uns__list li svg {
  width: 18px;
  height: 18px;
  color: #FF7F11;
  flex-shrink: 0;
}

.referenzen {
  padding: 8rem 0;
  background: rgba(255, 127, 17, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.referenzen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
@media (max-width: 768px) {
  .referenzen__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .referenzen__grid {
    grid-template-columns: 1fr;
  }
}
.referenzen__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.referenzen__item--large {
  grid-row: 1/3;
  aspect-ratio: auto;
}
@media (max-width: 768px) {
  .referenzen__item--large {
    grid-row: auto;
    aspect-ratio: 4/3;
  }
}
.referenzen__item:hover .referenzen__placeholder span {
  opacity: 1;
  transform: translateY(0);
}
.referenzen__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 127, 17, 0.1), rgba(255, 127, 17, 0.04));
  border: 1px solid rgba(255, 127, 17, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.referenzen__placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #BEB7A4;
  opacity: 0.15;
}
.referenzen__placeholder span {
  position: relative;
  font-size: 0.85rem;
  font-weight: 600;
  color: #000000;
  background: rgba(255, 255, 252, 0.9);
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.kontakt {
  padding: 8rem 0;
  background: #000000;
}
.kontakt .section-header {
  margin-bottom: 4rem;
}
.kontakt__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .kontakt__inner {
    grid-template-columns: 1fr;
  }
}
.kontakt__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kontakt__block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.kontakt__block strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF7F11;
  margin-bottom: 0.35rem;
}
.kontakt__block a, .kontakt__block address, .kontakt__block span {
  color: rgba(255, 255, 252, 0.75);
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.6;
}
.kontakt__block a:hover {
  color: #FF7F11;
}
.kontakt__icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 127, 17, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kontakt__icon svg {
  width: 20px;
  height: 20px;
  color: #FF7F11;
}
.kontakt__map {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 252, 0.08);
}
.kontakt__map-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 280px;
}
.kontakt__map-placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 252, 0.2);
}
.kontakt__map-placeholder span {
  color: rgba(255, 255, 252, 0.3);
  font-size: 0.85rem;
}

.footer {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2rem 0;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
}
.footer__inner .navbar__logo {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.footer__inner p {
  font-size: 0.85rem;
  color: orange;
  margin-top: -0.5rem;
}
.footer__nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__nav a {
  color: black;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}
.footer__nav a:hover {
  color: #FF7F11;
}
.footer__legal {
  display: flex;
  gap: 1rem;
}
.footer__legal a {
  color: black;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.25s ease;
}
.footer__legal a:hover {
  color: #FF7F11;
}
.footer__bottom span {
  font-size: 0.8rem;
  color: lightgray;
}

.hero__leitsatz {
  font-size: 1rem;
  font-style: italic;
  color: #FF7F11;
  margin-bottom: 3.5rem;
  letter-spacing: 0.01em;
}

.leistungen__card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.leistungen__card:hover .leistungen__more {
  color: #FF7F11;
  gap: 0.5rem;
}

.leistungen__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FF7F11;
  margin-top: 0.75rem;
  transition: gap 0.25s ease, color 0.25s ease;
}

.page-hero {
  background: #000000;
  padding: calc(76px + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 127, 17, 0.07), transparent 60%);
  pointer-events: none;
}
.page-hero--small {
  padding-bottom: 2rem;
}
.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #FFFFFC;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.page-hero__subtitle {
  font-size: 1.1rem;
  color: #fffffc;
  max-width: 580px;
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #fffffc;
}
.breadcrumb a {
  color: #fffffc;
  text-decoration: none;
  transition: color 0.25s ease;
}
.breadcrumb a:hover {
  color: #FF7F11;
}
.breadcrumb span {
  color: #fffffc;
}
.breadcrumb span:last-child {
  color: #fffffc;
  font-weight: bold;
}

.page-content {
  padding: 4rem 0 8rem;
}
.page-content--narrow .page-content__grid {
  max-width: 800px;
  margin: 0 auto;
  display: block;
}
.page-content__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .page-content__grid {
    grid-template-columns: 1fr;
  }
}
.page-content__main h2 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.page-content__main h2:first-child {
  margin-top: 0;
}
.page-content__main h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}
.page-content__main p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.page-content__sidebar {
  position: sticky;
  top: calc(76px + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 900px) {
  .page-content__sidebar {
    position: static;
  }
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 1rem 0 1.5rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
.feature-list li svg {
  color: #FF7F11;
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-card {
  background: #000000;
  color: #FFFFFC;
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cta-card .section-eyebrow {
  color: #FF7F11;
}
.cta-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cta-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 252, 0.6);
  line-height: 1.65;
}
.cta-card .btn--primary {
  text-align: center;
}
.cta-card__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 252, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
  padding-top: 0.25rem;
}
.cta-card__phone:hover {
  color: #FF7F11;
}
.cta-card__phone svg {
  flex-shrink: 0;
}

.back-link a {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}
.back-link a:hover {
  color: #FF7F11;
}

.impressum h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.impressum h2:first-child {
  margin-top: 0;
}
.impressum p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.impressum a {
  color: #FF7F11;
  text-decoration: none;
}
.impressum a:hover {
  text-decoration: underline;
}

.hero {
  background: url("../../images/hero.jpg") center/cover no-repeat;
}
.hero__image-wrapper {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.074)), url("../../images/hero.jpg") center/cover no-repeat;
  }
}
.ueber-uns__image-placeholder {
  background: #000000;
}
.ueber-uns__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.referenzen__item {
  position: relative;
  border: none;
}
.referenzen__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.referenzen__item:hover img {
  transform: scale(1.06);
}

.referenzen__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.1rem 0.9rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer {
  background: white;
}

.footer__logo-img {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 0.6rem;
}

.page-hero--image {
  background-size: cover;
  background-position: center;
}
.page-hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.27);
  z-index: 0;
}
.page-hero--image .container {
  position: relative;
  z-index: 1;
}

.impressum__source {
  margin-top: 2rem;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(0, 0, 0, 0.4);
}

.impressum__verband {
  float: right;
  margin: 0 0 1rem 1.5rem;
  display: block;
  transition: transform 0.25s ease;
}
.impressum__verband img {
  width: 150px;
  height: auto;
  border-radius: 4px;
}
.impressum__verband:hover {
  transform: translateY(-2px);
}
@media (max-width: 560px) {
  .impressum__verband {
    float: none;
    margin: 0 0 1.5rem;
  }
}

.leistungen__card {
  padding: 0;
  overflow: hidden;
}

.leistungen__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
}
.leistungen__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.leistungen__card:hover .leistungen__media img {
  transform: scale(1.05);
}

.leistungen__body {
  padding: 2rem;
}

.galerie {
  padding: 0 0 8rem;
  background: #FFFFFC;
}
.galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .galerie__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .galerie__grid {
    grid-template-columns: 1fr;
  }
}
.galerie__item {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.galerie__item:hover img {
  transform: scale(1.06);
}

.hero-projekte {
  font-size: 1.1rem;
  color: #FF7F11;
}

.legal-list {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0 0 1rem;
}
.legal-list li {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/*# sourceMappingURL=main.css.map */
