:root {
  --header-offset: 128px;
  --bg: #f6f2eb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --orange: #f07f19;
  --wasserblau: #005566;
  --antrazith: #2a3133;
  --text: var(--antrazith);
  --line: rgba(42, 49, 51, 0.12);
  --accent: var(--orange);
  --accent-soft: rgba(240, 127, 25, 0.12);
  --brand-blue: var(--wasserblau);
  --brand-charcoal: var(--antrazith);
  --hero-overlay: linear-gradient(90deg, rgba(247, 241, 231, 0.98) 0%, rgba(244, 235, 223, 0.92) 72%, rgba(237, 226, 211, 0.5) 100%);
  --hero-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 80% 20%, rgba(120, 154, 190, 0.55), transparent 24%),
    linear-gradient(140deg, #d8d0c6 5%, #efe8df 24%, #c8d3de 66%, #91a4bb 100%);
  --services-bg: #f7f2ec;
  --services-card: #ffffff;
  --services-card-border: rgba(42, 49, 51, 0.1);
  --services-text: rgba(42, 49, 51, 0.74);
  --services-title: #1e2527;
  --services-link: var(--orange);
  --references-bg:
    radial-gradient(circle at top center, rgba(240, 127, 25, 0.12), transparent 32%),
    linear-gradient(180deg, #f4eee6 0%, #ece4d9 100%);
  --references-frame: rgba(255, 255, 255, 0.74);
  --references-border: rgba(42, 49, 51, 0.1);
  --references-title: #1d2325;
  --references-text: rgba(42, 49, 51, 0.72);
  --references-shadow: 0 28px 62px -44px rgba(42, 49, 51, 0.48);
  --references-link: var(--orange);
  --switch-shell: transparent;
  --switch-border: rgba(42, 49, 51, 0.16);
  --switch-knob: var(--orange);
  --switch-knob-shadow: rgba(240, 127, 25, 0.35);
  --switch-icon-passive: #8f8780;
  --switch-icon-active: #ffffff;
  --dark: #000000;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 20px);
}

main section[id],
footer[id] {
  scroll-margin-top: calc(var(--header-offset) + 20px);
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.review-modal-open {
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .ausstellung-stage-slider:hover img {
    transform: scale(1.04);
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 127, 25, 0.08), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(0, 85, 102, 0.08), transparent 24%);
  opacity: 0.8;
  animation: ambientShift 14s ease-in-out infinite alternate;
}

.page-transition-curtain {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 24%),
    radial-gradient(circle at 78% 16%, rgba(0, 85, 102, 0.34), transparent 30%),
    radial-gradient(circle at 50% 58%, rgba(240, 127, 25, 0.28), transparent 34%),
    linear-gradient(135deg, #f1ab58 0%, #f07f19 34%, #005566 68%, #2a3133 100%);
  opacity: 0;
  clip-path: circle(0% at 50% 50%);
  transform: scale(1.04);
  transition:
    clip-path 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(1) brightness(1);
}

.page-transition-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(92px, 12vw, 148px);
  height: clamp(92px, 12vw, 148px);
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 22px 44px -28px rgba(22, 31, 35, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 0.28s ease,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.page-transition-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(54, 32, 16, 0.14));
}

body.page-transition-active {
  overflow: hidden;
}

body.page-transition-active .page-transition-curtain {
  opacity: 1;
  clip-path: circle(42% at 50% 50%);
  transform: scale(1);
}

body.page-transition-active .page-transition-brand {
  opacity: 1;
  transform: scale(1);
}

body.page-transition-phase-2 .page-transition-curtain {
  clip-path: circle(140% at 50% 50%);
  transform: scale(1);
  filter: saturate(1.04) brightness(0.98);
}

body.page-transition-phase-2 .page-transition-brand {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 28px 56px -36px rgba(20, 31, 35, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: scale(1.14);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--antrazith);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 16px 32px -22px rgba(0, 0, 0, 0.45);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible + .slider,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

main[tabindex="-1"]:focus {
  outline: none;
}

.container {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity, filter;
}

.reveal-up {
  transform: translateY(38px);
}

.reveal-down {
  transform: translateY(-28px);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
}

.topbar {
  background: var(--orange);
  border-bottom: none;
  backdrop-filter: blur(10px);
  color: #ffffff;
}

.topbar-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
}

.topbar-left,
.navbar-inner,
.nav-links,
.nav-controls,
.hero-actions,
.contact-link,
.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-left {
  gap: 24px;
}

.contact-link,
.topbar-right {
  gap: 10px;
  color: #ffffff;
  line-height: 1.1;
  white-space: nowrap;
}

.topbar-right {
  margin-left: auto;
  gap: 12px;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 7px;
}

.topbar-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  line-height: 1;
  width: 18px;
  height: 18px;
}

.topbar-social-icon {
  width: 18px;
  height: 18px;
}

.topbar-social-icon-instagram {
  width: 17px;
  height: 17px;
  transform: translateY(1px);
}

.topbar-social-icon-facebook {
  width: 17px;
  height: 17px;
  transform: translateY(1px);
}

.contact-location {
  gap: 6px;
}

.contact-location .contact-icon {
  width: 18px;
  height: 18px;
  transform: translateY(1px);
}

.contact-text-mobile {
  display: none;
}

.contact-icon {
  width: 17px;
  height: 17px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transform: none;
}

.navbar {
  background: var(--surface-strong);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px -26px rgba(42, 49, 51, 0.22);
}

main {
  padding-top: var(--header-offset);
}

.navbar-inner {
  min-height: 76px;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px 8px 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px -28px rgba(42, 49, 51, 0.38);
  order: 1;
}

.logo img {
  width: 240px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  flex: 1;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  order: 2;
}

.nav-controls {
  gap: 12px;
  margin-left: auto;
  order: 3;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--antrazith);
  border-radius: 10px;
  font-size: 0.98rem;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: var(--accent-soft);
}

.switch {
  position: relative;
  display: inline-block;
  width: 66px;
  height: 36px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(42, 49, 51, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 12px 24px -20px rgba(42, 49, 51, 0.3);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-charcoal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px -22px rgba(42, 49, 51, 0.36);
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--switch-shell);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  border: 1px solid var(--switch-border);
  box-shadow: none;
}

.slider::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: 1;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: var(--switch-knob);
  transition: transform 0.28s ease;
  box-shadow: 0 8px 16px -10px var(--switch-knob-shadow);
}

.switch input:checked + .slider::before {
  transform: translateX(30px);
}

.switch-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  transition: opacity 0.28s ease, background-image 0.28s ease;
}

.switch-light {
  left: 11px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2.5M12 19.5V22M4.93 4.93l1.77 1.77M17.3 17.3l1.77 1.77M2 12h2.5M19.5 12H22M4.93 19.07l1.77-1.77M17.3 6.7l1.77-1.77'/%3E%3C/svg%3E");
}

.switch-dark {
  right: 11px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238f8780' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12.79A9 9 0 0 1 11.21 3a7 7 0 1 0 9.79 9.79Z'/%3E%3C/svg%3E");
}

.switch input:not(:checked) + .slider .switch-light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2.5M12 19.5V22M4.93 4.93l1.77 1.77M17.3 17.3l1.77 1.77M2 12h2.5M19.5 12H22M4.93 19.07l1.77-1.77M17.3 6.7l1.77-1.77'/%3E%3C/svg%3E");
}

.switch input:not(:checked) + .slider .switch-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238f8780' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12.79A9 9 0 0 1 11.21 3a7 7 0 1 0 9.79 9.79Z'/%3E%3C/svg%3E");
}

.switch input:checked + .slider .switch-light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238f8780' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2.5M12 19.5V22M4.93 4.93l1.77 1.77M17.3 17.3l1.77 1.77M2 12h2.5M19.5 12H22M4.93 19.07l1.77-1.77M17.3 6.7l1.77-1.77'/%3E%3C/svg%3E");
}

.switch input:checked + .slider .switch-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12.79A9 9 0 0 1 11.21 3a7 7 0 1 0 9.79 9.79Z'/%3E%3C/svg%3E");
}

.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22)),
    var(--hero-image);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroImageIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  animation: overlayFadeIn 1.2s ease forwards;
}

.hero-shell {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 78px 0;
  max-width: 580px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 10px 16px;
  border: 1px solid rgba(245, 123, 23, 0.35);
  border-radius: 12px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.headline-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  white-space: nowrap;
  font-family: inherit;
  font-weight: 700;
  color: var(--text);
}

.headline-id,
.subheadline-id {
  color: var(--accent);
  display: inline-block;
}

.headline-brand {
  color: var(--brand-blue);
}

.hero h1.subheadline {
  margin-left: 3.75em;
}

.description {
  margin: 16px 0 0;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--antrazith);
}

.hero-actions {
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.bewertungen-hero {
  position: relative;
  min-height: calc(100vh - var(--header-offset));
  display: flex;
  align-items: center;
  padding: 72px 0 84px;
  background:
    linear-gradient(120deg, rgba(247, 241, 231, 0.9), rgba(247, 241, 231, 0.58)),
    url("assets/bg.jpg") center / cover;
  overflow: hidden;
}

.bewertungen-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(246, 242, 235, 0), rgba(246, 242, 235, 0.82));
}

.bewertungen-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 42%, rgba(240, 127, 25, 0.12), transparent 18%),
    radial-gradient(circle at 78% 36%, rgba(0, 85, 102, 0.12), transparent 22%);
  opacity: 0.72;
  mix-blend-mode: multiply;
  animation: bewertungenAmbient 16s ease-in-out infinite alternate;
}

.bewertungen-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: 48px;
  text-align: left;
}

.bewertungen-copy {
  max-width: 760px;
  margin: 0;
}

.bewertungen-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: eyebrowPulse 3.8s ease-in-out infinite;
}

.bewertungen-copy h1 {
  margin: 0;
  color: var(--services-title);
  font-size: clamp(2.45rem, 5vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.bewertungen-copy p {
  margin: 20px 0 0;
  max-width: 560px;
  color: var(--services-text);
  font-size: 1.1rem;
  line-height: 1.6;
}

.bewertungen-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.bewertungen-option {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(42, 49, 51, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  transform-origin: center;
  animation: reviewCardIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.bewertungen-option:nth-child(1) {
  animation-delay: 0.12s;
}

.bewertungen-option:nth-child(2) {
  animation-delay: 0.22s;
}

.bewertungen-option:nth-child(3) {
  animation-delay: 0.32s;
}

.bewertungen-option::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.72) 42%, transparent 62%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.3s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.bewertungen-option::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--review-glow-x, 20%) var(--review-glow-y, 50%), rgba(240, 127, 25, 0.18), transparent 34%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.bewertungen-option:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(240, 127, 25, 0.35);
  box-shadow:
    0 24px 48px -34px rgba(42, 49, 51, 0.46),
    0 0 0 1px rgba(240, 127, 25, 0.05);
}

.bewertungen-option.is-pressed {
  transform: translateY(-2px) scale(0.992);
}

.bewertungen-option:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.bewertungen-option:hover::after {
  opacity: 1;
}

.bewertungen-option.is-launching {
  pointer-events: none;
  transform: translateY(-4px) scale(0.985);
  border-color: rgba(240, 127, 25, 0.44);
}

.bewertungen-option.is-launching .bewertungen-option-icon {
  animation: launchIconPulse 0.62s ease-in-out infinite alternate;
}

.bewertungen-option.is-launching strong,
.bewertungen-option.is-launching small {
  animation: fadeLabelOut 0.28s ease forwards;
}

.bewertungen-option-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  color: #ffffff;
  background: var(--accent);
  box-shadow:
    0 14px 28px -20px rgba(240, 127, 25, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.3s ease,
    box-shadow 0.3s ease;
}

.bewertungen-option:hover .bewertungen-option-icon {
  transform: translateY(-2px) rotate(-4deg) scale(1.08);
  border-radius: 18px;
  box-shadow:
    0 20px 34px -22px rgba(240, 127, 25, 0.92),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.bewertungen-option-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.bewertungen-option:hover .bewertungen-option-icon svg {
  animation: reviewIconPop 0.64s cubic-bezier(0.22, 1, 0.36, 1);
}

.bewertungen-option-icon .brand-icon {
  fill: currentColor;
  stroke: none;
}

.bewertungen-option-icon .brand-icon-google {
  width: 28px;
  height: 28px;
}

.bewertungen-option-icon .brand-icon-apple {
  width: 27px;
  height: 27px;
  transform: translateY(-1px);
}

.bewertungen-option strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--services-title);
  font-size: 1.18rem;
  text-align: left;
}

.recommendation-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.recommendation-badge[hidden] {
  display: none;
}

.bewertungen-option small {
  display: block;
  margin-top: 6px;
  color: var(--services-text);
  font-size: 0.96rem;
  line-height: 1.45;
  text-align: left;
}

.review-info-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: auto;
  min-height: 30px;
  margin-top: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.22s ease;
}

.review-info-label {
  position: relative;
  z-index: 1;
}

.review-info-icon,
.review-modal-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(240, 127, 25, 0.12);
  transform-origin: center;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.18s ease;
}

.review-info-icon svg,
.review-modal-action-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-info-button:hover {
  color: #d96807;
  transform: translateX(1px);
}

.review-info-button:hover .review-info-icon,
.review-modal-action:hover .review-modal-action-icon {
  background: rgba(240, 127, 25, 0.18);
  box-shadow: 0 10px 18px -14px rgba(139, 88, 33, 0.68);
  transform: translateX(4px);
}

.review-info-button:hover .review-info-icon svg,
.review-modal-action:hover .review-modal-action-icon svg {
  transform: translateX(1px);
}

.review-modal[hidden] {
  display: none;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 21, 0.58);
  backdrop-filter: blur(8px);
  animation: modalBackdropIn 0.24s ease both;
}

.review-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 28px;
  border: 1px solid rgba(42, 49, 51, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 80px -44px rgba(0, 0, 0, 0.48);
  transform-origin: center;
  animation: modalDialogIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.review-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(42, 49, 51, 0.08);
  color: var(--antrazith);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.review-modal-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-modal-dialog h2 {
  margin: 0;
  color: var(--services-title);
  font-size: 1.8rem;
  line-height: 1.15;
}

.review-modal-dialog p {
  margin: 12px 0 0;
  color: var(--services-text);
  line-height: 1.6;
}

.review-modal-dialog ol {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--services-text);
  line-height: 1.55;
}

.review-modal-dialog li + li {
  margin-top: 6px;
}

.review-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.review-modal-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}

.review-modal-action .review-modal-action-icon {
  background: rgba(255, 255, 255, 0.16);
}

.review-modal-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -22px rgba(240, 127, 25, 0.9);
}

.review-modal-action:hover .review-modal-action-icon {
  background: rgba(255, 255, 255, 0.22);
}

.review-modal-action.is-launching {
  pointer-events: none;
  animation: launchButtonPulse 0.62s ease-in-out infinite alternate;
}

.review-info-button.is-launching {
  pointer-events: none;
}

.review-modal-action.is-launching .review-modal-action-icon,
.review-info-button.is-launching .review-info-icon {
  opacity: 0;
  transform: scale(0.86);
}

.review-modal-action.is-launching .review-modal-action-label,
.review-info-button.is-launching .review-info-label {
  animation: fadeLabelOut 0.22s ease forwards;
}

.review-modal-action-secondary {
  border: 1px solid rgba(240, 127, 25, 0.26);
  background: rgba(240, 127, 25, 0.1);
  color: var(--accent);
}

.review-modal-action-secondary .review-modal-action-icon {
  background: rgba(240, 127, 25, 0.12);
}

.review-modal-action-secondary:hover .review-modal-action-icon {
  background: rgba(240, 127, 25, 0.18);
}

.services-section {
  position: relative;
  padding: 112px 0 116px;
  background:
    radial-gradient(circle at top center, rgba(240, 127, 25, 0.08), transparent 30%),
    var(--services-bg);
}

.services-shell {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.services-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.services-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--services-link);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-header h2 {
  margin: 0;
  color: var(--services-title);
  font-size: clamp(2.4rem, 4vw, 4.05rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.services-header p {
  margin: 20px auto 0;
  max-width: 720px;
  color: var(--services-text);
  font-size: 1.1rem;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--services-card-border);
  border-radius: 18px;
  background: var(--services-card);
  box-shadow: 0 22px 48px -38px rgba(42, 49, 51, 0.4);
}

.service-media {
  overflow: hidden;
  height: 238px;
  background: linear-gradient(135deg, #ece7df, #f8f4ee);
}

.service-media-visual {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.45s ease;
  will-change: transform;
}

.service-card:hover .service-media-visual {
  transform: scale(1.05);
}

.service-media-door {
  background:
    linear-gradient(180deg, rgba(40, 46, 49, 0.08), rgba(40, 46, 49, 0.16)),
    url("assets/haustueren.jpg"),
    linear-gradient(135deg, #dedad3, #f5f1ea);
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, contain, cover;
}

.service-media-window {
  background:
    linear-gradient(180deg, rgba(40, 46, 49, 0.08), rgba(40, 46, 49, 0.16)),
    url("assets/fenster.jpg"),
    linear-gradient(135deg, #e6e1d8, #f7f3ed);
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, contain, cover;
}

.service-media-interior {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.14)),
    url("assets/innenausbau.jpg"),
    linear-gradient(135deg, #d4d2cd, #f0ebe4);
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, contain, cover;
}

.service-media-shutter {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.14)),
    url("assets/rolllaeden.jpg"),
    linear-gradient(135deg, #d4d2cd, #f0ebe4);
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, cover, cover;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 24px 24px;
}

.service-card h3 {
  margin: 0;
  color: var(--services-title);
  font-size: 1.15rem;
  line-height: 1.2;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--services-text);
  font-size: 0.98rem;
  line-height: 1.55;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--services-link);
  font-size: 0.98rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.service-link-label {
  position: relative;
  z-index: 1;
}

.service-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(240, 127, 25, 0.12);
  transform-origin: center;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.service-link-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-link:hover {
  color: #d96807;
}

.service-link:hover .service-link-icon {
  background: rgba(240, 127, 25, 0.18);
  box-shadow: 0 10px 18px -14px rgba(139, 88, 33, 0.68);
  transform: translateX(4px);
}

.service-link:hover .service-link-icon svg {
  transform: translateX(1px);
}

.service-link.is-launching {
  position: relative;
  pointer-events: none;
}

.references-link.is-launching {
  position: relative;
  pointer-events: none;
}

.service-link.is-launching .service-link-icon {
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.references-link.is-launching .references-link-icon {
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.service-link.is-launching .service-link-label {
  animation: fadeLabelOut 0.22s ease forwards;
}

.references-link.is-launching .references-link-label {
  animation: fadeLabelOut 0.22s ease forwards;
}

.references-section {
  position: relative;
  padding: 110px 0 112px;
  background: var(--references-bg);
}

.references-shell {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
}

.references-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.references-eyebrow {
  color: var(--references-link);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.references-header h2 {
  margin: 0;
  color: var(--references-title);
  font-size: clamp(2.45rem, 4.1vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.references-description {
  max-width: 700px;
  margin: 0;
  color: var(--references-text);
  font-size: 1.02rem;
  line-height: 1.7;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1080px, 100%);
  gap: 12px;
}

.reference-card {
  position: relative;
  display: block;
  aspect-ratio: 1.26 / 1;
  overflow: hidden;
  border: none;
  border-radius: 14px;
  background: var(--references-frame);
  box-shadow: var(--references-shadow);
  isolation: isolate;
}

.reference-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.18));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.reference-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px 16px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(20, 19, 18, 0) 0%, rgba(20, 19, 18, 0.78) 42%, rgba(20, 19, 18, 0.94) 100%);
  pointer-events: none;
}

.reference-caption strong {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
}

.reference-caption span {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.reference-caption-inline {
  padding-bottom: 20px;
}

.reference-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.reference-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

.reference-card:hover::after {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .reference-caption {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.28s ease, transform 0.28s ease;
  }

  .reference-card:hover .reference-caption,
  .reference-card:focus-visible .reference-caption {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: none), (pointer: coarse) {
  .reference-caption {
    opacity: 1;
    transform: none;
  }

  .reference-card::after {
    opacity: 1;
    background: linear-gradient(180deg, rgba(20, 19, 18, 0.02) 0%, rgba(20, 19, 18, 0.26) 34%, rgba(20, 19, 18, 0.76) 100%);
  }
}

.references-footer {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.references-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--references-link);
  font-size: 0.98rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.references-link-label {
  position: relative;
  z-index: 1;
}

.references-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(240, 127, 25, 0.12);
  transform-origin: center;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.references-link-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.references-link:hover {
  color: #d96807;
}

.references-link:hover .references-link-icon {
  background: rgba(240, 127, 25, 0.18);
  box-shadow: 0 10px 18px -14px rgba(139, 88, 33, 0.68);
  transform: translateX(4px);
}

.references-link:hover .references-link-icon svg {
  transform: translateX(1px);
}

.kundendienst-section {
  position: relative;
  padding: 108px 0 112px;
  background:
    radial-gradient(circle at top center, rgba(240, 127, 25, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
    var(--bg);
}

.kundendienst-shell {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.kundendienst-header {
  max-width: 780px;
  text-align: center;
}

.kundendienst-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kundendienst-header h2 {
  margin: 0;
  color: var(--services-title);
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.kundendienst-header p {
  margin: 20px auto 0;
  max-width: 720px;
  color: var(--services-text);
  font-size: 1.06rem;
  line-height: 1.7;
}

.kundendienst-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(980px, 100%);
  gap: 18px;
}

.kundendienst-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 92px;
  padding: 18px 18px 18px 16px;
  border: 1px solid rgba(42, 49, 51, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 42px -34px rgba(42, 49, 51, 0.28);
}

.kundendienst-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 999px;
  background: rgba(240, 127, 25, 0.12);
  color: var(--accent);
  flex-shrink: 0;
}

.kundendienst-item-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kundendienst-item p {
  margin: 0;
  color: var(--services-title);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.betrieb-section {
  position: relative;
  padding: 108px 0 112px;
  background: var(--services-bg);
}

.betrieb-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: start;
}

.betrieb-copy {
  max-width: 760px;
}

.betrieb-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.betrieb-copy h2 {
  margin: 0;
  color: var(--services-title);
  max-width: 13ch;
  font-size: clamp(2.35rem, 3.8vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.betrieb-lead,
.betrieb-copy p {
  margin: 18px 0 0;
  color: var(--services-text);
  font-size: 1rem;
  line-height: 1.68;
}

.betrieb-lead {
  margin-top: 22px;
  color: rgba(42, 49, 51, 0.82);
  font-size: 1.04rem;
}

.betrieb-copy > p:not(.betrieb-text-current) {
  display: none;
}

.betrieb-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.betrieb-fact {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(42, 49, 51, 0.08);
  border-radius: 10px;
  background: #ffffff;
  color: var(--services-title);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.betrieb-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.betrieb-highlights,
.betrieb-values {
  display: none;
}

.betrieb-panel-card {
  border: 1px solid rgba(42, 49, 51, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 42px -34px rgba(42, 49, 51, 0.22);
  padding: 22px 22px 20px;
}

.betrieb-panel-label,
.betrieb-values-label {
  display: inline-block;
  color: var(--services-title);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.betrieb-milestones {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.betrieb-milestone {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(42, 49, 51, 0.08);
}

.betrieb-milestone:first-child {
  padding-top: 0;
  border-top: 0;
}

.betrieb-milestone strong {
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.2;
}

.betrieb-milestone span {
  color: var(--services-title);
  font-size: 0.96rem;
  line-height: 1.5;
}

.betrieb-quote-card p {
  margin: 14px 0 0;
}

.betrieb-values-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--services-text);
  display: grid;
  gap: 9px;
}

.betrieb-values-list li {
  line-height: 1.6;
}

.betrieb-link {
  margin-top: 28px;
}

.ausstellung-section {
  position: relative;
  padding: 108px 0 84px;
  background:
    radial-gradient(circle at top center, rgba(240, 127, 25, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    var(--services-bg);
}

.ausstellung-section:not(.ausstellung-slider-section) {
  display: none;
}

.ausstellung-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.ausstellung-copy {
  max-width: 520px;
}

.ausstellung-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ausstellung-copy h2 {
  margin: 0;
  color: var(--services-title);
  font-size: clamp(2.2rem, 3.6vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.ausstellung-copy p {
  margin: 16px 0 0;
  color: var(--services-text);
  font-size: 1.02rem;
  line-height: 1.7;
}

.ausstellung-copy .ausstellung-lead {
  margin-top: 20px;
  color: var(--services-title);
  font-weight: 600;
}

.ausstellung-gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ausstellung-gallery-slider {
  gap: 20px;
}

.ausstellung-mobile-list {
  display: none;
}

.ausstellung-mobile-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 48px -36px rgba(42, 49, 51, 0.28);
}

.ausstellung-mobile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 19, 18, 0.02) 0%, rgba(20, 19, 18, 0.26) 34%, rgba(20, 19, 18, 0.78) 100%);
}

.ausstellung-mobile-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
}

.ausstellung-mobile-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.ausstellung-mobile-caption h3 {
  margin: 0;
  color: rgba(249, 245, 238, 0.96);
  font-size: 1.22rem;
  line-height: 1.18;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.ausstellung-mobile-caption p {
  margin: 8px 0 0;
  color: rgba(243, 235, 224, 0.88);
  font-size: 0.95rem;
  line-height: 1.55;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.ausstellung-stage {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 26px 54px -38px rgba(42, 49, 51, 0.34);
}

.ausstellung-stage-slider {
  position: relative;
  isolation: isolate;
}

.ausstellung-stage-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 17, 18, 0.04) 0%, rgba(16, 17, 18, 0.18) 34%, rgba(16, 17, 18, 0.82) 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.ausstellung-stage img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.ausstellung-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: rgba(240, 127, 25, 0.9);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 18px 38px -24px rgba(42, 49, 51, 0.45);
}

.ausstellung-nav:hover {
  background: var(--orange-dark);
  transform: translateY(-50%) scale(1.04);
}

.ausstellung-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ausstellung-nav-prev {
  left: 20px;
}

.ausstellung-nav-next {
  right: 20px;
}

.ausstellung-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ausstellung-stage-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 28px 28px 24px;
  pointer-events: none;
}

.ausstellung-caption-overlay {
  padding: 0;
}

.ausstellung-caption.ausstellung-caption-overlay h3 {
  color: rgba(249, 245, 238, 0.96);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.ausstellung-caption.ausstellung-caption-overlay p {
  color: rgba(243, 235, 224, 0.88);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.ausstellung-caption {
  padding: 0 4px;
}

.ausstellung-caption h3 {
  margin: 0;
  color: var(--services-title);
  font-size: 1.3rem;
  line-height: 1.2;
}

.ausstellung-caption p {
  margin: 10px 0 0;
  color: var(--services-text);
  font-size: 0.98rem;
  line-height: 1.65;
}

.ausstellung-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ausstellung-thumbs-slider {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ausstellung-thumb {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(42, 49, 51, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--services-title);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.ausstellung-thumb:hover,
.ausstellung-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(240, 127, 25, 0.24);
  background: rgba(255, 255, 255, 0.9);
}

.ausstellung-thumb img {
  width: 100%;
  aspect-ratio: 1.15 / 0.82;
  border-radius: 10px;
  object-fit: cover;
}

.ausstellung-thumb span {
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.35;
}

.ausstellung-link {
  margin-top: 18px;
}

@media (hover: hover) and (pointer: fine) {
  .ausstellung-caption-overlay {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.28s ease, transform 0.28s ease;
  }

  .ausstellung-stage-slider:hover::after {
    opacity: 1;
  }

  .ausstellung-stage-slider:hover .ausstellung-caption-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: none), (pointer: coarse) {
  .ausstellung-stage-slider::after {
    opacity: 1;
  }

  .ausstellung-caption-overlay {
    opacity: 1;
    transform: none;
  }
}

.kontakt-plain-section {
  position: relative;
  padding: 108px 0 92px;
  background:
    radial-gradient(circle at top center, rgba(240, 127, 25, 0.06), transparent 24%),
    var(--services-bg);
}

.kontakt-plain-shell {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.kontakt-plain-header {
  max-width: 760px;
}

.kontakt-plain-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kontakt-plain-header h2 {
  margin: 0;
  color: var(--services-title);
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.kontakt-plain-header p {
  margin: 18px 0 0;
  max-width: 700px;
  color: var(--services-text);
  font-size: 1.02rem;
  line-height: 1.7;
}

.kontakt-plain-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.kontakt-plain-block {
  padding: 24px 24px 18px;
  border-top: 2px solid rgba(240, 127, 25, 0.72);
  background: rgba(255, 255, 255, 0.52);
}

.kontakt-plain-block h3 {
  margin: 0 0 16px;
  color: var(--services-title);
  font-size: 1.15rem;
  line-height: 1.2;
}

.kontakt-plain-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(42, 49, 51, 0.08);
}

.kontakt-plain-row:first-of-type {
  padding-top: 0;
  border-top: none;
}

.kontakt-plain-row span,
.kontakt-plain-row a,
.kontakt-plain-row strong {
  font-size: 1rem;
  line-height: 1.5;
}

.kontakt-plain-row span {
  color: var(--services-text);
}

.kontakt-plain-row a,
.kontakt-plain-row strong {
  color: var(--services-title);
  font-weight: 700;
  text-align: right;
}

.kontakt-plain-actions {
  display: flex;
  gap: 12px;
}

.kontakt-section {
  display: none;
}

.kontakt-section {
  position: relative;
  padding: 112px 0 118px;
  background:
    radial-gradient(circle at top center, rgba(240, 127, 25, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)),
    var(--services-bg);
}

.kontakt-shell {
  display: flex;
  flex-direction: column;
  gap: 38px;
  align-items: center;
}

.kontakt-header {
  max-width: 760px;
  text-align: center;
}

.kontakt-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kontakt-header h2 {
  margin: 0;
  color: var(--services-title);
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.kontakt-header p {
  margin: 20px auto 0;
  max-width: 700px;
  color: var(--services-text);
  font-size: 1.06rem;
  line-height: 1.7;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(980px, 100%);
  gap: 18px;
}

.kontakt-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 102px;
  padding: 22px 22px 22px 20px;
  border: 1px solid rgba(42, 49, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 42px -34px rgba(42, 49, 51, 0.28);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.kontakt-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 127, 25, 0.2);
  box-shadow: 0 24px 46px -34px rgba(42, 49, 51, 0.34);
}

.kontakt-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(240, 127, 25, 0.12);
  color: var(--accent);
  flex-shrink: 0;
}

.kontakt-card-icon svg,
.kontakt-cta-phone-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kontakt-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kontakt-card-body strong {
  color: var(--services-title);
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 700;
}

.kontakt-card-body span {
  color: var(--services-text);
  font-size: 1rem;
  line-height: 1.55;
}

.oeffnungszeiten-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 26px;
  align-items: center;
  width: min(1180px, 100%);
  padding: 30px 30px 28px;
  border: 1px solid rgba(42, 49, 51, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(240, 127, 25, 0.08), rgba(0, 85, 102, 0.04)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 52px -40px rgba(42, 49, 51, 0.28);
}

.oeffnungszeiten-copy h3 {
  margin: 10px 0 0;
  color: var(--services-title);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.oeffnungszeiten-copy p {
  margin: 16px 0 0;
  color: var(--services-text);
  font-size: 1rem;
  line-height: 1.7;
}

.oeffnungszeiten-eyebrow {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.oeffnungszeiten-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.oeffnungszeiten-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(42, 49, 51, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.oeffnungszeiten-row span {
  color: var(--services-text);
  font-size: 0.98rem;
  font-weight: 600;
}

.oeffnungszeiten-row strong {
  color: var(--services-title);
  font-size: 0.98rem;
  font-weight: 700;
  text-align: right;
}

.kontakt-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: min(1180px, 100%);
  padding: 46px 32px;
  border: 1px solid rgba(42, 49, 51, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(240, 127, 25, 0.08), rgba(42, 49, 51, 0.02)),
    rgba(255, 255, 255, 0.66);
  box-shadow: 0 28px 58px -42px rgba(42, 49, 51, 0.28);
  text-align: center;
}

.kontakt-cta-copy {
  max-width: 760px;
}

.kontakt-cta-copy h3 {
  margin: 0;
  color: var(--services-title);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.kontakt-cta-copy p {
  margin: 18px auto 0;
  max-width: 700px;
  color: var(--services-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.kontakt-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.kontakt-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 24px;
  border: 1px solid rgba(42, 49, 51, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--services-title);
  font-size: 1.02rem;
  font-weight: 700;
}

.kontakt-cta-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.site-footer {
  position: relative;
  padding: 82px 0 26px;
  background:
    radial-gradient(circle at top left, rgba(240, 127, 25, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(247, 241, 233, 0.98) 100%);
  color: rgba(42, 49, 51, 0.8);
  border-top: 1px solid rgba(42, 49, 51, 0.06);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.9fr) minmax(260px, 1fr);
  gap: 36px 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  max-width: max-content;
}

.footer-logo img {
  width: 230px;
  height: auto;
  display: block;
}

.footer-brand-copy {
  max-width: 440px;
}

.footer-claim {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--services-title);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.25;
}

.footer-claim-brand {
  color: var(--brand-blue);
}

.footer-claim strong {
  color: var(--accent);
}

.footer-claim-id {
  color: var(--accent);
}

.footer-claim-sub {
  color: var(--services-title);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: var(--services-title);
  font-size: 1.36rem;
  line-height: 1.1;
}

.footer-text,
.footer-link,
.footer-nav a,
.footer-bottom p,
.footer-bottom a {
  color: var(--services-text);
  font-size: 1rem;
  line-height: 1.72;
}

.footer-text {
  margin: 0;
}

.footer-link,
.footer-bottom a,
.footer-nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-bottom a:hover,
.footer-nav a:hover {
  color: var(--services-title);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(42, 49, 51, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.before-after-section {
  position: relative;
  padding: 52px 0 120px;
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 127, 25, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    var(--services-bg);
}

.before-after-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 1fr);
  align-items: center;
  gap: 34px;
}

.before-after-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: none;
  text-align: left;
}

.before-after-eyebrow {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.before-after-copy h2 {
  margin: 0;
  color: var(--services-title);
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.before-after-copy p {
  margin: 0;
  width: 100%;
  color: var(--services-text);
  font-size: 1.05rem;
  line-height: 1.65;
}

.before-after-compare {
  --before-after-pos: 50%;
  display: flex;
  flex-direction: column;
  width: min(1080px, 100%);
  gap: 18px;
}

.before-after-frame {
  position: relative;
  aspect-ratio: 1.72 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 54px -38px rgba(42, 49, 51, 0.38);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.before-after-compare.is-dragging .before-after-frame {
  cursor: grabbing;
}

.before-after-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.before-after-image-base,
.before-after-overlay {
  position: absolute;
  inset: 0;
}

.before-after-overlay {
  overflow: hidden;
  clip-path: inset(0 0 0 var(--before-after-pos));
}

.before-after-label {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(42, 49, 51, 0.56);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-after-label-left {
  left: 18px;
}

.before-after-label-right {
  right: 18px;
}

.before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--before-after-pos);
  width: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.before-after-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(240, 127, 25, 0.96);
  box-shadow: 0 20px 44px -24px rgba(42, 49, 51, 0.54);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.before-after-handle::before,
.before-after-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.before-after-handle::before {
  left: 17px;
  transform: translateY(-50%) rotate(-135deg);
}

.before-after-handle::after {
  right: 17px;
  transform: translateY(-50%) rotate(45deg);
}

.before-after-controls {
  display: flex;
  justify-content: center;
}

.before-after-slider {
  width: min(560px, calc(100% - 36px));
  height: 20px;
  margin: 0;
  background: transparent;
  cursor: ew-resize;
  appearance: none;
}

.before-after-slider:focus {
  outline: none;
}

.before-after-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(42, 49, 51, 0.18), rgba(240, 127, 25, 0.72), rgba(42, 49, 51, 0.18));
}

.before-after-slider::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -7px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 10px 18px -14px rgba(42, 49, 51, 0.56);
  appearance: none;
}

.before-after-slider::-moz-range-track {
  height: 4px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(42, 49, 51, 0.18), rgba(240, 127, 25, 0.72), rgba(42, 49, 51, 0.18));
}

.before-after-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 10px 18px -14px rgba(42, 49, 51, 0.56);
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 68px 0 62px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after-copy {
    max-width: 720px;
    align-items: center;
    text-align: center;
  }

  .kundendienst-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ausstellung-shell {
    grid-template-columns: 1fr;
  }

  .ausstellung-copy {
    max-width: 760px;
  }

  .kontakt-plain-layout {
    grid-template-columns: 1fr;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
  }

  .oeffnungszeiten-panel {
    grid-template-columns: 1fr;
  }

  .bewertungen-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

}

@media (max-width: 960px) {
  :root {
    --header-offset: 118px;
  }

  body.bewertungen-page main {
    padding-top: 132px;
  }

  body.bewertungen-page .bewertungen-hero {
    min-height: calc(100svh - 132px);
  }

  body.bewertungen-page .navbar-inner {
    min-height: 66px;
    padding: 8px 0;
    flex-wrap: nowrap;
  }

  body.bewertungen-page .logo img {
    width: 170px;
  }

  body.bewertungen-page .nav-controls {
    margin-left: auto;
  }

  .topbar {
    display: block;
  }

  .topbar-inner {
    min-height: 46px;
    gap: 10px;
    font-size: 0.82rem;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .topbar-left {
    gap: 12px;
    flex: 1;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .contact-link,
  .topbar-right {
    gap: 6px;
    padding: 4px 0;
    font-weight: 600;
    white-space: nowrap;
  }

  .topbar-right {
    margin-left: auto;
    gap: 9px;
  }

  .topbar-social {
    gap: 6px;
  }

  .topbar-social-link {
    gap: 0;
    width: 16px;
    height: 16px;
  }

  .topbar-social-icon {
    width: 16px;
    height: 16px;
  }

  .topbar-social-icon-instagram {
    width: 15px;
    height: 15px;
  }

  .topbar-social-icon-facebook {
    width: 15px;
    height: 15px;
  }

  .contact-location .contact-icon {
    width: 16px;
    height: 16px;
  }

  .contact-icon {
    width: 15px;
    height: 15px;
    transform: none;
  }

  .contact-text-desktop {
    display: none;
  }

  .contact-text-mobile {
    display: inline;
  }

  .navbar-inner {
    min-height: 72px;
    padding: 12px 0;
    align-items: center;
    flex-wrap: wrap;
  }

  .logo {
    padding: 6px 10px 6px 0;
  }

  .logo img {
    width: 190px;
  }

  .nav-controls {
    gap: 10px;
  }

  body.bewertungen-page .navbar-inner {
    min-height: 66px;
    padding: 8px 0;
    flex-wrap: nowrap;
  }

  body.bewertungen-page .logo img {
    width: 170px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(42, 49, 51, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 50px -34px rgba(42, 49, 51, 0.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  body.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 13px 14px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .hero {
    min-height: calc(100vh - 72px);
    align-items: flex-end;
  }

  .hero-content {
    max-width: 100%;
    padding: 8px 0 132px;
  }

  .hero h1.subheadline {
    margin-left: 0;
  }

  .description {
    max-width: 100%;
  }

  .services-section {
    padding: 88px 0 96px;
  }

  .services-shell {
    gap: 40px;
  }

  .service-card {
    min-height: 410px;
  }

  .references-section {
    padding: 92px 0 96px;
  }

  .references-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-card {
    aspect-ratio: 1.2 / 1;
  }

  .before-after-section {
    padding: 24px 0 96px;
  }

  .kundendienst-section {
    padding: 88px 0 96px;
  }

  .betrieb-section {
    padding: 92px 0 96px;
  }

  .betrieb-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .betrieb-copy {
    padding: 28px 24px 26px;
    border-radius: 24px;
  }

  .betrieb-facts {
    gap: 8px;
  }

  .kontakt-section {
    padding: 88px 0 96px;
  }

  .oeffnungszeiten-panel {
    padding: 24px 24px 22px;
  }

  .before-after-frame {
    aspect-ratio: 1.48 / 1;
  }

  .before-after-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .reveal,
  .reveal.is-visible {
    filter: none;
    transition:
      opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-up {
    transform: translateY(18px);
  }

  .reveal-down {
    transform: translateY(-14px);
  }

  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-delay-4 {
    transition-delay: 0s;
  }

  .hero-bg-image {
    animation-duration: 0.9s;
  }

  .hero-overlay {
    animation-duration: 0.8s;
  }

  body::before {
    animation-duration: 22s;
  }

  .page-transition-curtain,
  .page-transition-brand {
    transition-duration: 0.46s;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body::before,
  .hero-bg-image,
  .hero-overlay,
  .bewertungen-hero::before,
  .bewertungen-eyebrow,
  .bewertungen-option,
  .bewertungen-option:hover .bewertungen-option-icon svg {
    animation: none;
  }

  .page-transition-curtain,
  .service-link-icon,
  .service-link-icon svg,
  .references-link-icon,
  .references-link-icon svg,
  .service-link.is-launching .service-link-icon,
  .service-link.is-launching .service-link-label,
  .references-link.is-launching .references-link-icon,
  .references-link.is-launching .references-link-label,
  .bewertungen-option.is-launching .bewertungen-option-icon,
  .bewertungen-option.is-launching strong,
  .bewertungen-option.is-launching small,
  .review-info-button.is-launching .review-info-icon,
  .review-info-button.is-launching .review-info-label,
  .review-modal-backdrop,
  .review-modal-dialog,
  .review-modal-action.is-launching {
    animation: none;
    transition: none;
  }

  .reveal,
  .reveal.is-visible,
  .btn,
  .btn:hover,
  .btn:active,
  .bewertungen-option,
  .bewertungen-option:hover,
  .bewertungen-option-icon,
  .bewertungen-option:hover .bewertungen-option-icon,
  .review-info-button,
  .review-info-button:hover,
  .review-modal-action,
  .review-modal-action:hover {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }

  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes overlayFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes ambientShift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes fadeLabelOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-6px);
  }
}

@keyframes bewertungenAmbient {
  0% {
    opacity: 0.48;
    transform: translate3d(-14px, -8px, 0) scale(1);
  }

  100% {
    opacity: 0.82;
    transform: translate3d(18px, 12px, 0) scale(1.04);
  }
}

@keyframes eyebrowPulse {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(240, 127, 25, 0);
  }

  50% {
    text-shadow: 0 0 18px rgba(240, 127, 25, 0.22);
  }
}

@keyframes reviewCardIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(26px) scale(0.96);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes reviewIconPop {
  0% {
    transform: scale(1) rotate(0);
  }

  42% {
    transform: scale(1.18) rotate(8deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes modalBackdropIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalDialogIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px) scale(0.94);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes launchIconPulse {
  from {
    transform: translateY(-2px) scale(0.94) rotate(-5deg);
  }

  to {
    transform: translateY(-2px) scale(1.08) rotate(4deg);
  }
}

@keyframes launchButtonPulse {
  from {
    opacity: 0.78;
    transform: translateY(-1px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(-2px) scale(1.03);
  }
}

@media (max-width: 720px) {
  :root {
    --header-offset: 112px;
  }

  .container {
    width: min(100% - 28px, 1360px);
  }

  .topbar-inner,
  .topbar-left {
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

  .topbar-right {
    justify-content: flex-start;
  }

  .topbar-left,
  .topbar-right {
    gap: 10px;
  }

  .topbar-inner {
    min-height: 0;
    padding: 8px 0;
  }

  .topbar-social {
    gap: 6px;
  }

  .hero-content {
    padding: 10px 0 110px;
  }

  .hero-bg-image {
    object-position: 24% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(52, 43, 32, 0.08) 0%, rgba(32, 26, 20, 0.2) 100%),
      var(--hero-overlay);
  }

  .hero h1 {
    font-size: clamp(1.5rem, 8vw, 2rem);
    white-space: normal;
  }

  .hero h1.subheadline {
    margin-left: 0;
    font-size: clamp(1.75rem, 9vw, 2.5rem);
    white-space: normal;
  }

  .description {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .betrieb-highlight {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .betrieb-highlight strong {
    font-size: 1.25rem;
  }

  .betrieb-values-card {
    padding: 20px 18px 18px;
  }

  .btn {
    width: 100%;
  }

  .services-section {
    padding: 74px 0 82px;
  }

  .services-header h2 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .services-header p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 4px 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo img {
    width: 200px;
  }

  .service-media {
    height: 220px;
  }

  .service-card {
    min-height: 0;
  }

  .references-section {
    padding: 76px 0 82px;
  }

  .references-shell {
    gap: 28px;
  }

  .references-header h2 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .references-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reference-card {
    aspect-ratio: 1.24 / 1;
  }

  .before-after-section {
    padding: 12px 0 82px;
  }

  .kundendienst-section {
    padding: 74px 0 82px;
  }

  .ausstellung-section {
    padding: 74px 0 66px;
  }

  .ausstellung-gallery-slider {
    display: flex;
    gap: 12px;
  }

  .ausstellung-stage-slider,
  .ausstellung-meta {
    display: none;
  }

  .ausstellung-mobile-list {
    display: grid;
    gap: 12px;
    width: 100%;
  }

  .ausstellung-caption h3 {
    font-size: 1.15rem;
  }

  .ausstellung-caption p,
  .ausstellung-copy p {
    font-size: 0.96rem;
  }

  .kontakt-plain-section {
    padding: 74px 0 68px;
  }

  .kontakt-section {
    padding: 74px 0 82px;
  }

  .kundendienst-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .kundendienst-item {
    min-height: 0;
    padding: 16px 16px 16px 14px;
    border-radius: 16px;
  }

  .kundendienst-item p {
    font-size: 0.96rem;
  }

  .kontakt-plain-block {
    padding: 20px 18px 16px;
  }

  .kontakt-plain-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .kontakt-plain-row a,
  .kontakt-plain-row strong {
    text-align: left;
  }

  .kontakt-plain-actions {
    flex-direction: column;
  }

  .kontakt-plain-actions .btn {
    width: 100%;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .oeffnungszeiten-panel {
    gap: 18px;
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .oeffnungszeiten-copy h3 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .oeffnungszeiten-copy p {
    font-size: 0.95rem;
  }

  .oeffnungszeiten-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
  }

  .oeffnungszeiten-row strong {
    text-align: left;
  }

  .kontakt-card {
    min-height: 0;
    padding: 18px 18px 18px 16px;
    border-radius: 18px;
  }

  .kontakt-card-body strong {
    font-size: 1.16rem;
  }

  .kontakt-card-body span {
    font-size: 0.94rem;
  }

  .kontakt-cta {
    gap: 22px;
    padding: 34px 20px;
    border-radius: 22px;
  }

  .kontakt-cta-copy h3 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .kontakt-cta-copy p {
    font-size: 0.98rem;
  }

  .kontakt-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .kontakt-cta-phone,
  .kontakt-cta .btn {
    width: 100%;
  }

  .bewertungen-hero {
    min-height: calc(100svh - 132px);
    padding: 18px 0 34px;
    align-items: flex-start;
  }

  .bewertungen-eyebrow {
    display: block;
    margin-bottom: 12px;
    font-size: 0.84rem;
    line-height: 1.25;
    white-space: normal;
  }

  .bewertungen-copy h1 {
    font-size: clamp(2.2rem, 10vw, 2.9rem);
    line-height: 0.98;
    max-width: 12.5ch;
  }

  .bewertungen-copy p {
    max-width: 32rem;
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .bewertungen-panel {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 0;
    border-radius: 0;
  }

  .bewertungen-option {
    grid-template-columns: 44px 1fr;
    min-height: 0;
    gap: 12px;
    padding: 15px 14px;
  }

  .bewertungen-option-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .bewertungen-option-icon svg {
    width: 22px;
    height: 22px;
  }

  .bewertungen-option strong {
    font-size: 1.08rem;
  }

  .bewertungen-option small {
    margin-top: 4px;
    font-size: 0.91rem;
    line-height: 1.34;
  }

  .review-info-button {
    min-height: 26px;
    margin-top: 7px;
    gap: 7px;
    font-size: 0.86rem;
  }

  .review-info-icon {
    width: 24px;
    height: 24px;
  }

  .bewertungen-shell {
    gap: 24px;
  }

  .before-after-copy h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .before-after-copy p {
    font-size: 0.96rem;
  }

  .before-after-frame {
    aspect-ratio: 1.08 / 1;
    border-radius: 18px;
  }

  .before-after-label {
    top: 14px;
    padding: 8px 12px;
    font-size: 0.74rem;
  }

  .before-after-label-left {
    left: 14px;
  }

  .before-after-label-right {
    right: 14px;
  }

  .before-after-handle {
    width: 56px;
    height: 56px;
  }

  .before-after-controls {
    padding: 0 6px;
  }

  .reference-caption {
    gap: 4px;
    padding: 16px 14px 14px;
  }

  .reference-caption strong {
    font-size: 0.95rem;
  }

  .reference-caption span {
    font-size: 0.86rem;
    line-height: 1.4;
  }

}

@media (max-width: 420px) and (max-height: 700px) {
  body.bewertungen-page main {
    padding-top: 132px;
  }

  .bewertungen-hero {
    min-height: calc(100svh - 132px);
    padding: 12px 0 24px;
  }

  .bewertungen-eyebrow {
    margin-bottom: 8px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .bewertungen-copy h1 {
    font-size: clamp(1.95rem, 9vw, 2.45rem);
  }

  .bewertungen-copy p {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.34;
  }

  .bewertungen-shell {
    gap: 18px;
  }

  .bewertungen-option {
    grid-template-columns: 40px 1fr;
    gap: 11px;
    padding: 12px;
    border-radius: 12px;
  }

  .bewertungen-option-icon {
    width: 40px;
    height: 40px;
  }

  .bewertungen-option-icon svg {
    width: 21px;
    height: 21px;
  }

  .bewertungen-option strong {
    font-size: 1rem;
  }

  .bewertungen-option small {
    font-size: 0.84rem;
    line-height: 1.28;
  }

  .review-info-button {
    min-height: 24px;
    margin-top: 6px;
    font-size: 0.82rem;
  }
}

@media (max-width: 720px) and (min-height: 760px) {
  .bewertungen-panel {
    gap: 12px;
  }

  .bewertungen-option {
    grid-template-columns: 46px 1fr;
    justify-items: stretch;
    min-height: 0;
    padding: 15px 16px;
    text-align: left;
  }

  .bewertungen-option-icon {
    width: 46px;
    height: 46px;
  }

  .bewertungen-option-icon svg {
    width: 22px;
    height: 22px;
  }

  .bewertungen-option strong,
  .bewertungen-option small {
    text-align: left;
  }

  .bewertungen-option strong {
    font-size: 1.06rem;
  }

  .bewertungen-option small {
    max-width: 300px;
    font-size: 0.92rem;
    line-height: 1.32;
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  body.bewertungen-page .topbar-inner {
    min-height: 58px;
    font-size: 1.14rem;
    font-weight: 700;
  }

  body.bewertungen-page .contact-icon,
  body.bewertungen-page .topbar-social-icon,
  body.bewertungen-page .contact-location .contact-icon {
    width: 22px;
    height: 22px;
  }

  body.bewertungen-page .navbar-inner {
    min-height: 116px;
  }

  body.bewertungen-page .logo img {
    width: 340px;
  }

  body.bewertungen-page .switch {
    width: 86px;
    height: 48px;
  }

  body.bewertungen-page .slider {
    border-radius: 16px;
  }

  body.bewertungen-page .slider::before {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  body.bewertungen-page .switch input:checked + .slider::before {
    transform: translateX(38px);
  }

  body.bewertungen-page .switch-icon {
    width: 18px;
    height: 18px;
  }

  body.bewertungen-page .switch-light {
    left: 14px;
  }

  body.bewertungen-page .switch-dark {
    right: 14px;
  }

  body.bewertungen-page .menu-toggle {
    width: 64px;
    height: 64px;
    gap: 7px;
  }

  body.bewertungen-page .menu-toggle span {
    width: 28px;
    height: 3px;
  }

  body.bewertungen-page main {
    padding-top: 174px;
  }

  .bewertungen-hero {
    min-height: calc(100svh - 174px);
    padding: 54px 0 70px;
    background:
      linear-gradient(120deg, rgba(247, 241, 231, 0.9), rgba(247, 241, 231, 0.58)),
      url("assets/bg.jpg") center / cover;
  }

  .bewertungen-shell {
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    gap: 34px;
    width: min(900px, calc(100% - 64px));
  }

  .bewertungen-copy {
    max-width: 820px;
  }

  .bewertungen-eyebrow {
    margin-bottom: 18px;
    font-size: 1.05rem;
  }

  .bewertungen-copy h1 {
    font-size: clamp(3.3rem, 7vw, 4.6rem);
  }

  .bewertungen-copy p {
    max-width: 760px;
    font-size: 1.28rem;
    line-height: 1.58;
  }

  .bewertungen-panel {
    gap: 18px;
  }

  .bewertungen-option {
    grid-template-columns: 74px 1fr;
    min-height: 124px;
    gap: 22px;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
  }

  .bewertungen-option-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
  }

  .bewertungen-option-icon svg {
    width: 32px;
    height: 32px;
  }

  .bewertungen-option strong {
    font-size: 1.38rem;
  }

  .bewertungen-option small {
    font-size: 1.12rem;
    line-height: 1.44;
  }
}

.phone-lookup-hero {
  position: relative;
  min-height: calc(100vh - var(--header-offset));
  display: flex;
  align-items: center;
  padding: 74px 0 88px;
  background:
    linear-gradient(120deg, rgba(247, 241, 231, 0.92), rgba(247, 241, 231, 0.62)),
    url("assets/bg.jpg") center / cover;
  overflow: hidden;
}

.phone-lookup-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 34%, rgba(240, 127, 25, 0.14), transparent 20%),
    radial-gradient(circle at 78% 30%, rgba(0, 85, 102, 0.14), transparent 24%);
  mix-blend-mode: multiply;
}

.phone-lookup-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(246, 242, 235, 0), rgba(246, 242, 235, 0.86));
}

.phone-lookup-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 560px);
  align-items: center;
  gap: 46px;
}

.phone-lookup-copy {
  max-width: 760px;
}

.phone-lookup-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.phone-lookup-copy h1 {
  margin: 0;
  color: var(--services-title);
  font-size: clamp(2.45rem, 5vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.phone-lookup-copy p {
  margin: 20px 0 0;
  max-width: 600px;
  color: var(--services-text);
  font-size: 1.08rem;
  line-height: 1.62;
}

.phone-lookup-panel {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: 22px;
  border: 1px solid rgba(42, 49, 51, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 58px -42px rgba(42, 49, 51, 0.44);
  backdrop-filter: blur(14px);
}

.phone-lookup-form {
  display: grid;
  gap: 10px;
}

.phone-lookup-form label {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--services-title);
}

.phone-lookup-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.phone-lookup-input-row input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(42, 49, 51, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font: inherit;
  font-weight: 650;
}

.phone-lookup-hint,
.phone-lookup-status,
.phone-lookup-note {
  margin: 0;
  color: var(--services-text);
  font-size: 0.92rem;
  line-height: 1.48;
}

.phone-lookup-status {
  padding: 12px 14px;
  border: 1px solid rgba(0, 85, 102, 0.12);
  border-radius: 12px;
  background: rgba(0, 85, 102, 0.07);
  color: var(--brand-blue);
  font-weight: 750;
}

.phone-lookup-results {
  display: grid;
  gap: 20px;
}

.phone-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.phone-fact-card {
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(42, 49, 51, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.phone-fact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--services-text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-fact-card strong {
  display: block;
  color: var(--services-title);
  font-size: 1rem;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.phone-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.phone-insight-card {
  min-height: 132px;
  padding: 15px;
  border: 1px solid rgba(42, 49, 51, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.phone-insight-card span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(0, 85, 102, 0.08);
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-insight-card strong {
  display: block;
  color: var(--services-title);
  font-size: 1.04rem;
  line-height: 1.28;
}

.phone-insight-card p {
  margin: 8px 0 0;
  color: var(--services-text);
  font-size: 0.91rem;
  line-height: 1.43;
}

.phone-insight-card-good span {
  background: rgba(0, 85, 102, 0.1);
  color: var(--brand-blue);
}

.phone-insight-card-notice span {
  background: rgba(240, 127, 25, 0.12);
  color: var(--accent);
}

.phone-insight-card-warning {
  border-color: rgba(240, 127, 25, 0.32);
  background: rgba(240, 127, 25, 0.1);
}

.phone-insight-card-warning span {
  background: rgba(240, 127, 25, 0.18);
  color: var(--accent);
}

.phone-subpage-actions,
.phone-search-actions {
  display: grid;
  gap: 12px;
}

.phone-subpage-actions h2,
.phone-search-actions h2 {
  margin: 0;
  color: var(--services-title);
  font-size: 1.18rem;
}

.phone-subpage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.phone-subpage-link {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 13px;
  border: 1px solid rgba(42, 49, 51, 0.1);
  border-radius: 14px;
  background: rgba(0, 85, 102, 0.07);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.phone-subpage-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 85, 102, 0.24);
  background: rgba(0, 85, 102, 0.1);
}

.phone-subpage-link strong,
.phone-subpage-link small {
  display: block;
}

.phone-subpage-link strong {
  color: var(--services-title);
  font-size: 0.98rem;
}

.phone-subpage-link small {
  margin-top: 4px;
  color: var(--services-text);
  font-size: 0.86rem;
  line-height: 1.34;
}

.phone-link-grid {
  display: grid;
  gap: 10px;
}

.phone-research-link {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 38px;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(42, 49, 51, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.phone-research-link:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 127, 25, 0.36);
  box-shadow: 0 20px 42px -32px rgba(42, 49, 51, 0.46);
}

.phone-research-link strong,
.phone-research-link small {
  display: block;
}

.phone-research-link strong {
  color: var(--services-title);
  font-size: 1.02rem;
}

.phone-research-link small {
  margin-top: 4px;
  color: var(--services-text);
  font-size: 0.9rem;
  line-height: 1.36;
}

.phone-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--accent);
  color: #ffffff;
}

.phone-link-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-lookup-note {
  padding: 14px;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background: rgba(240, 127, 25, 0.1);
}

@media (max-width: 1100px) {
  .phone-lookup-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .phone-lookup-copy {
    max-width: 840px;
  }
}

@media (max-width: 720px) {
  .phone-lookup-hero {
    min-height: calc(100svh - 132px);
    padding: 24px 0 42px;
    align-items: flex-start;
  }

  .phone-lookup-shell {
    gap: 22px;
  }

  .phone-lookup-eyebrow {
    margin-bottom: 12px;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .phone-lookup-copy h1 {
    font-size: clamp(2.15rem, 10vw, 2.9rem);
    max-width: 12.5ch;
  }

  .phone-lookup-copy p {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .phone-lookup-panel {
    padding: 16px;
    border-radius: 16px;
  }

  .phone-lookup-input-row,
  .phone-result-grid,
  .phone-insight-grid,
  .phone-subpage-grid {
    grid-template-columns: 1fr;
  }

  .phone-lookup-input-row .btn {
    width: 100%;
  }

  .phone-research-link {
    min-height: 72px;
    grid-template-columns: 1fr 34px;
    padding: 13px;
  }

  .phone-link-icon {
    width: 34px;
    height: 34px;
  }
}

/* Apple komplett deaktiviert */
#apple-link {
    filter: grayscale(100%) brightness(0.8);
    opacity: .45;
    pointer-events: none;
}

/* Graues Icon */
#apple-link .bewertungen-option-icon {
    background: #9c9c9c !important;
}

/* Graue Schrift */
#apple-link strong,
#apple-link small,
#apple-link .review-info-label {
    color: #8a8a8a !important;
}

/* Grauer Pfeil */
#apple-link .review-info-icon {
    background: #d5d5d5 !important;
}

#apple-link .review-info-icon svg {
    stroke: #8a8a8a !important;
}

/* Keine Hover-Effekte */
#apple-link:hover,
#apple-link:focus,
#apple-link:active {
    transform: none !important;
    box-shadow: none !important;
}

.vcard-page .vcard-hero {
  min-height: calc(100vh - var(--header-offset));
  align-items: center;
  padding: 54px 0 76px;
}

.vcard-shell {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.vcard-card {
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(42, 49, 51, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 32px 72px -48px rgba(42, 49, 51, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.vcard-cover {
  height: 120px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 85, 102, 0.18), rgba(240, 127, 25, 0.14)),
    #e9ded1;
}

.vcard-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.9) contrast(0.96);
}

.vcard-logo-wrap {
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  margin: -58px auto 0;
  padding: 10px;
  border: 5px solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 18px 36px -28px rgba(42, 49, 51, 0.64);
}

.vcard-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vcard-heading {
  padding: 14px 28px 0;
  text-align: center;
}

.vcard-heading .bewertungen-eyebrow {
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.vcard-heading h1 {
  margin: 0;
  color: var(--services-title);
  font-size: clamp(1.72rem, 7vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.vcard-heading p {
  max-width: 26rem;
  margin: 10px auto 0;
  color: var(--services-text);
  font-size: 0.96rem;
  line-height: 1.48;
}

.vcard-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 22px 24px 18px;
}

.vcard-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.vcard-action:hover {
  transform: translateY(-2px);
}

.vcard-action-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 16px 30px -24px rgba(240, 127, 25, 0.9);
}

.vcard-action-secondary {
  background: rgba(0, 85, 102, 0.1);
  color: var(--brand-blue);
  border-color: rgba(0, 85, 102, 0.14);
}

.vcard-action-secondary.is-copied {
  background: rgba(240, 127, 25, 0.12);
  color: var(--accent);
}

.vcard-action-icon,
.vcard-box-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.vcard-action-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vcard-accordion {
  display: grid;
  gap: 12px;
  padding: 0 24px 28px;
}

.vcard-box {
  overflow: hidden;
  border: 1px solid rgba(42, 49, 51, 0.08);
  border-radius: 18px;
  background: rgba(246, 242, 235, 0.74);
}

.vcard-box summary {
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 14px;
  color: var(--services-title);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.vcard-box summary::-webkit-details-marker {
  display: none;
}

.vcard-box summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.22s ease;
  opacity: 0.72;
}

.vcard-box[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.vcard-box-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #ffffff;
  color: var(--brand-blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.vcard-box-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vcard-box-body {
  padding: 2px 28px 20px 68px;
}

.vcard-row + .vcard-row {
  margin-top: 16px;
}

.vcard-row span {
  display: block;
  color: rgba(42, 49, 51, 0.54);
  font-size: 0.74rem;
  font-weight: 800;
}

.vcard-row strong,
.vcard-row a,
.vcard-address {
  color: var(--services-title);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.5;
}

.vcard-row a:hover,
.vcard-link-grid a:hover {
  color: var(--accent);
}

.vcard-address {
  margin: 0 0 14px;
}

.vcard-map-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(0, 85, 102, 0.1);
  color: var(--brand-blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.vcard-link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 2px 18px 18px 68px;
}

.vcard-link-grid a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--services-title);
  font-size: 0.92rem;
  font-weight: 800;
}

@media (max-width: 700px) {
  .vcard-page .vcard-hero {
    min-height: calc(100svh - 132px);
    padding: 18px 0 34px;
    align-items: flex-start;
  }

  .vcard-card {
    border-radius: 24px;
  }
}

@media (max-width: 420px) {
  .vcard-actions {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .vcard-accordion {
    padding-inline: 18px;
  }

  .vcard-heading {
    padding-inline: 20px;
  }

  .vcard-box-body,
  .vcard-link-grid {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.vcard-page .vcard-hero {
  padding: 34px 0 52px;
}

.vcard-card {
  width: min(100%, 398px);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 248, 0.94));
}

.vcard-cover {
  height: 96px;
}

.vcard-logo-wrap {
  width: 88px;
  height: 88px;
  margin-top: -46px;
  padding: 8px;
  border-width: 4px;
}

.vcard-heading {
  padding-top: 12px;
}

.vcard-heading .bewertungen-eyebrow {
  animation: none;
}

.vcard-heading h1 {
  font-size: clamp(1.62rem, 5vw, 1.95rem);
}

.vcard-heading p {
  margin-top: 8px;
  font-size: 0.91rem;
}

.vcard-actions {
  padding: 18px 20px 12px;
}

.vcard-action {
  min-height: 44px;
  border-radius: 12px;
  font-size: 0.86rem;
}

.vcard-phone-strip {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 64px;
  margin: 0 20px 12px;
  padding: 10px 14px;
  border: 1px solid rgba(240, 127, 25, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(240, 127, 25, 0.13), rgba(0, 85, 102, 0.08)),
    rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.vcard-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--accent);
  color: #ffffff;
}

.vcard-phone-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vcard-phone-strip small {
  display: block;
  color: rgba(42, 49, 51, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
}

.vcard-phone-strip strong {
  display: block;
  margin-top: 1px;
  color: var(--services-title);
  font-size: 1.22rem;
  line-height: 1.1;
}

.vcard-accordion {
  gap: 10px;
  padding: 0 20px 22px;
}

.vcard-box {
  border-radius: 16px;
}

.vcard-box summary {
  min-height: 56px;
  grid-template-columns: 38px 1fr 16px;
  gap: 11px;
  padding: 9px 12px;
}

.vcard-box-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.vcard-box-body {
  padding: 0 24px 17px 61px;
}

.vcard-row + .vcard-row {
  margin-top: 12px;
}

.vcard-map-button {
  min-height: 36px;
}

.vcard-link-grid {
  padding: 0 14px 14px 61px;
}

@media (min-width: 1100px) {
  .vcard-page .vcard-hero {
    align-items: flex-start;
    padding-top: 36px;
  }
}

@media (max-width: 960px) {
  .vcard-page .vcard-hero {
    padding-top: 18px;
  }
}

@media (max-width: 520px) {
  body.vcard-page main {
    padding-top: 112px;
  }

  .vcard-page .vcard-hero {
    min-height: calc(100svh - 112px);
    padding: 10px 0 20px;
  }

  .vcard-card {
    width: min(100%, 380px);
    border-radius: 22px;
  }

  .vcard-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 16px 10px;
  }

  .vcard-action {
    min-height: 42px;
  }

  .vcard-phone-strip {
    margin-inline: 16px;
  }

  .vcard-accordion {
    padding-inline: 16px;
  }
}

@media (max-width: 520px) {
/* Consistent vCard app layout on mobile */
body.vcard-page main {
  padding-top: var(--header-offset);
}

.vcard-page .vcard-hero {
  min-height: calc(100svh - var(--header-offset));
  align-items: center;
  padding: 18px 0 22px;
  background:
    linear-gradient(180deg, rgba(246, 242, 235, 0.96), rgba(246, 242, 235, 0.86)),
    url("assets/bg.jpg") center / cover;
}

.vcard-page .vcard-hero::before,
.vcard-page .vcard-hero::after {
  display: none;
}

.vcard-page .vcard-shell {
  min-height: auto;
  align-items: center;
  padding-inline: 16px;
}

.vcard-page .vcard-card {
  position: relative;
  display: block;
  width: min(100%, 374px);
  min-height: auto;
  overflow: hidden;
  border: 1px solid rgba(0, 85, 102, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.96));
  box-shadow:
    0 28px 60px -48px rgba(15, 26, 28, 0.58),
    0 14px 32px -30px rgba(0, 85, 102, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.vcard-page .vcard-card::before {
  display: none;
}

.vcard-page .vcard-cover {
  position: relative;
  display: block;
  height: 112px;
  border-radius: 29px 29px 0 0;
  background:
    linear-gradient(135deg, rgba(0, 85, 102, 0.25), rgba(240, 127, 25, 0.12)),
    url("assets/bg.jpg") center / cover;
}

.vcard-page .vcard-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 250, 244, 0.18));
  backdrop-filter: blur(1.8px);
  -webkit-backdrop-filter: blur(1.8px);
  pointer-events: none;
}

.vcard-page .vcard-cover img.vcard-cover-logo {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  display: block;
  width: min(48%, 178px);
  max-height: 52%;
  opacity: 1;
  filter: none;
}

.vcard-page .vcard-logo-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  width: 76px;
  height: 76px;
  margin: -38px auto 0;
  padding: 8px;
  border: 4px solid rgba(255, 255, 255, 0.98);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 16px 34px -26px rgba(13, 26, 30, 0.68),
    0 0 0 1px rgba(42, 49, 51, 0.06);
}

.vcard-page .vcard-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vcard-page .vcard-heading {
  padding: 12px 22px 10px;
  text-align: center;
}

.vcard-page .vcard-heading .bewertungen-eyebrow {
  display: none;
}

.vcard-page .vcard-heading::before {
  content: "Digitale Visitenkarte";
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vcard-page .vcard-heading h1 {
  color: var(--services-title);
  font-size: 1.46rem;
  font-weight: 850;
  line-height: 1.18;
}

.vcard-page .vcard-heading p {
  display: none;
}

.vcard-page .vcard-actions {
  position: absolute;
  top: 18px;
  right: 14px;
  left: auto;
  z-index: 4;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  width: auto;
  padding: 0;
}

.vcard-page .vcard-action {
  min-width: 0;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
}

.vcard-page .vcard-action-primary {
  order: 2;
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 24px -20px rgba(240, 127, 25, 0.9);
}

.vcard-page #save-contact span:last-child {
  font-size: 0;
}

.vcard-page #save-contact span:last-child::after {
  content: "Kontakt";
  font-size: 0.68rem;
}

.vcard-page .vcard-action-secondary {
  order: 1;
  width: 34px;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-blue);
  border-color: rgba(0, 85, 102, 0.1);
}

.vcard-page .vcard-action-secondary span:last-child {
  display: none;
}

.vcard-page .vcard-action-icon,
.vcard-page .vcard-action-icon svg {
  width: 16px;
  height: 16px;
}

.vcard-page .vcard-contact-list {
  display: grid;
  gap: 0;
  width: auto;
  margin: 4px 16px 18px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 85, 102, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.vcard-page .vcard-contact-button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  min-height: 54px;
  padding: 7px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.vcard-page .vcard-contact-button + .vcard-contact-button {
  border-top: 1px solid rgba(0, 85, 102, 0.08);
}

.vcard-page .vcard-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #ff8a17, #f07f19 62%, #d96b08);
  color: #ffffff;
  box-shadow: 0 10px 20px -18px rgba(240, 127, 25, 0.9);
}

.vcard-page .vcard-contact-icon svg {
  width: 16px;
  height: 16px;
}

.vcard-page .vcard-contact-icon .vcard-brand-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.vcard-page .vcard-contact-copy small {
  margin-bottom: 1px;
  color: rgba(42, 49, 51, 0.5);
  font-size: 0.64rem;
  font-weight: 800;
}

.vcard-page .vcard-contact-copy strong {
  color: var(--services-title);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.15;
}
}

@media (max-width: 520px) {
  body.vcard-page main {
    padding-top: 112px;
  }

  .vcard-page .vcard-hero {
    min-height: calc(100svh - 112px);
    padding: 14px 0 18px;
  }
}

/* Final display tweaks */
.vcard-page [hidden],
.site-footer [hidden] {
  display: none !important;
}

.vcard-page .vcard-heading p {
  display: none;
}

@media (max-width: 520px) {
  .vcard-page .vcard-contact-list {
    gap: 8px;
    margin: 2px 16px 18px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .vcard-page .vcard-contact-button {
    border: 1px solid rgba(0, 85, 102, 0.14);
    border-radius: 15px;
    background:
      linear-gradient(135deg, rgba(0, 85, 102, 0.1), rgba(240, 127, 25, 0.075)),
      rgba(255, 255, 255, 0.84);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.86),
      0 12px 26px -26px rgba(0, 85, 102, 0.5);
  }

  .vcard-page .vcard-contact-button + .vcard-contact-button {
    border-top: 1px solid rgba(0, 85, 102, 0.14);
  }
}

.vcard-page [hidden],
.site-footer [hidden] {
  display: none !important;
}

.vcard-page .vcard-contact-icon .vcard-brand-icon {
  fill: currentColor;
  stroke: none;
}

.vcard-page .vcard-heading p {
  display: none;
}

@media (max-width: 520px) {
  .vcard-page .vcard-contact-list {
    gap: 8px;
    margin: 2px 16px 18px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .vcard-page .vcard-contact-button {
    border: 1px solid rgba(0, 85, 102, 0.14);
    border-radius: 15px;
    background:
      linear-gradient(135deg, rgba(0, 85, 102, 0.1), rgba(240, 127, 25, 0.075)),
      rgba(255, 255, 255, 0.84);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.86),
      0 12px 26px -26px rgba(0, 85, 102, 0.5);
  }

  .vcard-page .vcard-contact-button + .vcard-contact-button {
    border-top: 1px solid rgba(0, 85, 102, 0.14);
  }
}

@media (max-width: 380px) {
  .vcard-cover {
    height: 82px;
  }

  .vcard-logo-wrap {
    width: 78px;
    height: 78px;
    margin-top: -40px;
  }

  .vcard-heading {
    padding-inline: 16px;
  }

  .vcard-heading h1 {
    font-size: 1.52rem;
  }

  .vcard-heading p {
    font-size: 0.86rem;
  }

  .vcard-box-body,
  .vcard-link-grid {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* vCard polish pass */
.vcard-page .bewertungen-hero {
  background:
    linear-gradient(90deg, rgba(246, 242, 235, 0.94) 0%, rgba(246, 242, 235, 0.72) 42%, rgba(246, 242, 235, 0.5) 100%),
    url("assets/bg.jpg") center / cover;
}

.vcard-page .bewertungen-hero::after {
  display: none;
}

.vcard-page .bewertungen-hero::before {
  background:
    radial-gradient(circle at 49% 16%, rgba(240, 127, 25, 0.18), transparent 18%),
    radial-gradient(circle at 52% 42%, rgba(0, 85, 102, 0.16), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 44%, rgba(255, 255, 255, 0.18));
  opacity: 1;
  mix-blend-mode: normal;
}

.vcard-page .vcard-shell {
  min-height: min(720px, calc(100vh - var(--header-offset) - 40px));
  align-items: center;
}

.vcard-page .vcard-card {
  width: min(100%, 442px);
  border: 0;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.96));
  box-shadow:
    0 44px 90px -56px rgba(15, 26, 28, 0.62),
    0 18px 40px -34px rgba(0, 85, 102, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.vcard-page .vcard-card::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent));
}

.vcard-page .vcard-cover {
  height: 132px;
  background: #114d58;
}

.vcard-page .vcard-cover img {
  opacity: 0.9;
  filter: saturate(1.02) contrast(1.02);
}

.vcard-page .vcard-logo-wrap {
  width: 96px;
  height: 96px;
  margin-top: -50px;
  padding: 9px;
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 18px 36px -26px rgba(13, 26, 30, 0.7),
    0 0 0 1px rgba(42, 49, 51, 0.06);
}

.vcard-page .vcard-heading {
  padding: 14px 30px 0;
}

.vcard-page .vcard-heading .bewertungen-eyebrow {
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.vcard-page .vcard-heading h1 {
  font-size: clamp(1.92rem, 4vw, 2.28rem);
  font-weight: 850;
  letter-spacing: 0;
}

.vcard-page .vcard-heading p {
  max-width: 24rem;
  color: rgba(42, 49, 51, 0.68);
  font-size: 0.94rem;
}

.vcard-page .vcard-actions {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 12px;
  padding: 22px 24px 14px;
}

.vcard-page .vcard-action {
  min-width: 0;
  min-height: 48px;
  border-radius: 15px;
  font-size: 0.84rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.vcard-page .vcard-action-primary {
  background:
    linear-gradient(135deg, #ff8a17, #f07f19 58%, #d96b08);
  box-shadow: 0 18px 34px -24px rgba(240, 127, 25, 0.95);
}

.vcard-page .vcard-action-secondary {
  background:
    linear-gradient(180deg, rgba(0, 85, 102, 0.1), rgba(0, 85, 102, 0.04));
  color: var(--brand-blue);
  border-color: rgba(0, 85, 102, 0.18);
}

.vcard-page .vcard-phone-strip {
  grid-template-columns: 50px 1fr;
  min-height: 72px;
  margin: 0 24px 14px;
  padding: 11px 16px;
  border-color: rgba(0, 85, 102, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 85, 102, 0.11), rgba(240, 127, 25, 0.09)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 32px -30px rgba(0, 85, 102, 0.5);
}

.vcard-page .vcard-phone-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.vcard-page .vcard-phone-strip small {
  color: rgba(42, 49, 51, 0.56);
  font-size: 0.76rem;
}

.vcard-page .vcard-phone-strip strong {
  font-size: 1.34rem;
  letter-spacing: 0.01em;
}

.vcard-page .vcard-accordion {
  gap: 12px;
  padding: 0 24px 26px;
}

.vcard-page .vcard-box {
  border-color: rgba(42, 49, 51, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 245, 238, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.vcard-page .vcard-box summary {
  min-height: 62px;
  padding: 11px 14px;
  font-size: 0.98rem;
}

.vcard-page .vcard-box-icon {
  background: #ffffff;
  color: var(--brand-blue);
}

.vcard-page .vcard-box-body {
  padding: 0 26px 20px 68px;
}

.vcard-page .vcard-row span {
  margin-bottom: 3px;
  color: rgba(42, 49, 51, 0.52);
}

.vcard-page .vcard-row strong,
.vcard-page .vcard-row a,
.vcard-page .vcard-address {
  font-size: 0.96rem;
  font-weight: 800;
}

.vcard-page .vcard-map-button {
  background: rgba(0, 85, 102, 0.12);
}

@media (min-width: 1100px) {
  .vcard-page .vcard-hero {
    padding-top: 28px;
  }
}

@media (max-width: 700px) {
  .vcard-page .bewertungen-hero {
    background:
      linear-gradient(180deg, rgba(246, 242, 235, 0.94), rgba(246, 242, 235, 0.82)),
      url("assets/bg.jpg") center / cover;
  }

  .vcard-page .vcard-shell {
    min-height: auto;
  }

  .vcard-page .vcard-card {
    width: min(100%, 390px);
    border-radius: 26px;
  }

  .vcard-page .vcard-cover {
    height: 108px;
  }

  .vcard-page .vcard-actions {
    grid-template-columns: 1fr;
    padding: 18px 18px 12px;
  }

  .vcard-page .vcard-action {
    justify-content: center;
  }

  .vcard-page .vcard-phone-strip {
    margin-inline: 18px;
  }

  .vcard-page .vcard-accordion {
    margin-inline: 18px;
    padding-inline: 0;
  }
}

@media (max-width: 380px) {
  .vcard-page .vcard-card {
    border-radius: 22px;
  }

  .vcard-page .vcard-heading h1 {
    font-size: 1.72rem;
  }

  .vcard-page .vcard-phone-strip {
    grid-template-columns: 44px 1fr;
    padding: 10px 12px;
  }

  .vcard-page .vcard-phone-icon {
    width: 44px;
    height: 44px;
  }
}

.vcard-page .vcard-contact-list {
  display: grid;
  gap: 10px;
  margin: 0 24px 16px;
}

.vcard-page .vcard-contact-button {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 11px 16px;
  border: 1px solid rgba(0, 85, 102, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 85, 102, 0.1), rgba(240, 127, 25, 0.075)),
    rgba(255, 255, 255, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 14px 32px -30px rgba(0, 85, 102, 0.55);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.vcard-page .vcard-contact-button:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 127, 25, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 34px -28px rgba(0, 85, 102, 0.62);
}

.vcard-page .vcard-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, #ff8a17, #f07f19 62%, #d96b08);
  color: #ffffff;
  box-shadow: 0 14px 24px -20px rgba(240, 127, 25, 0.95);
}

.vcard-page .vcard-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.95;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vcard-page .vcard-contact-copy {
  min-width: 0;
}

.vcard-page .vcard-contact-copy small {
  display: block;
  margin-bottom: 2px;
  color: rgba(42, 49, 51, 0.5);
  font-size: 0.76rem;
  font-weight: 800;
}

.vcard-page .vcard-contact-copy strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--services-title);
  font-size: 1.06rem;
  font-weight: 850;
  line-height: 1.18;
}

.vcard-page .vcard-phone-strip {
  display: none;
}

@media (max-width: 700px) {
  .vcard-page .vcard-contact-list {
    margin-inline: 18px;
  }
}

@media (max-width: 380px) {
  .vcard-page .vcard-contact-button {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 66px;
    padding: 10px 12px;
  }

  .vcard-page .vcard-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .vcard-page .vcard-contact-copy strong {
    font-size: 0.94rem;
  }

}

/* vCard wide desktop layout */
@media (min-width: 901px) {
  .vcard-page .vcard-hero {
    min-height: calc(100vh - var(--header-offset));
    padding: 42px 0;
  }

  .vcard-page .vcard-shell {
    width: min(1240px, calc(100vw - 64px));
    max-width: none;
    min-height: calc(100vh - var(--header-offset) - 84px);
  }

  .vcard-page .vcard-card {
    display: grid;
    grid-template-columns: minmax(430px, 0.96fr) minmax(390px, 1fr);
    grid-template-areas:
      "cover contacts"
      "logo contacts"
      "heading contacts"
      "actions contacts";
    align-content: start;
    align-items: start;
    column-gap: 50px;
    width: 100%;
    max-width: 1180px;
    min-height: 0;
    padding: 0 48px 42px 0;
    overflow: hidden;
  }

  .vcard-page .vcard-card::before {
    display: none;
  }

  .vcard-page .vcard-cover {
    grid-area: cover;
    height: 292px;
    border-radius: 30px 0 30px 0;
  }

  .vcard-page .vcard-logo-wrap {
    grid-area: logo;
    justify-self: center;
    margin-top: -54px;
    position: relative;
    z-index: 2;
  }

  .vcard-page .vcard-heading {
    grid-area: heading;
    padding: 18px 34px 0;
  }

  .vcard-page .vcard-heading h1 {
    font-size: clamp(2.25rem, 3vw, 3.15rem);
  }

  .vcard-page .vcard-heading p {
    font-size: 1.02rem;
  }

  .vcard-page .vcard-actions {
    grid-area: actions;
    width: min(470px, calc(100% - 68px));
    justify-self: center;
    padding: 28px 0 0;
  }

  .vcard-page .vcard-contact-list {
    grid-area: contacts;
    align-self: center;
    gap: 14px;
    margin: 0;
    padding: 48px 0 6px;
    width: 100%;
  }

  .vcard-page .vcard-contact-button {
    min-height: 78px;
    border-radius: 20px;
  }

  .vcard-page .vcard-contact-copy strong {
    font-size: 1.08rem;
  }

}

/* vCard phone layout */
@media (max-width: 900px) {
  .vcard-page .vcard-card {
    display: block;
  }
}

@media (max-width: 520px) {
  .vcard-page .vcard-hero {
    padding-bottom: 16px;
  }

  .vcard-page .vcard-card {
    width: min(100%, 372px);
  }

  .vcard-page .vcard-cover {
    height: 86px;
  }

  .vcard-page .vcard-logo-wrap {
    width: 76px;
    height: 76px;
    margin-top: -38px;
  }

  .vcard-page .vcard-heading {
    padding-top: 10px;
  }

  .vcard-page .vcard-heading .bewertungen-eyebrow {
    margin-bottom: 6px;
    font-size: 0.62rem;
  }

  .vcard-page .vcard-heading h1 {
    font-size: 1.72rem;
  }

  .vcard-page .vcard-heading p {
    margin-top: 6px;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .vcard-page .vcard-actions {
    gap: 8px;
    padding: 14px 16px 10px;
  }

  .vcard-page .vcard-action {
    min-height: 40px;
  }

  .vcard-page .vcard-contact-list {
    gap: 8px;
    margin: 0 16px 18px;
  }

  .vcard-page .vcard-contact-button {
    min-height: 62px;
    border-radius: 15px;
  }
}

.vcard-page .vcard-logo-wrap {
  width: min(280px, 62%);
  height: 74px;
  margin-top: -38px;
  padding: 12px 18px;
  border: 4px solid rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
}

.vcard-page .vcard-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 901px) {
  .vcard-page .vcard-logo-wrap {
    width: min(320px, 68%);
    height: 82px;
    margin-top: -42px;
    border-radius: 22px;
  }
}

@media (max-width: 520px) {
  .vcard-page .vcard-logo-wrap {
    width: min(230px, 68%);
    height: 62px;
    margin-top: -31px;
    padding: 10px 14px;
    border-radius: 18px;
  }
}

.vcard-page .vcard-banner-logo-wrap {
  grid-area: logo;
  display: grid;
  place-items: center;
  width: min(310px, 72%);
  height: 76px;
  margin: -38px auto 0;
  padding: 12px 18px;
  border: 4px solid rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 18px 36px -26px rgba(13, 26, 30, 0.42),
    0 0 0 1px rgba(42, 49, 51, 0.06);
  position: relative;
  z-index: 2;
}

.vcard-page .vcard-banner-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 901px) {
  .vcard-page .vcard-banner-logo-wrap {
    justify-self: center;
    width: min(350px, 74%);
    height: 86px;
    margin-top: -43px;
    border-radius: 20px;
  }
}

@media (max-width: 520px) {
  .vcard-page .vcard-banner-logo-wrap {
    width: min(245px, 74%);
    height: 62px;
    margin-top: -31px;
    padding: 10px 14px;
  }
}

.vcard-page .vcard-cover {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(246, 242, 235, 0.36)),
    url("assets/bg.jpg") center / cover;
  position: relative;
}

.vcard-page .vcard-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.46), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 250, 244, 0.38));
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  pointer-events: none;
}

.vcard-page .vcard-cover img.vcard-cover-logo {
  position: relative;
  z-index: 1;
  width: min(82%, 420px);
  height: auto;
  max-height: 72%;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

.vcard-page .vcard-logo-wrap {
  width: 88px;
  height: 88px;
  margin-top: -44px;
  padding: 8px;
  border: 4px solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
}

@media (min-width: 901px) {
  .vcard-page .vcard-logo-wrap {
    width: 96px;
    height: 96px;
    margin-top: -48px;
  }
}

@media (max-width: 520px) {
  .vcard-page .vcard-cover img.vcard-cover-logo {
    width: min(84%, 280px);
  }

  .vcard-page .vcard-logo-wrap {
    width: 72px;
    height: 72px;
    margin-top: -36px;
  }
}

@media (max-width: 520px) {
  body.vcard-page .topbar-inner {
    min-height: 46px;
    padding-inline: 16px;
    font-size: 0.86rem;
  }

  body.vcard-page .topbar-left,
  body.vcard-page .topbar-right {
    gap: 12px;
  }

  body.vcard-page .contact-link {
    gap: 6px;
  }

  body.vcard-page .contact-icon,
  body.vcard-page .topbar-social-icon,
  body.vcard-page .contact-location .contact-icon {
    width: 15px;
    height: 15px;
  }

  body.vcard-page .navbar-inner {
    min-height: 66px;
    padding-inline: 14px;
    gap: 10px;
  }

  body.vcard-page .logo img {
    width: min(176px, 44vw);
  }

  body.vcard-page .logo {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  body.vcard-page .nav-controls {
    gap: 8px;
  }

  body.vcard-page .switch {
    width: 50px;
    height: 30px;
  }

  body.vcard-page .slider {
    border-radius: 11px;
  }

  body.vcard-page .slider::before {
    left: 4px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 7px;
  }

  body.vcard-page .switch input:checked + .slider::before {
    transform: translateX(20px);
  }

  body.vcard-page .switch-icon {
    width: 12px;
    height: 12px;
  }

  body.vcard-page .switch-light {
    left: 8px;
  }

  body.vcard-page .switch-dark {
    right: 8px;
  }

  body.vcard-page .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  body.vcard-page .menu-toggle span {
    width: 17px;
  }

  body.vcard-page main {
    padding-top: 112px;
  }

  .vcard-page .vcard-hero {
    min-height: calc(100svh - 112px);
    padding: 10px 0 14px;
  }

  .vcard-page .vcard-shell {
    width: 100%;
    padding-inline: 14px;
  }

  .vcard-page .vcard-card {
    width: 100%;
    max-width: 390px;
    border-radius: 22px;
  }

  .vcard-page .vcard-card::before {
    height: 4px;
  }

  .vcard-page .vcard-cover {
    display: none;
  }

  .vcard-page .vcard-cover img.vcard-cover-logo {
    width: min(76%, 240px);
  }

  .vcard-page .vcard-logo-wrap {
    display: none;
  }

  .vcard-page .vcard-heading {
    padding: 24px 22px 0;
  }

  .vcard-page .vcard-heading .bewertungen-eyebrow {
    margin-bottom: 5px;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .vcard-page .vcard-heading h1 {
    font-size: 1.64rem;
    line-height: 1.05;
  }

  .vcard-page .vcard-heading p {
    margin-top: 5px;
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .vcard-page .vcard-actions {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 16px 10px;
  }

  .vcard-page .vcard-action {
    min-height: 42px;
    padding: 8px 10px;
    border-radius: 14px;
    font-size: 0.82rem;
  }

  .vcard-page #save-contact span:last-child {
    font-size: 0;
  }

  .vcard-page #save-contact span:last-child::after {
    content: "Speichern";
    font-size: 0.82rem;
  }

  .vcard-page .vcard-action-icon {
    width: 18px;
    height: 18px;
  }

  .vcard-page .vcard-contact-list {
    gap: 8px;
    margin: 0 16px 16px;
  }

  .vcard-page .vcard-contact-button {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    min-height: 58px;
    padding: 8px 12px;
    border-radius: 15px;
  }

  .vcard-page .vcard-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .vcard-page .vcard-contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .vcard-page .vcard-contact-copy small {
    margin-bottom: 1px;
    font-size: 0.68rem;
  }

  .vcard-page .vcard-contact-copy strong {
    font-size: 0.95rem;
    line-height: 1.15;
  }
}

@media (max-width: 370px) {
  .vcard-page .vcard-actions {
    grid-template-columns: 1fr;
  }

  .vcard-page .vcard-heading h1 {
    font-size: 1.42rem;
  }

  .vcard-page .vcard-contact-copy strong {
    font-size: 0.9rem;
  }
}

@media (max-width: 520px) {
  body.vcard-page main {
    padding-top: 112px;
  }

  .vcard-page .vcard-hero {
    min-height: calc(100svh - 112px);
    align-items: center;
    padding: 14px 0 18px;
    background:
      linear-gradient(180deg, rgba(246, 242, 235, 0.96), rgba(246, 242, 235, 0.86)),
      url("assets/bg.jpg") center / cover;
  }

  .vcard-page .vcard-hero::before,
  .vcard-page .vcard-hero::after {
    display: none;
  }

  .vcard-page .vcard-shell {
    padding-inline: 16px;
  }

  .vcard-page .vcard-card {
    position: relative;
    width: min(100%, 374px);
    min-height: auto;
    border: 1px solid rgba(0, 85, 102, 0.14);
    border-radius: 30px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.96));
    box-shadow:
      0 28px 60px -48px rgba(15, 26, 28, 0.58),
      0 14px 32px -30px rgba(0, 85, 102, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .vcard-page .vcard-card::before {
    display: none;
  }

  .vcard-page .vcard-cover {
    display: block;
    position: relative;
    height: 112px;
    border-radius: 29px 29px 0 0;
    background:
      linear-gradient(135deg, rgba(0, 85, 102, 0.25), rgba(240, 127, 25, 0.12)),
      url("assets/bg.jpg") center / cover;
  }

  .vcard-page .vcard-cover::before {
    display: block;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 250, 244, 0.18));
    backdrop-filter: blur(1.8px);
    -webkit-backdrop-filter: blur(1.8px);
  }

  .vcard-page .vcard-cover img.vcard-cover-logo {
    display: block;
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 1;
    width: min(48%, 178px);
    max-height: 52%;
    opacity: 1;
    filter: none;
  }

  .vcard-page .vcard-logo-wrap {
    display: grid;
    position: relative;
    z-index: 3;
    width: 76px;
    height: 76px;
    margin: -38px auto 0;
    padding: 8px;
    border: 4px solid rgba(255, 255, 255, 0.98);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 16px 34px -26px rgba(13, 26, 30, 0.68),
      0 0 0 1px rgba(42, 49, 51, 0.06);
  }

  .vcard-page .vcard-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .vcard-page .vcard-heading {
    padding: 10px 22px 0;
  }

  .vcard-page .vcard-heading .bewertungen-eyebrow {
    display: none;
  }

  .vcard-page .vcard-heading::before {
    content: "Digitale Visitenkarte";
    display: block;
    margin-bottom: 6px;
    color: var(--accent);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .vcard-page .vcard-heading h1 {
    color: var(--services-title);
    font-size: 1.46rem;
    font-weight: 850;
  }

  .vcard-page .vcard-heading p {
    display: none;
  }

  .vcard-page .vcard-actions {
    position: absolute;
    top: 18px;
    right: 14px;
    left: auto;
    z-index: 4;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 0;
  }

  .vcard-page .vcard-action {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    line-height: 1;
    box-shadow: none;
  }

  .vcard-page .vcard-action-primary {
    order: 2;
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 12px 24px -20px rgba(240, 127, 25, 0.9);
  }

  .vcard-page #save-contact span:last-child {
    font-size: 0;
  }

  .vcard-page #save-contact span:last-child::after {
    content: "Kontakt";
    font-size: 0.68rem;
  }

  .vcard-page .vcard-action-secondary {
    order: 1;
    width: 34px;
    padding: 0;
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand-blue);
    border-color: rgba(0, 85, 102, 0.1);
  }

  .vcard-page .vcard-action-secondary span:last-child {
    display: none;
  }

  .vcard-page .vcard-action-icon,
  .vcard-page .vcard-action-icon svg {
    width: 16px;
    height: 16px;
  }

  .vcard-page .vcard-contact-list {
    gap: 0;
    margin: 0 16px 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 85, 102, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
  }

  .vcard-page .vcard-contact-button {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    min-height: 54px;
    padding: 7px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .vcard-page .vcard-contact-button + .vcard-contact-button {
    border-top: 1px solid rgba(0, 85, 102, 0.08);
  }

  .vcard-page .vcard-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background:
      linear-gradient(135deg, #ff8a17, #f07f19 62%, #d96b08);
    color: #ffffff;
    box-shadow: 0 10px 20px -18px rgba(240, 127, 25, 0.9);
  }

  .vcard-page .vcard-contact-icon svg {
    width: 16px;
    height: 16px;
  }

  .vcard-page .vcard-contact-copy small {
    margin-bottom: 1px;
    color: rgba(42, 49, 51, 0.5);
    font-size: 0.64rem;
    font-weight: 800;
  }

  .vcard-page .vcard-contact-copy strong {
    color: var(--services-title);
    font-size: 0.84rem;
    font-weight: 850;
    line-height: 1.15;
  }
}

@media (max-width: 520px) {
/* Final vCard layout override: mobile card arrangement */
body.vcard-page main {
  padding-top: var(--header-offset);
}

.vcard-page .vcard-hero {
  min-height: calc(100svh - var(--header-offset));
  align-items: center;
  padding: 18px 0 22px;
  background:
    linear-gradient(180deg, rgba(246, 242, 235, 0.96), rgba(246, 242, 235, 0.86)),
    url("assets/bg.jpg") center / cover;
}

.vcard-page .vcard-hero::before,
.vcard-page .vcard-hero::after {
  display: none;
}

.vcard-page .vcard-shell {
  min-height: auto;
  align-items: center;
  padding-inline: 16px;
}

.vcard-page .vcard-card {
  position: relative;
  display: block;
  width: min(100%, 374px);
  min-height: auto;
  overflow: hidden;
  border: 1px solid rgba(0, 85, 102, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.96));
  box-shadow:
    0 28px 60px -48px rgba(15, 26, 28, 0.58),
    0 14px 32px -30px rgba(0, 85, 102, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.vcard-page .vcard-card::before {
  display: none;
}

.vcard-page .vcard-cover {
  position: relative;
  display: block;
  height: 112px;
  border-radius: 29px 29px 0 0;
  background:
    linear-gradient(135deg, rgba(0, 85, 102, 0.25), rgba(240, 127, 25, 0.12)),
    url("assets/bg.jpg") center / cover;
}

.vcard-page .vcard-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 250, 244, 0.18));
  backdrop-filter: blur(1.8px);
  -webkit-backdrop-filter: blur(1.8px);
  pointer-events: none;
}

.vcard-page .vcard-cover img.vcard-cover-logo {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  display: block;
  width: min(48%, 178px);
  max-height: 52%;
  opacity: 1;
  filter: none;
}

.vcard-page .vcard-logo-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  width: 76px;
  height: 76px;
  margin: -38px auto 0;
  padding: 8px;
  border: 4px solid rgba(255, 255, 255, 0.98);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 16px 34px -26px rgba(13, 26, 30, 0.68),
    0 0 0 1px rgba(42, 49, 51, 0.06);
}

.vcard-page .vcard-heading {
  padding: 12px 22px 14px;
  text-align: center;
}

.vcard-page .vcard-heading .bewertungen-eyebrow,
.vcard-page .vcard-heading p {
  display: none;
}

.vcard-page .vcard-heading::before {
  content: "Digitale Visitenkarte";
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vcard-page .vcard-heading h1 {
  color: var(--services-title);
  font-size: clamp(1.28rem, 6.8vw, 1.46rem);
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
}

.vcard-page .vcard-actions {
  position: absolute;
  top: 18px;
  right: 14px;
  left: auto;
  z-index: 4;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  width: auto;
  padding: 0;
}

.vcard-page .vcard-action {
  min-width: 0;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
}

.vcard-page .vcard-action-primary {
  order: 2;
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 24px -20px rgba(240, 127, 25, 0.9);
}

.vcard-page #save-contact span:last-child {
  font-size: 0;
}

.vcard-page #save-contact span:last-child::after {
  content: "Kontakt";
  font-size: 0.68rem;
}

.vcard-page .vcard-action-secondary {
  order: 1;
  width: 34px;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-blue);
  border-color: rgba(0, 85, 102, 0.1);
}

.vcard-page .vcard-action-secondary span:last-child {
  display: none;
}

.vcard-page .vcard-action-icon,
.vcard-page .vcard-action-icon svg {
  width: 16px;
  height: 16px;
}

.vcard-page .vcard-contact-list {
  display: grid;
  gap: 0;
  width: auto;
  margin: 2px 16px 18px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 85, 102, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.vcard-page .vcard-contact-button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  min-height: 54px;
  padding: 7px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.vcard-page .vcard-contact-button + .vcard-contact-button {
  border-top: 1px solid rgba(0, 85, 102, 0.08);
}

.vcard-page .vcard-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #ff8a17, #f07f19 62%, #d96b08);
  color: #ffffff;
  box-shadow: 0 10px 20px -18px rgba(240, 127, 25, 0.9);
}

.vcard-page .vcard-contact-icon svg {
  width: 16px;
  height: 16px;
}

.vcard-page .vcard-contact-copy small {
  margin-bottom: 1px;
  color: rgba(42, 49, 51, 0.5);
  font-size: 0.64rem;
  font-weight: 800;
}

.vcard-page .vcard-contact-copy strong {
  color: var(--services-title);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.15;
}
}

@media (max-width: 520px) {
  body.vcard-page main {
    padding-top: 112px;
  }

  .vcard-page .vcard-hero {
    min-height: calc(100svh - 112px);
    padding: 14px 0 18px;
  }
}

/* Final display tweaks */
.vcard-page .vcard-heading p {
  display: none;
}

@media (max-width: 520px) {
  .vcard-page .vcard-contact-list {
    gap: 8px;
    margin: 2px 16px 18px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .vcard-page .vcard-contact-button {
    border: 1px solid rgba(0, 85, 102, 0.14);
    border-radius: 15px;
    background:
      linear-gradient(135deg, rgba(0, 85, 102, 0.1), rgba(240, 127, 25, 0.075)),
      rgba(255, 255, 255, 0.84);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.86),
      0 12px 26px -26px rgba(0, 85, 102, 0.5);
  }

  .vcard-page .vcard-contact-button + .vcard-contact-button {
    border-top: 1px solid rgba(0, 85, 102, 0.14);
  }
}
