:root {
  --color-bg: #faf9f7;
  --color-bg-alt: #f0eeea;
  --color-text: #1a1a1a;
  --color-text-muted: #5a5a5a;
  --color-accent: #0d7377;
  --color-accent-dark: #095c5f;
  --color-border: #e5e3df;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", "DM Sans", system-ui, sans-serif;
  --container: min(1440px, 100% - 1.5rem);
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --header-height: 96px;
  --header-scroll-pad: calc(var(--header-height) + 1rem);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-scroll-pad);
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.container { width: var(--container); margin-inline: auto; padding-inline: 1rem; }
.container--narrow { max-width: 1320px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background: var(--color-accent-dark); text-decoration: none; }
.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-secondary:hover { background: var(--color-accent); color: #fff; text-decoration: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.95);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.logo img {
  display: block;
  height: 66px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}
.logo:hover { text-decoration: none; color: var(--color-text); }
.logo:hover img { opacity: 0.85; }

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: var(--color-text);
  font-weight: 500;
}
.nav-list a:hover { color: var(--color-accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

@media (max-width: 768px) {
  :root { --header-height: 80px; }
  .nav, .header .btn { display: none; }
  .nav-toggle { display: flex; }
  .logo img { height: 52px; max-width: 240px; }
  .nav.is-open { display: block; position: absolute; top: var(--header-height); left: 0; right: 0; background: var(--color-bg); border-bottom: 1px solid var(--color-border); padding: 1rem; }
  .nav.is-open .nav-list { flex-direction: column; gap: 0.5rem; }
  .nav.is-open + .btn { display: inline-flex; }
}

.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(13, 115, 119, 0.88) 0%, rgba(26, 26, 26, 0.75) 45%, rgba(26, 26, 26, 0.35) 100%);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-title,
.hero-lead,
.hero-badge { color: #fff; }
.hero-lead { color: rgba(255, 255, 255, 0.92); }
.hero-badge { color: rgba(255, 255, 255, 0.95); }
.hero-title { text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); }
.hero-lead { text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15); }
.hero-badge {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.hero-lead {
  font-size: 1.125rem;
  margin: 0 0 2rem;
}
.hero-clarifier {
  margin: 0 0 1rem;
  max-width: 68ch;
  color: #fff;
  font-weight: 600;
  background: rgba(9, 92, 95, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Sekundär-Button im Hero: heller Körper + Schatten, damit er auf dem Foto lesbar bleibt */
.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.hero .btn-secondary:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
  text-decoration: none;
}

.section {
  padding: 4rem 0;
}
.section:nth-child(even) { background: var(--color-bg-alt); }
.section-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}
.section-lead {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin: 0 0 2.5rem;
  max-width: 640px;
}

@media (max-width: 768px) {
  .hero {
    padding: 2.5rem 0 3.25rem;
  }
  .hero-badge {
    margin-bottom: 0.6rem;
  }
  .hero-title {
    margin: 0 0 0.85rem;
  }
  .hero-lead {
    margin: 0 0 1.35rem;
  }
  .hero-clarifier {
    margin: 0 0 0.85rem;
    font-size: 0.94rem;
    padding: 0.55rem 0.75rem;
  }
  .section {
    padding: 2.35rem 0;
  }
  .section.section-ueber {
    padding: 1.5rem 0;
  }
  .section.section-leistungen {
    padding: 1.55rem 0;
  }
  .section-badge {
    margin-bottom: 0.32rem;
  }
  .section-title {
    margin: 0 0 0.45rem;
  }
  .section-lead {
    margin: 0 0 1.6rem;
  }
  .section-lead--center {
    margin-bottom: 2rem;
  }
  .section-leistungen .section-title--large {
    margin-bottom: 0.3rem;
  }
  .section-leistungen .section-lead--center {
    margin-bottom: 1rem;
    font-size: 0.98rem;
    line-height: 1.52;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
  }
  .section-leistungen .hoai-block {
    margin-bottom: 1rem;
  }
  .section-lead--werte {
    margin: 0 0 1.4rem;
  }
  .section-werte .section-title {
    margin-bottom: 0.5rem;
  }
  .section-plan-explainer .section-lead--center {
    margin-bottom: 1.35rem;
  }
  .hoai-block {
    margin-bottom: 2rem;
  }
  .hoai-label {
    margin: 0 0 0.85rem;
  }
  .leistung-card-body {
    padding: 1.35rem 1.25rem;
  }
  .referenzen-content {
    padding-top: 1rem;
    margin-top: 0.35rem;
  }
  .footer {
    padding: 1.5rem 0;
  }
}

.section-werte {
  position: relative;
  overflow: hidden;
}
.section-werte::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(75% 55% at 100% 0%, rgba(13, 115, 119, 0.12) 0%, rgba(13, 115, 119, 0) 70%),
    radial-gradient(65% 50% at 0% 100%, rgba(9, 92, 95, 0.1) 0%, rgba(9, 92, 95, 0) 68%);
  pointer-events: none;
}
.section-werte .container--narrow { position: relative; }
.section-werte .section-title { margin-bottom: 0.75rem; }
.section-lead--werte {
  margin: 0 0 2rem;
  max-width: 820px;
}
.werte-spotlight {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.25rem;
  margin: 0 0 1.5rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(165deg, rgba(13, 115, 119, 0.9) 0%, rgba(9, 92, 95, 0.92) 100%);
  color: #fff;
  box-shadow: 0 20px 48px rgba(9, 92, 95, 0.28);
}
.werte-spotlight__media {
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
}
.werte-spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.werte-spotlight__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.werte-spotlight__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.88;
}
.werte-spotlight__title {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1.2;
}
.werte-spotlight__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
}
.werte-pill-list {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.werte-pill-list li {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.38rem 0.65rem;
}
.werte-metrics {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.45rem;
}
.werte-metrics p {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.95);
}
.werte-metrics strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-right: 0.4rem;
}
.werte-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .werte-grid { grid-template-columns: 1fr; }
}
.wert-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
  padding: 1.75rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(13, 115, 119, 0.16);
  box-shadow: 0 8px 30px rgba(9, 92, 95, 0.1);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.wert-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(9, 92, 95, 0.14);
}
.wert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  background: rgba(13, 115, 119, 0.12);
  border-radius: 10px;
  color: var(--color-accent-dark);
}
.wert-icon svg { width: 22px; height: 22px; }
.wert-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}
.wert-card p { margin: 0; font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.55; }
.partner-band {
  margin-top: 1.6rem;
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(13, 115, 119, 0.2);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.97) 0%, rgba(241, 248, 248, 0.98) 100%);
  box-shadow:
    0 18px 42px rgba(9, 92, 95, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}
.partner-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 45% at 95% 5%, rgba(13, 115, 119, 0.12), rgba(13, 115, 119, 0)),
    radial-gradient(40% 40% at 0% 100%, rgba(9, 92, 95, 0.1), rgba(9, 92, 95, 0));
  pointer-events: none;
}
.section-ueber .partner-band {
  margin-top: 2rem;
}
.partner-band__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}
.partner-band__badge {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-dark);
}
.partner-band__intro {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  max-width: 920px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--color-text);
}
.partner-band__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(165deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border: 1px solid rgba(9, 92, 95, 0.35);
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(9, 92, 95, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.partner-band__link:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 22px rgba(9, 92, 95, 0.26);
  text-decoration: none;
}
.partner-band__link::after {
  content: "↗";
  font-size: 0.82rem;
}
.partner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(13, 115, 119, 0.14);
  border-radius: 13px;
  padding: 0.92rem 0.9rem 1rem;
  box-shadow: 0 8px 24px rgba(11, 74, 76, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.partner-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 115, 119, 0.28);
  box-shadow: 0 16px 30px rgba(11, 74, 76, 0.14);
}
.partner-card__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.95rem;
  height: 1.95rem;
  border-radius: 7px;
  background: linear-gradient(155deg, rgba(13, 115, 119, 0.2) 0%, rgba(9, 92, 95, 0.28) 100%);
  border: 1px solid rgba(13, 115, 119, 0.28);
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.partner-card__logo--image {
  min-width: 0;
  width: auto;
  height: 2.12rem;
  padding: 0.18rem 0.35rem;
  background: #fff;
  border-color: rgba(13, 115, 119, 0.22);
  box-shadow: 0 2px 10px rgba(9, 92, 95, 0.1);
}
.partner-card__logo-img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 150px;
  object-fit: contain;
}
.partner-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-text);
}
.partner-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.48;
  color: var(--color-text-muted);
  max-width: 100%;
}
.partner-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-decoration: none;
}
.partner-card__more::before {
  content: "›";
  font-size: 0.95rem;
  line-height: 1;
}
.partner-card__more:hover {
  color: var(--color-accent-dark);
  text-decoration: none;
}
@media (max-width: 980px) {
  .werte-spotlight {
    grid-template-columns: 1fr;
    padding: 0.9rem;
  }
  .werte-spotlight__media { min-height: 220px; }
  .partner-band__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .partner-band__head {
    align-items: center;
    text-align: center;
  }
  .partner-band__badge {
    text-align: center;
  }
  .partner-band__intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 36rem;
  }
}
@media (max-width: 560px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

.section-plan-explainer .container--narrow { max-width: 1320px; }
.section-plan-explainer .section-lead--center { margin-bottom: 2rem; }

.plan-stage {
  margin-bottom: 1.25rem;
}

.ratio-plan {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-border);
  background: #fff;
}

.plan-stage__inner {
  position: relative;
  max-height: min(88vh, 720px);
}

.plan-stage__media {
  position: relative;
  display: block;
  line-height: 0;
}

.plan-stage__img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

@keyframes plan-hotspot-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 2px rgba(26, 26, 26, 0.2),
      0 5px 16px rgba(13, 115, 119, 0.5);
  }
  50% {
    box-shadow:
      0 0 0 4px rgba(13, 115, 119, 0.42),
      0 8px 22px rgba(13, 115, 119, 0.58);
  }
}

.plan-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.plan-hotspot__hit {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border: 3px solid #fff;
  box-shadow:
    0 0 0 2px rgba(26, 26, 26, 0.2),
    0 5px 16px rgba(13, 115, 119, 0.5);
  transition: box-shadow 0.2s ease;
  animation: plan-hotspot-pulse 2.8s ease-in-out infinite;
}

.plan-hotspot__icon {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  pointer-events: none;
}

.plan-hotspot__icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.plan-hotspot__tooltip {
  position: absolute;
  z-index: 2;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
  background: #1a1a1a;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.plan-hotspot__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top-color: #1a1a1a;
}

.plan-hotspot:hover .plan-hotspot__hit,
.plan-hotspot:focus-visible .plan-hotspot__hit,
.plan-hotspot.is-active .plan-hotspot__hit {
  animation: none;
  background: #1a1a1a;
  border-color: #fff;
  box-shadow:
    0 0 0 2px rgba(26, 26, 26, 0.35),
    0 10px 28px rgba(0, 0, 0, 0.35);
}

.plan-hotspot:hover .plan-hotspot__tooltip,
.plan-hotspot:focus-visible .plan-hotspot__tooltip,
.plan-hotspot.is-active .plan-hotspot__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.plan-hotspot:focus-visible {
  outline: none;
}
.plan-hotspot:focus-visible .plan-hotspot__hit {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .plan-hotspot__hit {
    animation: none;
  }
}

.plan-legend {
  margin: 1.25rem auto 0;
  max-width: 720px;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  text-align: center;
}

.plan-legend__row {
  margin: 0 0 0.65rem;
}

.plan-legend__row:last-child {
  margin-bottom: 0;
}

.plan-legend strong {
  color: var(--color-text);
  font-weight: 600;
}

.plan-caption {
  margin: 1.5rem auto 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 680px;
}

@media (max-width: 640px) {
  .ratio-plan { border-radius: 16px; }
  .plan-hotspot {
    width: 50px;
    height: 50px;
  }
  .plan-hotspot__icon svg {
    width: 20px;
    height: 20px;
  }
  .plan-hotspot__tooltip {
    font-size: 0.75rem;
    white-space: normal;
    max-width: min(200px, 70vw);
    text-align: center;
  }
}

.section-leistungen .container--narrow { max-width: 1320px; }
.section-title--large {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.section-lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.hoai-block { margin-bottom: 3rem; }
.hoai-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1.25rem;
  text-align: center;
}
.hoai-block__open-btn {
  display: none;
}
@media (max-width: 768px) {
  .section-leistungen .hoai-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section-leistungen .hoai-block > .hoai-grid {
    display: none !important;
  }
  .hoai-block__open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0.15rem;
    padding: 0.7rem 1.5rem 0.7rem 1.35rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 14px rgba(13, 115, 119, 0.14);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .hoai-block__open-btn:hover {
    background: rgba(13, 115, 119, 0.09);
    box-shadow: 0 4px 20px rgba(13, 115, 119, 0.18);
  }
  .hoai-label {
    margin-bottom: 0.85rem;
  }
}
.hoai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hoai-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hoai-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 20px rgba(13, 115, 119, 0.12);
}
.hoai-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 115, 119, 0.1);
  border-radius: 10px;
  color: var(--color-accent);
}
.hoai-icon svg { width: 28px; height: 28px; }
.hoai-name {
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.35;
  hyphens: auto;
  overflow-wrap: anywhere;
}
@media (max-width: 899px) {
  .hoai-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }
  .hoai-item {
    padding: 0.85rem 0.9rem;
    gap: 0.7rem;
    align-items: flex-start;
  }
  .hoai-icon {
    width: 42px;
    height: 42px;
  }
  .hoai-icon svg {
    width: 24px;
    height: 24px;
  }
  .hoai-name {
    font-size: 0.875rem;
    line-height: 1.32;
  }
  .leistungen-meta {
    padding-top: 1.35rem;
  }
  .leistung-card-body {
    text-align: center;
  }
  .leistung-card h3 {
    text-wrap: balance;
  }
  .section-leistungen > .container--narrow > .section-badge,
  .section-leistungen > .container--narrow > .section-title {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hoai-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .hoai-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1rem;
    gap: 0.55rem;
  }
  .hoai-name {
    flex: none;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.38;
  }
  .leistung-card-body {
    padding: 0.85rem 0.55rem 0.95rem;
  }
}

.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 900px) {
  .leistungen-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 899px) {
  .leistungen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 0.7rem;
    margin-bottom: 1.75rem;
  }
}

@media (max-width: 899px) and (min-width: 769px) {
  .leistungen-grid > .leistung-card:nth-child(3) {
    grid-column: 1 / -1;
  }
  .leistungen-grid > .leistung-card:nth-child(3) .leistung-card-img {
    aspect-ratio: 8 / 3;
  }
}

@media (max-width: 768px) {
  .leistungen-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-bottom: 1rem;
  }
  .leistungen-grid > .leistung-card:nth-child(3) {
    grid-column: auto;
  }
  .section-leistungen .leistung-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 12px;
  }
  .section-leistungen .leistung-card-img {
    flex: 0 0 6.25rem;
    width: 6.25rem;
    min-width: 6.25rem;
    aspect-ratio: 1;
    align-self: center;
  }
  .section-leistungen .leistung-card-img img,
  .section-leistungen .leistung-card-img video {
    position: absolute;
    inset: 0;
  }
  .section-leistungen .leistung-card-body {
    flex: 1;
    min-width: 0;
    padding: 0.65rem 0.75rem 0.65rem 0.85rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }
  .section-leistungen .leistung-card h3 {
    font-size: 0.95rem;
    margin: 0 0 0.28rem;
    line-height: 1.25;
  }
  .section-leistungen .leistung-card p {
    font-size: 0.8125rem;
    line-height: 1.42;
  }
  .section-leistungen .leistungen-meta {
    padding-top: 0.75rem;
  }
  .section-leistungen .leistungen-objekte {
    font-size: 0.78rem;
    line-height: 1.5;
  }
}
.leistung-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.25s ease;
}
.leistung-card:hover { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08); }
.leistung-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.leistung-card-img img,
.leistung-card-img video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leistung-card-body {
  padding: 1.75rem 1.5rem;
}
.leistung-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}
.leistung-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.leistungen-meta {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.leistungen-hoai,
.leistungen-objekte {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.leistungen-objekte { margin-top: 0.5rem; }

.section-ueber .container--narrow { max-width: 1320px; }
.section-ueber .container--narrow > .section-badge,
.section-ueber .container--narrow > .section-title {
  text-align: center;
}
.section-ueber .container--narrow > .section-title.section-title--large {
  text-wrap: balance;
  max-width: min(34rem, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.35rem;
}
.ueber-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}
@media (max-width: 768px) {
  .ueber-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-top: 0;
  }
  .ueber-aside {
    order: -1;
  }
  .section-ueber .container--narrow > .section-title.section-title--large {
    margin-bottom: 0.7rem;
  }
  .section-ueber .partner-band {
    margin-top: 1.45rem;
  }
}
.ueber-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 38rem;
  margin-inline: auto;
}
.ueber-content p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  max-width: 36rem;
}
.ueber-lead { color: var(--color-text-muted); }
.ueber-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin: 1.35rem 0 1.5rem;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
}
.ueber-facts span {
  position: relative;
  padding-right: 1.5rem;
}
.ueber-facts span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
}
@media (max-width: 768px) {
  .ueber-content p {
    margin: 0 0 0.7rem;
  }
  .ueber-facts {
    margin: 0.35rem 0 1rem;
    gap: 0.5rem 1.1rem;
  }
}
.btn--small { padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.ueber-aside { min-width: 0; }
.ueber-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.ueber-img img { width: 100%; height: 100%; object-fit: cover; }

.ueber-compare {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  background: var(--color-bg-alt);
}
.ueber-compare .referenz-compare__viewport {
  aspect-ratio: 4/3;
  max-height: min(520px, 75vh);
}
.ueber-compare .referenz-compare__captions {
  display: none;
}
@media (min-width: 1100px) {
  .ueber-compare .referenz-compare__viewport {
    max-height: min(680px, 80vh);
    min-height: 520px;
  }
}

.referenzen-details {
  display: block;
}
.referenzen-summary {
  list-style: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  user-select: none;
}
.referenzen-summary::-webkit-details-marker { display: none; }
.referenzen-summary::marker { display: none; }
.referenzen-summary::-moz-list-bullet { list-style-type: none; }

.referenzen-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding: 0.25rem 0;
}
.referenzen-summary:focus {
  outline: none;
}
.referenzen-summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 6px;
  border-radius: 6px;
}
.referenzen-summary .section-badge { margin: 0; }
.referenzen-summary .section-title { margin: 0; }
.referenzen-summary-hint {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  position: relative;
  padding: 0.7rem 2.35rem 0.7rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(13, 115, 119, 0.14);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.referenzen-summary:hover .referenzen-summary-hint {
  background: rgba(13, 115, 119, 0.09);
  box-shadow: 0 4px 20px rgba(13, 115, 119, 0.18);
}
.referenzen-summary-hint::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}
.referenzen-details[open] .referenzen-summary-hint::after {
  transform: translateY(-35%) rotate(-135deg);
}
.referenzen-details[open] .referenzen-summary-hint {
  color: #fff;
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 4px 18px rgba(13, 115, 119, 0.35);
}
.referenzen-details[open] .referenzen-summary:hover .referenzen-summary-hint {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}
.referenzen-hint-close { display: none; }
.referenzen-details[open] .referenzen-hint-open { display: none; }
.referenzen-details[open] .referenzen-hint-close { display: inline; }

@media (max-width: 900px) {
  .referenzen-summary {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    padding: 0.35rem 0 1rem;
  }
  .referenzen-summary .section-badge {
    margin: 0;
  }
  .referenzen-summary .section-title {
    margin: 0 0 0.15rem;
    text-wrap: balance;
  }
  .referenzen-summary-hint {
    margin: 0.85rem 0 0;
    margin-left: 0;
    align-self: center;
    justify-content: center;
    width: 100%;
    max-width: min(22rem, 100%);
    box-sizing: border-box;
    padding-left: 1.5rem;
    padding-right: 2.35rem;
  }
}

.referenzen-content {
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--color-border);
}
.referenzen-content > .section-lead {
  margin-bottom: 1.75rem;
  max-width: 52rem;
}

.referenzen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem 1.25rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .referenzen-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem 1.35rem;
  }
}
@media (max-width: 640px) {
  .referenzen-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.referenz-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.referenz-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  border-color: rgba(13, 115, 119, 0.18);
}

.referenz-brief {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.referenz-detail { display: none; }
.referenz-modal.is-open .referenz-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.referenz-modal.is-open.referenz-detail--in .referenz-detail {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .referenz-modal.is-open .referenz-detail {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.referenz-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right))
    max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
}
.referenz-modal[hidden] {
  display: none !important;
}
.referenz-modal__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(10, 12, 14, 0.62);
  backdrop-filter: blur(5px);
  cursor: pointer;
}
.referenz-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(1240px, calc(100vw - 1.5rem));
  max-height: min(94vh, 100%);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.referenz-modal.is-open .referenz-modal__inner {
  --referenz-modal-outline: var(--color-border);
  position: relative;
  width: 100%;
  border-radius: 14px;
  padding-top: 4px;
  border: 1px solid var(--referenz-modal-outline);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 22px 50px rgba(0, 0, 0, 0.12);
}
.referenz-modal.is-open .referenz-modal__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 13px 13px 0 0;
  background: linear-gradient(
    90deg,
    var(--color-accent-dark) 0%,
    var(--color-accent) 38%,
    #3cb0b4 62%,
    var(--color-accent) 100%
  );
  z-index: 2;
  pointer-events: none;
}

@keyframes referenz-stagger-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 960px) {
  .referenz-modal.is-open .referenz-detail {
    grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr);
  }
}

.referenz-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-alt);
  flex-shrink: 0;
}
.referenz-img .referenz-video-crop {
  position: absolute;
  inset: 0;
  height: auto;
  min-height: 100%;
}
.referenz-img img,
.referenz-img video { width: 100%; height: 100%; object-fit: cover; }
.referenz-meta {
  padding: 1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  flex: 1;
}
.referenz-year {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  order: 0;
}
.referenz-year:empty {
  display: none;
}
.referenz-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: var(--color-text);
  order: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-clamp: 2;
}
.referenz-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  order: 2;
  margin-top: auto;
}

.referenz-detail {
  text-align: left;
}
.referenz-modal.is-open .referenz-detail-media {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(180deg, #1c2223 0%, #121617 55%, #0e1213 100%);
  min-height: 0;
  min-width: 0;
}
.referenz-modal.is-open .referenz-detail-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.22) 0%,
    transparent 36%,
    transparent 64%,
    rgba(0, 0, 0, 0.3) 100%
  );
}
.referenz-modal.is-open .referenz-compare__viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.22) 0%,
    transparent 36%,
    transparent 64%,
    rgba(0, 0, 0, 0.3) 100%
  );
}
.referenz-detail-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-alt);
}
.referenz-modal.is-open .referenz-detail-feature {
  aspect-ratio: 16/10;
  max-height: min(520px, 72vh);
  border-radius: 0;
}
.referenz-detail-feature {
  position: relative;
  aspect-ratio: 16/9;
  max-height: min(420px, 70vh);
  overflow: hidden;
  background: #1a1a1a;
}
.referenz-detail-feature > img,
.referenz-detail-feature > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.referenz-detail-feature > .referenz-video-crop {
  position: absolute;
  inset: 0;
}
.referenz-detail-img {
  aspect-ratio: 16/9;
  max-height: 380px;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.referenz-detail-img img,
.referenz-detail-img video { width: 100%; height: 100%; object-fit: cover; }

.referenz-video-crop {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
}
.referenz-video-crop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--rvp-x, 48%) var(--rvp-y, 52%);
  transform: scale(var(--rv-zoom, 1.32));
  transform-origin: var(--rvp-x, 48%) var(--rvp-y, 52%);
}

.referenz-compare {
  --split: 50%;
  background: #1a1a1a;
}
.referenz-modal.is-open .referenz-compare__viewport {
  max-height: min(520px, 72vh);
  aspect-ratio: 16/10;
}
.referenz-compare__viewport {
  position: relative;
  aspect-ratio: 16/9;
  max-height: min(420px, 70vh);
  overflow: hidden;
  touch-action: none;
}
.referenz-compare__under,
.referenz-compare__over {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.referenz-compare__over {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  z-index: 1;
}
.referenz-compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  transform: translateX(-50%);
  width: 2px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
  z-index: 2;
  pointer-events: none;
}
.referenz-compare__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}
.referenz-compare__handle::before {
  content: "‹  ›";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  z-index: 1;
  color: #4a4a4a;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@keyframes compare-hint-pulse {
  0%, 100% { box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22); }
  50% { box-shadow: 0 2px 16px rgba(13, 115, 119, 0.22); }
}
.referenz-compare.is-hinting .referenz-compare__handle::after {
  animation: compare-hint-pulse 1.8s ease-in-out 1;
}
@media (prefers-reduced-motion: reduce) {
  .referenz-compare.is-hinting .referenz-compare__handle::after {
    animation: none;
  }
}
.referenz-compare__range-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: 0;
  cursor: ew-resize;
}
.referenz-compare__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}
.referenz-compare__captions {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.referenz-modal.is-open .referenz-gallery {
  padding: 0.85rem 1rem 1.15rem;
  gap: 0.65rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.referenz-modal.is-open .referenz-gallery::before {
  content: "Weitere Ansichten";
  grid-column: 1 / -1;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.48);
  margin: 0 0 0.15rem;
  padding-left: 0.05rem;
}
.referenz-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
  padding: 0 0.75rem 0.75rem;
}
.referenz-gallery a,
.referenz-gallery__link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a1f1f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.referenz-gallery__link {
  cursor: zoom-in;
}
.referenz-modal.is-open .referenz-gallery a:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  border-color: rgba(13, 115, 119, 0.45);
}
.referenz-gallery a:hover { text-decoration: none; box-shadow: var(--shadow); }
.referenz-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.referenz-downloads {
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
}
.referenz-downloads a {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 115, 119, 0.35);
  background: rgba(13, 115, 119, 0.06);
  color: var(--color-accent-dark);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.referenz-downloads a::before {
  content: "";
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  background: no-repeat center / contain;
  opacity: 0.88;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23095c5f' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z'/%3E%3C/svg%3E");
}
.referenz-downloads a:hover {
  background: rgba(13, 115, 119, 0.12);
  border-color: var(--color-accent);
  text-decoration: none;
}
.referenz-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.referenz-modal.is-open .referenz-detail-body {
  position: relative;
  padding: 2.6rem 1.85rem 2.15rem;
  background:
    linear-gradient(165deg, rgba(13, 115, 119, 0.11) 0%, rgba(250, 249, 247, 0.98) 42%, #fff 100%);
  border-top: 1px solid var(--referenz-modal-outline, var(--color-border));
  display: flex;
  flex-direction: column;
  min-height: 0;
}
@media (min-width: 960px) {
  .referenz-modal.is-open .referenz-detail-body {
    border-top: none;
    border-left: 1px solid var(--referenz-modal-outline, var(--color-border));
    padding-left: 1.85rem;
    box-shadow: none;
  }
}
.referenz-detail-body { padding: 1.75rem 2rem; }
.referenz-modal.is-open .referenz-detail-body::before {
  content: "Projektdetails";
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin: 0 0 0.5rem;
  padding-right: 5rem;
}
.referenz-modal.is-open .referenz-detail-title {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 0.65rem;
  padding-right: 5.5rem;
}
.referenz-detail-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--color-text);
}
.referenz-modal.is-open .referenz-detail-sub {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-accent-dark);
  margin: 0 0 1rem;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  background: rgba(13, 115, 119, 0.12);
  border: 1px solid rgba(13, 115, 119, 0.2);
}
.referenz-detail-sub {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0 0 0.5rem;
}
.referenz-modal.is-open .referenz-detail-desc {
  font-size: 0.9375rem;
  line-height: 1.68;
  margin: 0 0 1.35rem;
  color: var(--color-text);
}
.referenz-detail-desc {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}
.referenz-detail-year {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 1.25rem;
}
.referenz-detail-list {
  margin: 0 0 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.9375rem;
  display: grid;
  gap: 0.35rem 0;
}
.referenz-detail-list dt {
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0;
  grid-column: 1;
}
.referenz-detail-list dd {
  margin: 0;
  grid-column: 2;
  color: var(--color-text);
}
@media (min-width: 500px) {
  .referenz-detail-list { grid-template-columns: auto 1fr; gap: 0.35rem 1.5rem; }
  .referenz-detail-list dd { grid-column: 2; }
}
.referenz-modal.is-open .referenz-close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  background: #fff;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 12px rgba(13, 115, 119, 0.12);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.referenz-modal.is-open .referenz-close:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  text-decoration: none;
}
.referenz-modal.is-open .referenz-close::after {
  content: " ×";
  font-weight: 700;
  font-size: 1.05em;
  opacity: 0.9;
}

@media (max-width: 959px) {
  .referenz-modal.is-open .referenz-detail {
    position: relative;
  }
  .referenz-modal.is-open .referenz-detail-body {
    position: static;
  }
  .referenz-modal.is-open .referenz-close {
    top: 0.625rem;
    right: 0.75rem;
    z-index: 6;
  }
  .referenz-modal.is-open .referenz-detail-body::before,
  .referenz-modal.is-open .referenz-detail-title {
    padding-right: 0;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .referenz-modal.is-open.referenz-detail--in .referenz-detail-body > *:not(.referenz-close) {
    animation: referenz-stagger-in 0.48s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }
  .referenz-modal.is-open.referenz-detail--in .referenz-detail-body > *:not(.referenz-close):nth-child(1) {
    animation-delay: 0.04s;
  }
  .referenz-modal.is-open.referenz-detail--in .referenz-detail-body > *:not(.referenz-close):nth-child(2) {
    animation-delay: 0.09s;
  }
  .referenz-modal.is-open.referenz-detail--in .referenz-detail-body > *:not(.referenz-close):nth-child(3) {
    animation-delay: 0.14s;
  }
  .referenz-modal.is-open.referenz-detail--in .referenz-detail-body > *:not(.referenz-close):nth-child(4) {
    animation-delay: 0.19s;
  }
  .referenz-modal.is-open.referenz-detail--in .referenz-detail-body > *:not(.referenz-close):nth-child(5) {
    animation-delay: 0.24s;
  }
  .referenz-modal.is-open.referenz-detail--in .referenz-detail-body > *:not(.referenz-close):nth-child(6) {
    animation-delay: 0.29s;
  }
  .referenz-modal.is-open.referenz-detail--in .referenz-detail-body > *:not(.referenz-close):nth-child(7) {
    animation-delay: 0.34s;
  }
}
.referenz-close {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0;
}
.referenz-close:hover { text-decoration: underline; }
.referenzen-cta {
  text-align: center;
  margin: 2rem 0 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}
.referenzen-cta a { font-weight: 500; }

body.referenz-modal-open,
body.werte-modal-open,
body.hoai-modal-open {
  overflow: hidden;
}

.werte-modal {
  z-index: 9510;
}
.werte-modal.is-open .referenzen-content {
  border-top: none;
  margin-top: 0;
  padding: 3.15rem 1.15rem 1.5rem;
  max-width: none;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.werte-modal.is-open.werte-modal--in .referenzen-content {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .werte-modal.is-open .referenzen-content {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.werte-modal.is-open .werte-modal__inner {
  background: var(--color-bg-alt);
}
.werte-modal.is-open .werte-spotlight,
.werte-modal.is-open .werte-grid {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.hoai-modal {
  z-index: 9520;
}
.hoai-modal.is-open .hoai-modal__inner {
  background: var(--color-bg-alt);
}
.hoai-modal__intro {
  margin: 0;
  padding: 3.1rem 1rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}
.hoai-modal.is-open .hoai-modal__intro,
.hoai-modal.is-open .hoai-grid {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.42s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hoai-modal.is-open.hoai-modal--in .hoai-modal__intro,
.hoai-modal.is-open.hoai-modal--in .hoai-grid {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .hoai-modal.is-open .hoai-modal__intro,
  .hoai-modal.is-open .hoai-grid {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.hoai-modal.is-open .hoai-grid {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  padding: 0 1rem 1.35rem;
  margin: 0;
}
.hoai-modal.is-open .hoai-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.95rem;
  gap: 0.55rem;
}
.hoai-modal.is-open .hoai-name {
  flex: none;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.38;
}
.hoai-modal.is-open .hoai-icon {
  width: 44px;
  height: 44px;
}
.hoai-modal.is-open .hoai-icon svg {
  width: 24px;
  height: 24px;
}

body.referenz-lightbox-open {
  overflow: hidden;
}
.referenz-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}
.referenz-lightbox[hidden] {
  display: none !important;
}
.referenz-lightbox__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(10, 12, 14, 0.88);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.referenz-lightbox__panel {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(1120px, 100%);
  max-height: min(90vh, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.referenz-lightbox__figure {
  margin: 0;
  padding: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.referenz-lightbox__img-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}
.referenz-lightbox__img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(72vh, 820px);
  object-fit: contain;
  border-radius: 0;
  touch-action: pan-y pinch-zoom;
  user-select: none;
}
.referenz-lightbox__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  max-width: 42rem;
  padding: 0 0.5rem;
}
.referenz-lightbox__counter {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}
.referenz-lightbox__alt {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
.referenz-lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.referenz-lightbox__close:hover {
  background: rgba(0, 0, 0, 0.62);
}
.referenz-lightbox__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.referenz-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.referenz-lightbox__nav:hover {
  background: rgba(13, 115, 119, 0.55);
  border-color: rgba(255, 255, 255, 0.55);
}
.referenz-lightbox__nav:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.referenz-lightbox__nav--prev {
  left: 0;
}
.referenz-lightbox__nav--next {
  right: 0;
}
.referenz-lightbox__nav[hidden] {
  display: none !important;
}
@media (max-width: 640px) {
  .referenz-lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }
  .referenz-lightbox__nav--prev {
    left: -0.25rem;
  }
  .referenz-lightbox__nav--next {
    right: -0.25rem;
  }
  .referenz-lightbox__img {
    max-height: min(62vh, 560px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .referenz-lightbox__close,
  .referenz-lightbox__nav {
    transition: none;
  }
}

.kontakt-grid {
  display: block;
}
.kontakt-main {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
  gap: 1.5rem;
  align-items: start;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}
.kontakt-form-card { order: 1; }
.kontakt-info { order: 2; }
.kontakt-form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: var(--shadow);
}
.kontakt-form-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: var(--color-text);
}
.kontakt-form { display: flex; flex-direction: column; gap: 1rem; }
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
}
.form-row { margin: 0; }
.form-status {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.4;
  border: 1px solid transparent;
}
.form-status--ok {
  background: #ecf8f0;
  border-color: #a8dfbc;
  color: #1e5f36;
}
.form-status--error {
  background: #fff3f3;
  border-color: #f1b3b3;
  color: #8c1f1f;
}
.captcha-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}
.captcha-question {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}
.captcha-refresh {
  border: 1px solid var(--color-accent);
  background: transparent;
  color: var(--color-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.28rem 0.72rem;
  cursor: pointer;
}
.captcha-refresh:hover {
  background: rgba(13, 115, 119, 0.08);
}
.captcha-hint {
  margin: 0.45rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.form-row--2 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 500px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.form-field--check input[type="checkbox"] {
  margin: 0.3rem 0 0;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}
.form-check-label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  cursor: pointer;
}
.form-check-label a { font-weight: 500; }
.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
}
.form-required { color: var(--color-accent-dark); font-weight: 700; }
.form-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input::placeholder { color: #999; }
.form-input:hover { border-color: #ccc; }
.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.2);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-actions { margin-top: 0.5rem; }
.form-actions .btn { width: 100%; }
@media (min-width: 480px) {
  .form-actions .btn { width: auto; min-width: 200px; }
}
@media (max-width: 768px) {
  .kontakt-grid { display: block; }
  .kontakt-main {
    grid-template-columns: 1fr;
  }
  .kontakt-form-card { order: 2; }
  .kontakt-info { order: 1; }
  .kontakt-main { width: 100%; }
}
.kontakt-info {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.05);
}
.kontakt-info p { margin: 0 0 0.75rem; }
.kontakt-info a { font-weight: 500; }
.kontakt-firma { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; }
.kontakt-zeiten { font-size: 0.875rem; color: var(--color-text-muted); margin-top: 1rem; }
.kontakt-info .btn { margin-top: 1rem; }
@media (max-width: 900px) {
  .kontakt-main {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
  .kontakt-form-card { order: 2; }
  .kontakt-info { order: 1; }
}
.kontakt-map {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}
@media (min-width: 769px) {
  .kontakt-map { min-height: 100%; }
  .kontakt-map iframe { min-height: 520px; }
}
.kontakt-map iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  height: 100%;
}

.footer {
  padding: 2rem 0;
  background: var(--color-text);
  color: #bbb;
  font-size: 0.875rem;
}
.footer a { color: #ddd; }
.footer a:hover { color: #fff; text-decoration: none; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-brand .logo-img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.footer-brand p { margin: 0.5rem 0 0; color: #888; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-meta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-copy { margin: 0; color: #666; }
.footer-powered {
  margin: 0;
  font-size: 0.78rem;
  color: #707070;
}
.footer-powered a {
  color: #22b8e0;
  font-weight: 600;
}
.footer-powered a:hover {
  color: #22b8e0;
  opacity: 0.9;
}
@media (max-width: 640px) {
  .footer-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
