:root {
      --bordeaux: #7b1832;
      --bordeaux-dark: #541020;
      --bordeaux-soft: #f7eef1;
      --anthracite: #23262b;
      --ink: #16181b;
      --muted: #626872;
      --line: #e7e1de;
      --paper: #ffffff;
      --stone: #f5f3f0;
      --warm: #c9a36a;
      --success: #1f6b4d;
      --shadow: 0 18px 48px rgba(22, 24, 27, .12);
      --radius: 8px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.55;
      letter-spacing: 0;
    }

    body.menu-open {
      overflow: hidden;
    }

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

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

    button,
    input,
    textarea,
    select {
      font: inherit;
      letter-spacing: 0;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
      outline: 3px solid rgba(201, 163, 106, .78);
      outline-offset: 3px;
    }

    [hidden] {
      display: none !important;
    }

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

    .skip-link {
      position: fixed;
      left: 16px;
      top: 12px;
      z-index: 50;
      transform: translateY(-140%);
      background: var(--paper);
      color: var(--anthracite);
      padding: 10px 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

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

    .topbar {
      position: sticky;
      top: 0;
      z-index: 30;
      border-bottom: 1px solid rgba(35, 38, 43, .1);
      background: rgba(255, 255, 255, .97);
      color: var(--anthracite);
      backdrop-filter: blur(14px);
      box-shadow: 0 8px 28px rgba(22, 24, 27, .08);
    }

    .nav {
      width: min(var(--max), calc(100% - 32px));
      min-height: 100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 204px;
      padding: 0;
      color: inherit;
    }

    .brand-logo {
      width: 200px;
      height: auto;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .nav-links a {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      padding: 0 13px;
      border-radius: var(--radius);
      color: rgba(35, 38, 43, .76);
      font-size: 14px;
      font-weight: 700;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--bordeaux);
      background: var(--bordeaux-soft);
    }

    .nav-dropdown {
      position: relative;
      display: inline-flex;
      align-items: center;
    }

    .nav-dropdown::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      height: 12px;
    }

    .nav-trigger {
      gap: 6px;
    }

    .nav-chevron {
      width: 14px;
      height: 14px;
      transition: transform .18s ease;
    }

    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      z-index: 45;
      width: 292px;
      display: grid;
      gap: 4px;
      padding: 10px;
      border: 1px solid rgba(35, 38, 43, .12);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .98);
      box-shadow: 0 20px 50px rgba(22, 24, 27, .16);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-6px);
      visibility: hidden;
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .nav-dropdown-menu a {
      min-height: 38px;
      justify-content: flex-start;
      padding: 0 10px;
      color: var(--anthracite);
      font-size: 13px;
      font-weight: 780;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
      visibility: visible;
    }

    .nav-dropdown:hover .nav-chevron,
    .nav-dropdown:focus-within .nav-chevron {
      transform: rotate(180deg);
    }

    .mobile-subnav {
      display: none;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .icon-button,
    .menu-toggle {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(35, 38, 43, .16);
      border-radius: var(--radius);
      display: inline-grid;
      place-items: center;
      color: var(--anthracite);
      background: rgba(255, 255, 255, .82);
      cursor: pointer;
    }

    .icon-button:hover,
    .icon-button:focus-visible,
    .menu-toggle:hover,
    .menu-toggle:focus-visible {
      border-color: rgba(123, 24, 50, .28);
      color: var(--bordeaux);
      background: var(--bordeaux-soft);
    }

    .menu-toggle {
      display: none;
    }

    .accessibility-wrap {
      position: relative;
    }

    .accessibility-panel {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      z-index: 42;
      width: min(300px, calc(100vw - 32px));
      padding: 14px;
      border: 1px solid rgba(35, 38, 43, .14);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .98);
      box-shadow: var(--shadow);
      color: var(--anthracite);
    }

    .accessibility-panel[hidden] {
      display: none;
    }

    .accessibility-title {
      margin: 0 0 12px;
      color: var(--anthracite);
      font-size: 14px;
      font-weight: 900;
    }

    .accessibility-group + .accessibility-group {
      margin-top: 12px;
    }

    .accessibility-label {
      display: block;
      margin-bottom: 7px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 850;
      text-transform: uppercase;
    }

    .accessibility-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .accessibility-option {
      min-height: 42px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      color: var(--anthracite);
      font-weight: 850;
      cursor: pointer;
    }

    .accessibility-option[aria-pressed="true"] {
      border-color: var(--bordeaux);
      background: var(--bordeaux);
      color: #fff;
    }

    body.text-large {
      font-size: 17px;
    }

    body.text-large .accessibility-panel,
    body.text-large .accessibility-option {
      font-size: 14px;
    }

    body.text-large .nav-links a,
    body.text-large .nav-dropdown-menu a,
    body.text-large .service-nav a {
      font-size: 15px;
    }

    body.text-large .btn,
    body.text-large input,
    body.text-large textarea,
    body.text-large select {
      font-size: 16px;
      line-height: 1.2;
    }

    body.text-large label {
      font-size: 14px;
    }

    body.text-large .hero-lead {
      max-width: 720px;
      font-size: clamp(19px, 2.2vw, 24px);
    }

    body.text-large .lead,
    body.text-large .section-head p {
      font-size: 18px;
    }

    body.text-large .feature h3,
    body.text-large .service h3,
    body.text-large .job h3,
    body.text-large .faq-item h3,
    body.text-large .visual-card h3 {
      font-size: 20px;
    }

    body.text-large .step h3 {
      font-size: 21px;
    }

    body.text-large .material-expertise h3 {
      font-size: 25px;
    }

    body.text-large .feature p,
    body.text-large .service p,
    body.text-large .service-detail-copy p,
    body.text-large .service-detail-list,
    body.text-large .service-fact,
    body.text-large .job p,
    body.text-large .faq-item p,
    body.text-large .step p,
    body.text-large .contact-page-lead,
    body.text-large .contact-page-copy p,
    body.text-large .contact-person-content p,
    body.text-large .contact-person-list,
    body.text-large .material-expertise p:not(.kicker),
    body.text-large .contact-card span,
    body.text-large .contact-card a {
      font-size: 16px;
    }

    body.text-large .visual-card p {
      font-size: 15px;
    }

    body.text-large .tag,
    body.text-large .material-points li,
    body.text-large .form-note,
    body.text-large .form-status {
      font-size: 14px;
    }

    body.text-large .footer p,
    body.text-large .footer a,
    body.text-large .footer li {
      font-size: 15px;
    }

    body.theme-dark {
      color: #f3f0ea;
      background: #111317;
    }

    body.theme-dark .topbar,
    body.theme-dark .nav-dropdown-menu,
    body.theme-dark .mobile-panel,
    body.theme-dark .accessibility-panel {
      border-color: rgba(255, 255, 255, .12);
      background: rgba(21, 24, 29, .98);
      color: #f3f0ea;
    }

    body.theme-dark .nav-links a,
    body.theme-dark .nav-dropdown-menu a,
    body.theme-dark .accessibility-title,
    body.theme-dark .accessibility-option,
    body.theme-dark h2,
    body.theme-dark h3,
    body.theme-dark .contact-card strong,
    body.theme-dark label {
      color: #f3f0ea;
    }

    body.theme-dark .icon-button,
    body.theme-dark .menu-toggle,
    body.theme-dark .accessibility-option,
    body.theme-dark input,
    body.theme-dark textarea,
    body.theme-dark select {
      border-color: rgba(255, 255, 255, .18);
      background: #191d23;
      color: #f3f0ea;
    }

    body.theme-dark .accessibility-option[aria-pressed="true"],
    .accessibility-option[aria-pressed="true"] {
      border-color: var(--bordeaux);
      background: var(--bordeaux);
      color: #fff;
    }

    body.theme-dark .icon-button:hover,
    body.theme-dark .icon-button:focus-visible,
    body.theme-dark .menu-toggle:hover,
    body.theme-dark .menu-toggle:focus-visible,
    body.theme-dark .nav-links a:hover,
    body.theme-dark .nav-links a:focus-visible,
    body.theme-dark .nav-dropdown-menu a:hover,
    body.theme-dark .nav-dropdown-menu a:focus-visible {
      background: rgba(123, 24, 50, .28);
      color: #fff;
    }

    body.theme-dark .section,
    body.theme-dark .section-soft,
    body.theme-dark main {
      background: #111317;
    }

    body.theme-dark .feature-card,
    body.theme-dark .service-card,
    body.theme-dark .service-nav,
    body.theme-dark .service-spotlight,
    body.theme-dark .job,
    body.theme-dark .faq-item,
    body.theme-dark .contact-card,
    body.theme-dark .contact-person-panel,
    body.theme-dark .service-detail-card,
    body.theme-dark .service-detail-cta,
    body.theme-dark .form,
    body.theme-dark .hero-proof,
    body.theme-dark .consent-field,
    body.theme-dark .coverage-card {
      border-color: rgba(255, 255, 255, .12);
      background: #171a20;
      color: #f3f0ea;
      box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
    }

    body.theme-dark p,
    body.theme-dark .contact-page-copy p,
    body.theme-dark .contact-person-content p,
    body.theme-dark .contact-person-list,
    body.theme-dark .service-detail-copy p,
    body.theme-dark .service-detail-list,
    body.theme-dark .service-fact,
    body.theme-dark .contact-card span,
    body.theme-dark .contact-card a,
    body.theme-dark .form-note,
    body.theme-dark .accessibility-label,
    body.theme-dark .footer p,
    body.theme-dark .footer a,
    body.theme-dark .footer li {
      color: rgba(243, 240, 234, .78);
    }

    body.theme-dark .feature,
    body.theme-dark .service {
      border-color: var(--line);
      background: var(--paper);
      color: var(--anthracite);
    }

    body.theme-dark .virtual-map {
      background:
        radial-gradient(circle at 48% 48%, rgba(201, 163, 106, .2) 0 10%, transparent 10.5%),
        radial-gradient(circle at 48% 48%, transparent 0 20%, rgba(201, 163, 106, .12) 20.5% 21.5%, transparent 22%),
        radial-gradient(circle at 48% 48%, transparent 0 35%, rgba(201, 163, 106, .14) 35.5% 36.5%, transparent 37%),
        radial-gradient(circle at 48% 48%, transparent 0 49%, rgba(201, 163, 106, .16) 49.5% 50.5%, transparent 51%),
        linear-gradient(135deg, #171a20, #20242b);
    }

    body.theme-dark .map-place {
      border-color: rgba(255, 255, 255, .14);
      background: rgba(17, 19, 23, .92);
      color: #f3f0ea;
    }

    body.theme-dark .map-radius-label {
      color: rgba(243, 240, 234, .78);
    }

    body.theme-dark .service-nav a,
    body.theme-dark .service-list li,
    body.theme-dark .credential,
    body.theme-dark .area-strip,
    body.theme-dark .process-step,
    body.theme-dark .quote-panel {
      border-color: rgba(255, 255, 255, .12);
      background: #171a20;
      color: #f3f0ea;
    }

    body.theme-dark .area-strip strong {
      color: #fff;
    }

    body.theme-dark .contact-person-role {
      color: var(--warm);
    }

    body.theme-dark .footer {
      background: #090a0d;
    }

    .hero {
      position: relative;
      height: calc(100vh - 150px);
      min-height: 520px;
      max-height: 680px;
      isolation: isolate;
      color: var(--paper);
      overflow: hidden;
      background: var(--anthracite);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: -4%;
      z-index: -2;
      background-image: linear-gradient(90deg, rgba(22, 24, 27, .92) 0%, rgba(35, 38, 43, .78) 34%, rgba(35, 38, 43, .28) 62%, rgba(35, 38, 43, .48) 100%), url("hero-reinigung.png");
      background-image: linear-gradient(90deg, rgba(22, 24, 27, .92) 0%, rgba(35, 38, 43, .78) 34%, rgba(35, 38, 43, .28) 62%, rgba(35, 38, 43, .48) 100%), image-set(
        url("hero-reinigung-1600.avif") type("image/avif"),
        url("hero-reinigung-1600.webp") type("image/webp"),
        url("hero-reinigung.png") type("image/png")
      );
      background-size: cover;
      background-position: center top;
      animation: heroKenBurns 22s ease-in-out infinite alternate;
      transform: scale(1.04) translate3d(-.8%, 0, 0);
      transform-origin: center top;
      will-change: transform;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 160px;
      z-index: -1;
      background: linear-gradient(0deg, rgba(35, 38, 43, .82), transparent);
    }

    @keyframes heroKenBurns {
      from {
        transform: scale(1.04) translate3d(-.8%, 0, 0);
      }

      to {
        transform: scale(1.09) translate3d(1.1%, 0, 0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero::before {
        animation: none;
        transform: none;
      }

      .hero-actions .btn-primary::before {
        animation: none;
      }

      .back-to-top {
        transition: none;
      }
    }

    .hero-inner {
      width: min(var(--max), calc(100% - 32px));
      height: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
    }

    .hero-copy {
      width: min(820px, 100%);
      padding: 42px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      max-width: 100%;
      min-height: 34px;
      padding: 8px 12px;
      border: 1px solid rgba(255, 255, 255, .22);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .09);
      color: rgba(255, 255, 255, .86);
      font-size: 13px;
      line-height: 1.2;
      font-weight: 800;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--warm);
    }

    h1,
    h2,
    h3,
    p {
      margin: 0;
    }

    h1 {
      margin-top: 22px;
      max-width: 820px;
      font-size: clamp(42px, 7vw, 88px);
      line-height: .96;
      font-weight: 900;
      letter-spacing: 0;
      overflow-wrap: normal;
      hyphens: auto;
    }

    h1 span {
      display: block;
    }

    @media (min-width: 681px) {
      h1 span {
        white-space: nowrap;
      }
    }

    .hero-lead {
      margin-top: 22px;
      max-width: 640px;
      color: rgba(255, 255, 255, .82);
      font-size: clamp(18px, 2.2vw, 23px);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 34px;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-weight: 850;
      cursor: pointer;
      transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    }

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

    .btn-primary {
      background: var(--bordeaux);
      color: var(--paper);
      box-shadow: 0 18px 34px rgba(123, 24, 50, .32);
    }

    .hero-actions .btn-primary {
      position: relative;
      overflow: hidden;
      border-color: rgba(255, 255, 255, .22);
      background: linear-gradient(135deg, var(--bordeaux), #981f43 56%, var(--bordeaux-dark));
      isolation: isolate;
    }

    .hero-actions .btn-primary::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: inherit;
      padding: 2px;
      pointer-events: none;
      background: conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0) 0deg,
        rgba(255, 255, 255, 0) 226deg,
        rgba(255, 255, 255, .32) 248deg,
        rgba(255, 255, 255, .95) 262deg,
        rgba(185, 225, 255, .58) 275deg,
        rgba(255, 255, 255, 0) 296deg,
        rgba(255, 255, 255, 0) 360deg
      );
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: ctaBorderRun 4.8s linear infinite;
    }

    .hero-actions .btn-primary svg,
    .hero-actions .btn-primary span {
      position: relative;
      z-index: 1;
    }

    @keyframes ctaBorderRun {
      to {
        transform: rotate(1turn);
      }
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      background: var(--bordeaux-dark);
    }

    .btn-light {
      color: var(--paper);
      border-color: rgba(255, 255, 255, .28);
      background: rgba(255, 255, 255, .08);
    }

    .btn-light:hover,
    .btn-light:focus-visible {
      border-color: rgba(255, 255, 255, .54);
      background: rgba(255, 255, 255, .15);
    }

    .btn-dark {
      background: var(--anthracite);
      color: var(--paper);
    }

    .btn-dark:hover,
    .btn-dark:focus-visible {
      background: #111315;
    }

    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      width: min(var(--max), calc(100% - 32px));
      margin: -1px auto 0;
      background: var(--line);
      border-left: 1px solid var(--line);
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .proof-item {
      min-height: 88px;
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 18px;
      background: var(--paper);
    }

    .proof-item svg {
      flex: 0 0 auto;
      color: var(--bordeaux);
    }

    .proof-item strong {
      display: block;
      color: var(--anthracite);
      font-size: 15px;
      line-height: 1.2;
    }

    .proof-item span {
      color: var(--muted);
      font-size: 13px;
    }

    section {
      scroll-margin-top: 92px;
    }

    .section {
      padding: 92px 0;
    }

    .section-soft {
      background: var(--stone);
    }

    .container {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
      gap: 48px;
      align-items: end;
      margin-bottom: 38px;
    }

    .kicker {
      color: var(--bordeaux);
      font-weight: 900;
      text-transform: uppercase;
      font-size: 13px;
      margin-bottom: 10px;
    }

    .kicker-on-dark {
      color: rgba(255, 255, 255, .72);
    }

    h2 {
      color: var(--anthracite);
      font-size: clamp(32px, 4vw, 54px);
      line-height: 1.04;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-head p,
    .lead {
      color: var(--muted);
      font-size: 17px;
    }

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

    .area-strip {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--stone);
    }

    .area-strip strong {
      margin-right: 4px;
      color: var(--anthracite);
      font-size: 14px;
      text-transform: uppercase;
    }

    .area-strip span {
      min-height: 30px;
      display: inline-flex;
      align-items: center;
      border-radius: var(--radius);
      background: var(--paper);
      padding: 0 10px;
      color: var(--anthracite);
      font-size: 13px;
      font-weight: 780;
    }

    .coverage-map {
      margin-top: 18px;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
      gap: 16px;
      align-items: stretch;
    }

    .coverage-card {
      min-height: 360px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 18px 48px rgba(22, 24, 27, .08);
      overflow: hidden;
    }

    .virtual-map {
      position: relative;
      min-height: 360px;
      padding: 22px;
      background:
        radial-gradient(circle at 48% 48%, rgba(123, 24, 50, .16) 0 10%, transparent 10.5%),
        radial-gradient(circle at 48% 48%, transparent 0 20%, rgba(123, 24, 50, .08) 20.5% 21.5%, transparent 22%),
        radial-gradient(circle at 48% 48%, transparent 0 35%, rgba(123, 24, 50, .1) 35.5% 36.5%, transparent 37%),
        radial-gradient(circle at 48% 48%, transparent 0 49%, rgba(123, 24, 50, .12) 49.5% 50.5%, transparent 51%),
        linear-gradient(135deg, #f9f7f3, #eef2f4);
    }

    .virtual-map::before,
    .virtual-map::after {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 50%;
      pointer-events: none;
    }

    .virtual-map::before {
      border: 1px dashed rgba(123, 24, 50, .24);
    }

    .virtual-map::after {
      inset: 58px;
      border: 1px dashed rgba(35, 38, 43, .18);
    }

    .map-center,
    .map-place {
      position: absolute;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      border: 1px solid rgba(123, 24, 50, .18);
      background: rgba(255, 255, 255, .92);
      padding: 7px 10px;
      color: var(--anthracite);
      font-size: 12px;
      font-weight: 850;
      box-shadow: 0 10px 26px rgba(22, 24, 27, .12);
    }

    .map-center {
      left: 48%;
      top: 48%;
      transform: translate(-50%, -50%);
      background: var(--bordeaux);
      color: #fff;
    }

    .map-center::before,
    .map-place::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: currentColor;
    }

    .map-place[data-place="muenchen"] {
      left: 24%;
      top: 49%;
    }

    .map-place[data-place="erding"] {
      left: 47%;
      top: 22%;
    }

    .map-place[data-place="freising"] {
      left: 34%;
      top: 15%;
    }

    .map-place[data-place="rosenheim"] {
      left: 49%;
      bottom: 18%;
    }

    .map-place[data-place="landshut"] {
      right: 11%;
      top: 24%;
    }

    .map-radius-label {
      position: absolute;
      right: 18px;
      bottom: 18px;
      z-index: 2;
      max-width: 210px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 760;
    }

    .google-map-card {
      display: grid;
      grid-template-rows: 1fr;
      min-height: 360px;
    }

    .map-consent {
      display: grid;
      place-items: center;
      gap: 14px;
      padding: 26px;
      text-align: center;
      background:
        linear-gradient(135deg, rgba(35, 38, 43, .9), rgba(123, 24, 50, .82)),
        var(--anthracite);
      color: #fff;
    }

    .map-consent p {
      max-width: 420px;
      color: rgba(255, 255, 255, .82);
      font-size: 15px;
    }

    .map-consent .btn {
      background: var(--paper);
      color: var(--bordeaux);
    }

    .google-map-frame {
      width: 100%;
      height: 100%;
      min-height: 360px;
      border: 0;
      display: block;
    }

    .feature,
    .service,
    .job,
    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
    }

    .feature {
      padding: 22px;
      min-height: 190px;
    }

    .feature svg {
      color: var(--bordeaux);
      margin-bottom: 20px;
    }

    .feature h3,
    .service h3,
    .job h3,
    .faq-item h3 {
      color: var(--anthracite);
      font-size: 19px;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .feature p,
    .service p,
    .job p,
    .faq-item p {
      color: var(--muted);
      font-size: 15px;
    }

    body.theme-dark .feature h3,
    body.theme-dark .service h3 {
      color: var(--anthracite);
    }

    body.theme-dark .feature p,
    body.theme-dark .service p {
      color: var(--anthracite);
    }

    .service-layout {
      display: grid;
      grid-template-columns: 290px minmax(0, 1fr);
      gap: 24px;
      align-items: start;
    }

    .service-nav {
      position: sticky;
      top: 96px;
      display: grid;
      gap: 8px;
    }

    .service-nav a {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 0 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      color: var(--anthracite);
      font-weight: 800;
      font-size: 14px;
    }

    .service-nav a:hover,
    .service-nav a:focus-visible {
      border-color: rgba(123, 24, 50, .45);
      color: var(--bordeaux);
    }

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

    .service {
      padding: 22px;
      min-height: 168px;
    }

    .service-more {
      margin-top: 16px;
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      color: var(--bordeaux);
      font-weight: 850;
    }

    .service-more::after {
      content: "→";
      margin-left: 8px;
    }

    body.theme-dark .service-grid .service h3 {
      color: var(--anthracite);
    }

    body.theme-dark .service-grid .service p {
      color: var(--anthracite);
    }

    .service-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 22px;
    }

    .tag {
      min-height: 32px;
      display: inline-flex;
      align-items: center;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--paper);
      padding: 0 10px;
      color: var(--anthracite);
      font-size: 13px;
      font-weight: 750;
    }

    .material-expertise {
      margin-top: 24px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
      gap: 24px;
      align-items: center;
      padding: 24px;
      border: 1px solid rgba(123, 24, 50, .18);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 14px 34px rgba(22, 24, 27, .08);
    }

    .material-expertise h3 {
      margin-top: 6px;
      color: var(--anthracite);
      font-size: 24px;
      line-height: 1.2;
    }

    .material-expertise p:not(.kicker) {
      margin-top: 8px;
      max-width: 760px;
      color: var(--muted);
    }

    .material-points {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 8px;
    }

    .material-points li {
      min-height: 36px;
      display: flex;
      align-items: center;
      border: 1px solid rgba(123, 24, 50, .18);
      border-radius: var(--radius);
      background: var(--bordeaux-soft);
      color: var(--anthracite);
      padding: 0 12px;
      font-size: 13px;
      font-weight: 800;
    }

    body.theme-dark .material-expertise {
      border-color: var(--line);
      background: var(--paper);
    }

    body.theme-dark .material-expertise h3,
    body.theme-dark .material-points li {
      color: var(--anthracite);
    }

    body.theme-dark .material-expertise p:not(.kicker) {
      color: var(--anthracite);
    }

    .service-spotlight {
      margin-top: 24px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 24px;
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(123, 24, 50, .95), rgba(35, 38, 43, .96)),
        var(--anthracite);
      color: var(--paper);
      padding: 24px;
      box-shadow: 0 20px 44px rgba(22, 24, 27, .14);
    }

    .service-spotlight h3 {
      margin-top: 6px;
      color: var(--paper);
      font-size: 24px;
    }

    .service-spotlight p {
      margin-top: 8px;
      max-width: 720px;
      color: rgba(255, 255, 255, .78);
    }

    .service-spotlight .btn {
      background: var(--paper);
      color: var(--bordeaux);
      white-space: nowrap;
      box-shadow: 0 16px 32px rgba(22, 24, 27, .22);
    }

    .visual-showcase {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .visual-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 14px 36px rgba(22, 24, 27, .08);
    }

    .visual-card picture,
    .visual-card img {
      display: block;
      width: 100%;
    }

    .visual-card img {
      aspect-ratio: 55 / 36;
      object-fit: cover;
    }

    .visual-card figcaption {
      padding: 16px 18px 18px;
    }

    .visual-card h3 {
      color: var(--anthracite);
      font-size: 19px;
    }

    .visual-card p {
      margin-top: 6px;
      color: var(--muted);
      font-size: 14px;
    }

    body.theme-dark .visual-card {
      border-color: var(--line);
      background: var(--paper);
    }

    body.theme-dark .visual-card h3 {
      color: var(--anthracite);
    }

    body.theme-dark .visual-card p {
      color: var(--bordeaux);
    }

    .process {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
    }

    .step {
      min-height: 220px;
      padding: 24px;
      background: var(--paper);
    }

    .step-number {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      background: var(--bordeaux);
      color: var(--paper);
      font-weight: 900;
      margin-bottom: 24px;
    }

    .step h3 {
      font-size: 20px;
      line-height: 1.2;
      color: var(--anthracite);
      margin-bottom: 10px;
    }

    .step p {
      color: var(--muted);
      font-size: 15px;
    }

    body.theme-dark .step {
      background: var(--paper);
      color: var(--anthracite);
    }

    body.theme-dark .process .step h3,
    body.theme-dark .process .step p {
      color: var(--anthracite);
    }

    body.theme-dark .feature h3,
    body.theme-dark .feature p,
    body.theme-dark .service h3,
    body.theme-dark .service p,
    body.theme-dark .visual-card h3,
    body.theme-dark .process .step h3,
    body.theme-dark .process .step p {
      color: var(--anthracite) !important;
      opacity: 1;
    }

    body.theme-dark .visual-card p {
      color: var(--bordeaux) !important;
      opacity: 1;
    }

    .about {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 380px;
      gap: 34px;
      align-items: stretch;
    }

    .about-copy {
      padding: 0;
    }

    .about-copy .lead {
      margin-top: 18px;
      max-width: 720px;
    }

    .credentials {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 28px;
    }

    .credential {
      min-height: 50px;
      display: flex;
      align-items: center;
      gap: 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      padding: 10px 12px;
      color: var(--anthracite);
      font-weight: 760;
      font-size: 14px;
    }

    .credential svg {
      color: var(--bordeaux);
      flex: 0 0 auto;
    }

    .about-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .quote-panel {
      padding: 28px;
      border-radius: var(--radius);
      background: var(--anthracite);
      color: var(--paper);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 420px;
      box-shadow: var(--shadow);
    }

    .quote-panel p {
      font-size: 26px;
      line-height: 1.2;
      font-weight: 850;
    }

    .quote-panel span {
      display: block;
      color: rgba(255, 255, 255, .65);
      margin-top: 18px;
      font-size: 14px;
    }

    .quote-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, .14);
      border: 1px solid rgba(255, 255, 255, .14);
      margin-top: 40px;
    }

    .quote-stat {
      min-height: 92px;
      padding: 16px;
      background: rgba(255, 255, 255, .06);
    }

    .quote-stat strong {
      display: block;
      font-size: 26px;
      line-height: 1;
      color: var(--paper);
    }

    .quote-stat small {
      color: rgba(255, 255, 255, .68);
      font-weight: 700;
    }

    .jobs-layout {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
      gap: 28px;
      align-items: start;
    }

    .jobs-intro {
      padding: 28px;
      border-radius: var(--radius);
      background: var(--bordeaux);
      color: var(--paper);
    }

    .jobs-intro h2 {
      color: var(--paper);
      font-size: clamp(30px, 4vw, 46px);
    }

    .jobs-intro p {
      margin-top: 16px;
      color: rgba(255, 255, 255, .82);
    }

    .jobs-intro .btn {
      margin-top: 26px;
      background: var(--paper);
      color: var(--bordeaux);
    }

    .job-list {
      display: grid;
      gap: 12px;
    }

    .job {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 16px;
      padding: 20px;
    }

    .job meta {
      display: block;
    }

    .job small {
      color: var(--muted);
      font-weight: 760;
    }

    .job a {
      white-space: nowrap;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 26px;
      align-items: start;
    }

    .contact-details {
      display: grid;
      gap: 12px;
    }

    .contact-card {
      min-height: 92px;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .contact-card svg {
      color: var(--bordeaux);
      flex: 0 0 auto;
      margin-top: 2px;
    }

    .contact-card strong {
      display: block;
      color: var(--anthracite);
      margin-bottom: 3px;
    }

    .contact-card span,
    .contact-card a {
      color: var(--muted);
      font-size: 15px;
      overflow-wrap: anywhere;
    }

    .contact-page-hero {
      padding: 74px 0 62px;
      background:
        linear-gradient(135deg, rgba(22, 24, 27, .96), rgba(35, 38, 43, .9)),
        radial-gradient(circle at 82% 12%, rgba(123, 24, 50, .32), transparent 28%);
      color: #fff;
    }

    .contact-page-hero .container {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
      gap: 52px;
      align-items: center;
    }

    .contact-page-copy {
      display: grid;
      gap: 18px;
      max-width: 760px;
    }

    .contact-page-copy .kicker {
      color: var(--warm);
      margin-bottom: 0;
    }

    .contact-page-copy h1 {
      margin-top: 0;
      color: #fff;
      font-size: clamp(42px, 6vw, 78px);
      line-height: 1;
    }

    .contact-page-copy p {
      color: rgba(255, 255, 255, .78);
      font-size: 17px;
      max-width: 680px;
    }

    .contact-page-lead {
      color: rgba(255, 255, 255, .88);
      font-size: clamp(19px, 2.2vw, 24px);
      line-height: 1.45;
    }

    .contact-person-panel {
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .26);
    }

    .contact-person-panel picture,
    .contact-person-panel img {
      display: block;
      width: 100%;
    }

    .contact-person-panel img {
      aspect-ratio: 4 / 3;
      height: auto;
      object-fit: cover;
    }

    .contact-person-content {
      display: grid;
      gap: 10px;
      padding: 22px;
    }

    .contact-person-content .kicker {
      margin-bottom: 0;
    }

    .contact-person-content h2 {
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.05;
    }

    .contact-person-content p {
      color: var(--muted);
    }

    .contact-person-role {
      color: var(--bordeaux);
      font-weight: 850;
    }

    .contact-person-list {
      display: grid;
      gap: 8px;
      margin: 6px 0 0;
      padding: 0;
      list-style: none;
      color: var(--muted);
      font-weight: 720;
    }

    .contact-person-list li {
      display: flex;
      gap: 9px;
      align-items: baseline;
    }

    .contact-person-list li::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      flex: 0 0 auto;
      background: var(--bordeaux);
      transform: translateY(-1px);
    }

    .contact-page-section {
      background: var(--stone);
    }

    .service-detail-hero {
      padding: 72px 0 56px;
      background:
        linear-gradient(135deg, rgba(22, 24, 27, .96), rgba(35, 38, 43, .9)),
        radial-gradient(circle at 82% 12%, rgba(123, 24, 50, .32), transparent 28%);
      color: #fff;
    }

    .service-detail-hero .container {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
      gap: 44px;
      align-items: end;
    }

    .service-detail-hero .kicker {
      color: var(--warm);
    }

    .service-detail-hero h1 {
      margin-top: 16px;
      color: #fff;
      font-size: clamp(42px, 6vw, 76px);
      line-height: 1;
    }

    .service-detail-lead {
      margin-top: 20px;
      max-width: 720px;
      color: rgba(255, 255, 255, .84);
      font-size: clamp(18px, 2.2vw, 23px);
    }

    .service-detail-facts {
      display: grid;
      gap: 10px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .08);
    }

    .service-fact {
      color: rgba(255, 255, 255, .82);
      font-size: 14px;
      font-weight: 760;
    }

    .service-fact strong {
      display: block;
      color: #fff;
      font-size: 13px;
      text-transform: uppercase;
    }

    .service-detail-section {
      background: var(--stone);
    }

    .service-detail-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
      gap: 26px;
      align-items: start;
    }

    .service-detail-copy {
      display: grid;
      gap: 18px;
    }

    .service-detail-card,
    .service-detail-cta {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .service-detail-card h2 {
      font-size: clamp(26px, 3vw, 38px);
      line-height: 1.08;
    }

    .service-detail-card p {
      color: var(--muted);
    }

    .service-detail-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: var(--muted);
    }

    .service-detail-list li {
      display: flex;
      gap: 10px;
      align-items: baseline;
      font-weight: 700;
    }

    .service-detail-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--bordeaux);
      transform: translateY(-1px);
    }

    .service-detail-cta {
      position: sticky;
      top: 124px;
      display: grid;
      gap: 14px;
    }

    .service-detail-cta h2 {
      font-size: 28px;
      line-height: 1.12;
    }

    .service-detail-cta p {
      color: var(--muted);
    }

    .service-detail-cta .btn {
      width: 100%;
    }

    .form {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      padding: 24px;
      box-shadow: var(--shadow);
    }

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

    .field {
      display: grid;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      color: var(--anthracite);
      font-size: 13px;
      font-weight: 850;
    }

    input,
    textarea,
    select {
      width: 100%;
      border: 1px solid #d7d2cf;
      border-radius: var(--radius);
      background: #fff;
      color: var(--anthracite);
      min-height: 46px;
      padding: 10px 12px;
      outline: none;
    }

    textarea {
      min-height: 132px;
      resize: vertical;
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--bordeaux);
      box-shadow: 0 0 0 3px rgba(123, 24, 50, .13);
    }

    .form-note {
      margin-top: 14px;
      color: var(--muted);
      font-size: 13px;
    }

    .consent-field {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 10px;
      align-items: start;
      padding: 12px;
      border: 1px solid rgba(123, 24, 50, .18);
      border-radius: var(--radius);
      background: var(--bordeaux-soft);
    }

    .consent-field input {
      width: 18px;
      height: 18px;
      min-height: 18px;
      margin-top: 2px;
      accent-color: var(--bordeaux);
    }

    .consent-field label {
      color: var(--anthracite);
      line-height: 1.45;
    }

    .consent-field a {
      color: var(--bordeaux);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .form-status {
      min-height: 24px;
      margin-top: 14px;
      color: var(--success);
      font-size: 14px;
      font-weight: 760;
    }

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

    .faq-item {
      padding: 22px;
    }

    .footer {
      background: var(--anthracite);
      color: var(--paper);
      padding: 42px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(280px, 1.45fr) minmax(230px, .85fr) minmax(170px, .6fr) minmax(190px, .65fr);
      gap: 30px 42px;
      align-items: start;
    }

    .footer-brand {
      max-width: 560px;
    }

    .footer .brand {
      width: fit-content;
      min-width: 0;
      padding: 0;
      background: transparent;
    }

    .footer .brand-logo {
      width: 206px;
    }

    .footer p,
    .footer a,
    .footer li {
      color: rgba(255, 255, 255, .68);
      font-size: 14px;
    }

    .footer h3 {
      color: var(--paper);
      font-size: 14px;
      text-transform: uppercase;
      margin: 0 0 12px;
    }

    .footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 7px;
    }

    .footer a:hover,
    .footer a:focus-visible {
      color: var(--paper);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .footer-bottom {
      margin-top: 36px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      color: rgba(255, 255, 255, .58);
      font-size: 13px;
    }

    .legal-note {
      color: rgba(255, 255, 255, .62);
      max-width: 620px;
    }

    .mobile-panel {
      display: none;
    }

    .mobile-cta {
      display: none;
    }

    .back-to-top {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 46;
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, .24);
      border-radius: var(--radius);
      background: var(--bordeaux);
      color: #fff;
      box-shadow: 0 18px 42px rgba(22, 24, 27, .24);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(14px);
      transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease;
    }

    .back-to-top.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top:hover,
    .back-to-top:focus-visible {
      background: var(--bordeaux-dark);
    }

    .back-to-top svg {
      width: 22px;
      height: 22px;
      stroke-width: 2.4;
    }

    body.theme-dark .back-to-top {
      border-color: rgba(255, 255, 255, .18);
      background: var(--bordeaux);
      color: #fff;
    }

    body.theme-dark .back-to-top:hover,
    body.theme-dark .back-to-top:focus-visible {
      background: var(--bordeaux-dark);
    }

    .mobile-cta a {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: var(--radius);
      color: var(--paper);
      font-size: 14px;
      font-weight: 850;
    }

    .mobile-cta a:first-child {
      background: var(--anthracite);
    }

    .mobile-cta a:last-child {
      background: var(--bordeaux);
      box-shadow: 0 12px 26px rgba(123, 24, 50, .28);
    }

    svg {
      width: 20px;
      height: 20px;
      stroke-width: 2;
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

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

      .mobile-panel {
        display: grid;
        position: fixed;
        inset: 100px 0 auto;
        z-index: 29;
        transform: translateY(-120%);
        transition: transform .2s ease;
        background: rgba(255, 255, 255, .98);
        border-bottom: 1px solid rgba(35, 38, 43, .12);
        padding: 16px;
        box-shadow: 0 18px 40px rgba(22, 24, 27, .12);
      }

      body.menu-open .mobile-panel {
        transform: translateY(0);
      }

      .mobile-panel a {
        min-height: 48px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(35, 38, 43, .08);
        color: var(--anthracite);
        font-weight: 800;
      }

      .mobile-subnav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        padding: 10px 0 14px;
        border-bottom: 1px solid rgba(35, 38, 43, .08);
      }

      .mobile-subnav a {
        min-height: 38px;
        border: 1px solid rgba(35, 38, 43, .1);
        border-radius: var(--radius);
        background: rgba(123, 24, 50, .05);
        padding: 0 10px;
        font-size: 13px;
        line-height: 1.2;
      }

      body.theme-dark .mobile-subnav {
        border-color: rgba(255, 255, 255, .1);
      }

      body.theme-dark .mobile-subnav a {
        border-color: rgba(255, 255, 255, .14);
        background: rgba(255, 255, 255, .05);
        color: #f3f0ea;
      }

      .hero-proof,
      .feature-grid,
      .process,
      .about,
      .jobs-layout,
      .contact-page-hero .container,
      .service-detail-hero .container,
      .service-detail-layout,
      .contact-layout {
        grid-template-columns: 1fr;
      }

      .section-head,
      .service-layout,
      .coverage-map {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .service-nav {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .quote-panel {
        min-height: 320px;
      }

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

      .footer-grid > :first-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 680px) {
      body {
        padding-bottom: 82px;
      }

      .nav {
        min-height: 78px;
      }

      .brand {
        min-width: 142px;
      }

      .brand-logo {
        width: 138px;
      }

      .nav-actions .icon-button {
        display: none;
      }

      .nav-actions .accessibility-toggle {
        display: inline-grid;
      }

      .accessibility-panel {
        position: fixed;
        top: 74px;
        right: 12px;
      }

      .mobile-panel {
        inset-block-start: 78px;
      }

      .mobile-cta {
        position: fixed;
        inset: auto 12px 12px;
        z-index: 38;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, .84);
        box-shadow: 0 18px 48px rgba(22, 24, 27, .24);
        backdrop-filter: blur(16px);
      }

      .back-to-top {
        right: 16px;
        bottom: 92px;
        width: 46px;
        height: 46px;
      }

      body.menu-open .mobile-cta {
        display: none;
      }

      body.menu-open .back-to-top {
        display: none;
      }

      .hero {
        height: calc(100vh - 108px);
        min-height: 460px;
      }

      .hero::before {
        background-image: linear-gradient(90deg, rgba(22, 24, 27, .92) 0%, rgba(35, 38, 43, .78) 34%, rgba(35, 38, 43, .28) 62%, rgba(35, 38, 43, .48) 100%), url("hero-reinigung.png");
        background-image: linear-gradient(90deg, rgba(22, 24, 27, .92) 0%, rgba(35, 38, 43, .78) 34%, rgba(35, 38, 43, .28) 62%, rgba(35, 38, 43, .48) 100%), image-set(
          url("hero-reinigung-1000.avif") type("image/avif"),
          url("hero-reinigung-1000.webp") type("image/webp"),
          url("hero-reinigung.png") type("image/png")
        );
        background-position: 62% top;
      }

      .hero-copy {
        padding: 32px 0;
        width: min(100%, 24rem);
      }

      h1 {
        max-width: 11ch;
        font-size: clamp(34px, 11.2vw, 46px);
        line-height: 1;
      }

      .hero-lead {
        font-size: 17px;
      }

      .hero-actions {
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .hero-proof {
        width: 100%;
        border-left: 0;
        border-right: 0;
      }

      .virtual-map,
      .google-map-frame,
      .google-map-card {
        min-height: 330px;
      }

      .map-place,
      .map-center {
        font-size: 11px;
        padding: 6px 8px;
      }

      .map-place[data-place="freising"] {
        left: 18%;
      }

      .map-place[data-place="landshut"] {
        right: 5%;
      }

      .map-radius-label {
        left: 18px;
        right: 18px;
        max-width: none;
      }

      .section {
        padding: 68px 0;
      }

      .feature-grid,
      .credentials,
      .faq-grid,
      .form-grid,
      .visual-showcase,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .service-nav {
        grid-template-columns: 1fr;
      }

      .material-expertise {
        grid-template-columns: 1fr;
      }

      .service-spotlight {
        grid-template-columns: 1fr;
      }

      .service-spotlight .btn {
        width: 100%;
      }

      .service-detail-cta {
        position: static;
      }

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

      .footer-bottom {
        flex-direction: column;
      }

      .contact-page-hero {
        padding: 54px 0;
      }

      .service-detail-hero {
        padding: 54px 0;
      }
    }
