:root {
  /* ═══ DESIGN SYSTEM — single source of truth ═══ */

  /* Typography */
  --font-heading: "Plus Jakarta Sans", "Manrope", "DM Sans", system-ui, sans-serif;
  --font-body: "Manrope", "DM Sans", system-ui, sans-serif;

  --type-display: clamp(2.4rem, 3.8vw, 4.6rem);  /* Hero-Headline (Referenz-Design) */
  --type-h1: clamp(2.3rem, 3.6vw, 3.6rem);       /* Unterseiten-H1 */
  --type-h2: clamp(1.9rem, 3vw, 3.1rem);         /* Section-H2 */
  --type-h3: clamp(1.2rem, 1.6vw, 1.5rem);       /* Card-/Sub-H3 */
  --type-section: var(--type-h2);   /* legacy alias */
  --type-card: var(--type-h3);      /* legacy alias */
  --type-body: clamp(1rem, 0.25vw + 0.95rem, 1.05rem);
  --type-small: 0.8rem;
  --type-button: 0.92rem;
  --type-nav: 0.95rem;

  --weight-heading: 700;
  --weight-body: 500;
  --heading-variation: normal;
  --line-display: 1.02;
  --line-heading: 1.15;
  --line-body: 1.7;

  /* Colors */
  --color-cream: #f5f1ea;
  --color-warm-white: #faf8f3;
  --color-charcoal: #1f211d;
  --color-olive: #7e816e;
  --color-taupe: #b7aa95;
  --color-sand: #d6a968;
  --color-sand-dark: #b98745;
  --color-logo-orange: #f2a40f;
  --color-logo-blue: #0a81d5;
  --color-logo-blue-soft: #6eaedc;
  --color-line: rgba(255, 255, 255, 0.22);
  --color-text: #252525;
  --color-muted: #777267;

  /* Legacy aliases — kept so existing component rules keep resolving
     to the canonical palette above instead of a second, drifted one */
  --ink: var(--color-charcoal);
  --color-ink: var(--color-charcoal);
  --muted-ink: var(--color-muted);
  --surface: var(--color-cream);
  --surface-2: var(--color-warm-white);
  --accent: var(--color-sand-dark);
  --color-gold: var(--color-sand-dark);
  --color-gold-soft: var(--color-sand);
  --color-deep: var(--color-charcoal);
  --color-stone: #eceae6;
  --color-stone-2: #ded9d3;
  --color-deep-brown: #2b211b;
  --color-deep-blue: #0f172d;

  /* Layout */
  --container-max: 1280px;
  --container: var(--container-max);
  --container-width: var(--container-max);
  --header-height: 88px;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;
  --space-16: 7rem;

  --section-space: clamp(6rem, 8vw, 8.5rem);
  --section-space-mobile: clamp(3.5rem, 10vw, 5rem);
  --section-y: var(--section-space);
  --card-padding: clamp(1.5rem, 2.5vw, 2.25rem);
  --grid-gap: clamp(1.25rem, 2.5vw, 2rem);

  /* Radius scale */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --radius: var(--radius-md);

  /* Shadow scale — one warm, soft recipe at three elevations */
  --shadow-sm: 0 4px 14px rgba(31, 27, 20, 0.08);
  --shadow-md: 0 16px 40px rgba(31, 27, 20, 0.12);
  --shadow-lg: 0 30px 70px rgba(31, 27, 20, 0.16);

  /* Motion */
  --ease-standard: cubic-bezier(0.22, 0.72, 0.2, 1);
  --transition-fast: 220ms var(--ease-standard);
  --transition-base: 320ms var(--ease-standard);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: var(--type-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: var(--line-body);
  font-weight: var(--weight-body);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-charcoal);
  color: #fff;
  padding: 0.7rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(var(--container-max), 100% - clamp(2.5rem, 6vw, 5.5rem));
  margin: 0 auto;
}

.section {
  position: relative;
  isolation: isolate;
  padding: var(--section-space) 0;
}

.section > .container {
  position: relative;
  z-index: 2;
}

.section-flow {
  overflow: clip;
}

.section-flow::before,
.section-flow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(42px, 8vw, 92px);
  pointer-events: none;
  z-index: 1;
}

.section-flow::before {
  top: -1px;
}

.section-flow::after {
  bottom: -1px;
}

.section-flow--soft::before {
  background: linear-gradient(to bottom, rgba(31, 33, 29, 0.08), rgba(245, 241, 234, 0));
}

.section-flow--soft::after {
  background: linear-gradient(to top, rgba(248, 245, 239, 0.86), rgba(245, 241, 234, 0));
}

.section-flow--warm::before {
  background: linear-gradient(to bottom, rgba(245, 241, 234, 0.95), rgba(250, 248, 243, 0));
}

.section-flow--warm::after {
  background: linear-gradient(to top, rgba(245, 241, 234, 0.88), rgba(250, 248, 243, 0));
}

.section-flow--sand::before {
  background: linear-gradient(to bottom, rgba(250, 248, 243, 0.96), rgba(245, 241, 234, 0));
}

.section-flow--sand::after {
  background: linear-gradient(to top, rgba(97, 102, 83, 0.2), rgba(245, 241, 234, 0));
}

.section-flow--deep::before {
  background: linear-gradient(to bottom, rgba(245, 241, 234, 0.95), rgba(96, 103, 86, 0));
}

.section-flow--deep::after {
  background: linear-gradient(to top, rgba(250, 248, 243, 0.82), rgba(86, 92, 75, 0));
}

.section-flow--light::before {
  background: linear-gradient(to bottom, rgba(95, 100, 82, 0.16), rgba(250, 248, 243, 0));
}

.section-flow--light::after {
  background: linear-gradient(to top, rgba(237, 229, 216, 0.88), rgba(250, 248, 243, 0));
}

.section-flow--cta::before {
  background: linear-gradient(to bottom, rgba(250, 248, 243, 0.95), rgba(238, 229, 216, 0));
}

.section-label {
  display: inline-block;
  margin: 0 0 1.1rem;
  font-size: clamp(0.69rem, 1vw, 0.78rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 700;
  padding-left: 0.7rem;
  border-left: 2px solid var(--color-sand-dark);
}

.section-header {
  max-width: 760px;
  margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
}

.section-header h2,
.split-copy h2,
.consultation-inner h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 420;
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  font-variation-settings: normal;
  text-wrap: balance;
}

.section-header p,
.split-copy p,
.consultation-inner p {
  margin: 1.2rem 0 0;
  color: var(--color-muted);
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  max-width: 62ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.92rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--type-button);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-base);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.24) 51%, rgba(255, 255, 255, 0) 69%);
  transform: translateX(-130%);
  transition: transform 460ms var(--ease-standard);
  pointer-events: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(130%);
}

.btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--color-sand) 80%, #fff 20%);
  outline-offset: 2px;
}

.btn[hidden] {
  display: none;
}

.btn-primary {
  background: var(--color-charcoal);
  color: var(--color-cream);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: color-mix(in srgb, var(--color-charcoal) 88%, #000 12%);
  color: #fff;
}

.hero .btn-primary {
  background: rgba(252, 249, 243, 0.96);
  color: var(--color-charcoal);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  background: #fff;
  color: var(--color-charcoal);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: #1c1d1a;
}

.btn-outline-dark {
  border-color: rgba(31, 33, 29, 0.35);
  color: var(--color-charcoal);
  background: transparent;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
  border-color: var(--color-charcoal);
  background: rgba(31, 33, 29, 0.08);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  transition: background-color 260ms ease, backdrop-filter 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 242, 235, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 33, 29, 0.12);
  box-shadow: 0 8px 24px rgba(20, 24, 31, 0.08);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  justify-self: start;
  display: grid;
  align-items: center;
  filter: drop-shadow(0 4px 18px rgba(4, 8, 19, 0.35));
}

.site-header:not(.is-scrolled) .brand {
  transform: translateY(5px);
}

.brand-logo {
  grid-area: 1 / 1;
  width: auto;
  height: clamp(46px, 4.8vw, 66px);
  display: block;
  transition: opacity 220ms ease, transform 220ms ease;
}

.brand-logo-white {
  opacity: 1;
  transform: translateY(0);
}

.brand-logo-color {
  opacity: 0;
  transform: translateY(2px) scale(0.985);
}

.site-header.is-scrolled .brand-logo-white {
  opacity: 0;
  transform: translateY(-2px) scale(0.985);
}

.site-header.is-scrolled .brand-logo-color {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.7vw, 1.7rem);
}

.main-nav li {
  position: relative;
}

.main-nav li + li::before {
  display: none;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.12rem;
  position: relative;
  transition: color 220ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.13rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.22, 0.72, 0.2, 1);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .main-nav a {
  color: rgba(35, 39, 45, 0.9);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible {
  color: var(--color-logo-blue);
}

.site-header.is-scrolled .main-nav a::after {
  background: rgba(10, 129, 213, 0.48);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1vw, 1rem);
  min-width: 0;
}

.header-actions .btn {
  white-space: nowrap;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding-right: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.phone-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.site-header.is-scrolled .phone-link {
  color: rgba(35, 39, 45, 0.92);
  border-right-color: rgba(31, 33, 29, 0.18);
}

.site-header.is-scrolled .btn-outline-light {
  color: rgba(29, 33, 40, 0.96);
  border-color: rgba(31, 33, 29, 0.32);
  background: rgba(255, 255, 255, 0.52);
}

.site-header.is-scrolled .btn-outline-light:hover,
.site-header.is-scrolled .btn-outline-light:focus-visible {
  color: #fff;
  border-color: var(--color-logo-blue);
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--color-logo-blue) 82%, #2b8dd5 18%),
    color-mix(in srgb, var(--color-logo-orange) 72%, #f2a40f 28%)
  );
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  position: relative;
  color: #fff;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 22px;
  height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 220ms ease, top 220ms ease, opacity 220ms ease;
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  top: 24px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.site-header.is-scrolled .menu-toggle {
  color: rgba(26, 34, 47, 0.95);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 21, 19, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 250ms ease;
}

.mobile-menu-panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(86vw, 390px);
  background: linear-gradient(180deg, rgba(248, 245, 239, 0.97), rgba(244, 239, 230, 0.95));
  border-left: 1px solid rgba(31, 33, 29, 0.1);
  transform: translateX(100%);
  transition: transform 290ms cubic-bezier(0.24, 0.8, 0.29, 1);
  padding: 5.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.4rem;
}

.mobile-brand {
  display: inline-block;
  width: min(180px, 72%);
  margin-bottom: 1.6rem;
}

.mobile-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-menu.is-open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(31, 33, 29, 0.2);
  border-radius: 999px;
  background: transparent;
  color: var(--color-charcoal);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}

.mobile-menu nav a {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 4.75vw, 1.75rem);
  color: #2e302a;
}

.mobile-menu-actions {
  display: grid;
  gap: 0.85rem;
  margin-top: auto;
}

.mobile-phone {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(31, 33, 29, 0.2);
  border-radius: 7px;
  text-align: center;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  padding: calc(var(--header-height) + 4.5vh) 0 14.25rem;
  overflow: hidden;
  clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  animation: hero-clip-reveal 1.2s cubic-bezier(0.29, 0.8, 0.8, 0.98) forwards;
}

.hero-media,
.hero-overlay,
.hero-warm-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  animation: hero-fade-in 780ms linear both;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  transform: scale(1.22);
  animation: hero-zoom-out 4s 0.16s cubic-bezier(0, 0.71, 0.4, 0.97) forwards;
}

.hero-overlay {
  background:
    linear-gradient(180deg,
      rgba(10, 8, 6, 0.38) 0%,
      rgba(10, 8, 6, 0.10) 35%,
      rgba(10, 8, 6, 0.55) 72%,
      rgba(10, 8, 6, 0.78) 100%);
  z-index: 1;
}

.hero-warm-overlay {
  background:
    radial-gradient(circle at 60% 82%, rgba(214, 169, 104, 0.16), transparent 48%);
  mix-blend-mode: screen;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: min(940px, 100%);
  margin-bottom: clamp(2.3rem, 5.5vh, 5.5rem);
  opacity: 0;
  animation: hero-fade-up 720ms 1.1s cubic-bezier(0.24, 0.75, 0.24, 1) forwards;
}

.hero-content::before {
  display: none;
}

.hero-sun {
  display: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: clamp(0.67rem, 0.8vw, 0.74rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-shadow: none;
}

.hero h1 {
  margin: 0 auto 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.4rem, 3.8vw, 4.6rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 22ch;
  text-wrap: balance;
  font-variation-settings: normal;
  text-shadow: 0 6px 24px rgba(3, 8, 18, 0.28);
}

.hero-subline {
  margin: 1.1rem auto 0;
  max-width: 52ch;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  font-weight: 400;
  color: rgba(238, 234, 228, 0.88);
  text-shadow: 0 3px 14px rgba(4, 8, 20, 0.3);
  line-height: 1.65;
}

.hero-ctas {
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-meta {
  display: none;
}

.hero-trust-wrap {
  position: absolute;
  inset: auto 0 1.5rem;
  z-index: 4;
}

.hero-trust-panel {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    135deg,
    rgba(18, 14, 10, 0.78) 0%,
    rgba(28, 22, 15, 0.68) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
  padding: 1.2rem 1.4rem;
  position: relative;
  opacity: 0;
  animation: hero-fade-up 700ms 1.35s cubic-bezier(0.24, 0.75, 0.24, 1) forwards;
}

.hero-trust-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-top-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 1.2rem;
}

.trust-claim {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.93);
  min-width: 232px;
}

.trust-claim-wrap {
  display: flex;
  align-items: center;
}

.trust-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.33);
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.logo-slot {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  min-height: 72px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #f6f4ef;
  font-size: 0.88rem;
  padding: 0.35rem 0.6rem;
  line-height: 1.3;
  transition: background-color 280ms ease, border-color 280ms ease, transform 280ms ease;
}

.logo-slot:hover,
.logo-slot:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(214, 169, 104, 0.62);
  transform: translateY(-2px);
}

.logo-slot img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  transition: opacity 280ms ease;
}

.logo-slot:hover img {
  opacity: 1;
}

@keyframes hero-zoom-out {
  from {
    transform: scale(1.24);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes hero-clip-reveal {
  from {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-bottom-row {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.trust-bottom-row article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.trust-bottom-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

.line-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-products {
  background: var(--color-cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.6vw, 1.4rem);
  perspective: 1200px;
}

.product-tile {
  position: relative;
  border-radius: clamp(14px, 1.5vw, 18px);
  overflow: hidden;
  min-height: clamp(360px, 40vw, 560px);
  isolation: isolate;
  transform-style: preserve-3d;
  will-change: transform;
}

.product-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(247, 242, 232, 0.32);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms cubic-bezier(0.24, 0.8, 0.3, 1);
}

.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 21, 18, 0.1), rgba(20, 21, 18, 0.6));
  transition: background 420ms ease;
}

.tile-content {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.25rem;
  color: #fff;
}

.tile-content h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  line-height: 1;
  font-weight: 500;
}

.tile-content p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32ch;
}

.tile-content .tile-arrow {
  transition: transform 320ms ease, color 320ms ease;
}

.tile-arrow {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 1.25rem;
  color: #f2e3ca;
}

.product-tile:hover img,
.product-tile:focus-within img {
  transform: scale(1.04);
}

.product-tile:hover .tile-overlay,
.product-tile:focus-within .tile-overlay {
  background: linear-gradient(160deg, rgba(20, 21, 18, 0.14), rgba(20, 21, 18, 0.78));
}

.product-tile:hover .tile-arrow,
.product-tile:focus-within .tile-arrow {
  transform: translateX(6px);
  color: #ffe2b9;
}

.section-why {
  background: var(--color-warm-white);
}

.split-layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(2rem, 4vw, 4.2rem);
  align-items: start;
}

.split-copy p {
  max-width: 640px;
}

.split-features {
  display: grid;
  gap: 1.5rem;
}

.split-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(31, 33, 29, 0.15);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.46), rgba(250, 246, 239, 0.6));
  border-radius: 12px;
  backdrop-filter: blur(2px);
  overflow: hidden;
}

.split-features li {
  padding: 1rem 1.1rem 1rem 2.2rem;
  border-bottom: 1px solid rgba(31, 33, 29, 0.15);
  color: #3d3f39;
  position: relative;
  transition: background-color 280ms ease, padding-left 280ms ease;
}

.split-features li::before {
  content: "→";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-sand-dark);
  font-size: 0.82rem;
  transition: transform 280ms ease;
}

.split-features li:hover {
  background: rgba(185, 170, 149, 0.14);
  padding-left: 2.5rem;
}

.split-features li:hover::before {
  transform: translateY(-50%) translateX(3px);
}

.split-features img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 42px rgba(19, 23, 30, 0.12);
}

.section-process {
  background: var(--color-cream);
}

.timeline {
  --timeline-progress: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  padding-top: 1.6rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0.56rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    color-mix(in srgb, var(--color-logo-orange) 78%, #dca86c 22%),
    color-mix(in srgb, var(--color-logo-blue-soft) 45%, rgba(185, 135, 69, 0.2) 55%)
  );
  transform: scaleX(var(--timeline-progress));
  transform-origin: left center;
}

.timeline-step {
  position: relative;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(184, 142, 79, 0.2);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--color-logo-orange) 72%, rgba(185, 135, 69, 0.3) 28%);
  background: var(--color-warm-white);
  font-size: 0.95rem;
  font-weight: 600;
  color: #6a5130;
  box-shadow: 0 8px 18px rgba(128, 91, 42, 0.12);
}

.timeline-step h3 {
  margin: 0.9rem 0 0.35rem;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.timeline-step p {
  margin: 0;
  color: #5f5b53;
  max-width: 26ch;
}

.section-proof {
  background: linear-gradient(
    140deg,
    color-mix(in srgb, var(--color-logo-blue) 34%, #676b5a 66%),
    #5e624f
  );
  color: rgba(248, 246, 240, 0.95);
}


.section-proof .section-label,
.section-proof .section-header p {
  color: rgba(248, 246, 240, 0.8);
}

.section-proof .section-label {
  border-left-color: rgba(214, 169, 104, 0.85);
}

.section-proof .section-header {
  max-width: 860px;
}

.proof-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-grid article {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  padding: 1.4rem 1rem 1.3rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(252, 250, 245, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: transform 320ms ease, border-color 320ms ease, background-color 320ms ease;
}

.proof-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 169, 104, 0.72);
  background: rgba(255, 255, 255, 0.14);
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.proof-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.section-gallery {
  background: var(--color-warm-white);
}

.gallery-layout {
  display: grid;
  gap: clamp(1.7rem, 3.5vw, 3rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1rem;
  perspective: 1200px;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  transform-style: preserve-3d;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 320ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 520ms cubic-bezier(0.23, 0.77, 0.26, 1);
}

.gallery-large img {
  aspect-ratio: 16 / 10;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.045);
}

.gallery-item:hover::after,
.gallery-item:focus-within::after {
  border-color: rgba(214, 169, 104, 0.62);
}

.section-consultation {
  background:
    radial-gradient(circle at 18% 16%, rgba(214, 169, 104, 0.22), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(10, 129, 213, 0.08), transparent 32%),
    #eee5d8;
}

.consultation-inner {
  text-align: center;
  max-width: 820px;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid rgba(147, 122, 91, 0.22);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.2));
  backdrop-filter: blur(4px);
}

.consultation-inner p {
  max-width: 640px;
  margin-inline: auto;
}

.consultation-ctas {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-footer {
  background:
    radial-gradient(circle at 14% 20%, rgba(10, 129, 213, 0.16), transparent 36%),
    radial-gradient(circle at 84% 72%, rgba(214, 169, 104, 0.15), transparent 34%),
    #191b18;
  color: rgba(248, 246, 241, 0.92);
  padding: clamp(4rem, 7vw, 6rem) 0 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.site-footer h3,
.site-footer h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
}

.site-footer h3 {
  font-size: 1.65rem;
  font-variation-settings: normal;
}

.site-footer h4 {
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.55);
}

.site-footer p {
  margin: 0.8rem 0 0;
  color: rgba(248, 246, 241, 0.72);
}

.site-footer ul {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.site-footer a {
  color: rgba(248, 246, 241, 0.86);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(248, 246, 241, 0.2);
  color: rgba(248, 246, 241, 0.86);
  font-size: 1rem;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(248, 246, 241, 0.1);
  border-color: rgba(248, 246, 241, 0.4);
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.77rem;
  color: rgba(248, 246, 241, 0.4);
  letter-spacing: 0.04em;
}

.footer-bottom a {
  color: rgba(248, 246, 241, 0.4);
  font-size: 0.77rem;
  letter-spacing: 0.04em;
}

.footer-bottom a:hover {
  color: rgba(248, 246, 241, 0.75);
  text-decoration: none;
}

.footer-legal-links {
  display: flex;
  gap: 1.4rem;
}

.reveal {
  will-change: transform, opacity;
}

.reveal.is-visible {
  will-change: auto;
}

/* ═══════════════════════════════════════
   MEGA MENU
═══════════════════════════════════════ */

.has-mega {
  position: static;
}

.mega-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
  transition: color 220ms ease;
  line-height: 1;
}

.mega-trigger:hover,
.mega-trigger:focus-visible {
  color: #fff;
}

.site-header.is-scrolled .mega-trigger {
  color: rgba(35, 39, 45, 0.9);
}

.site-header.is-scrolled .mega-trigger:hover {
  color: var(--color-logo-blue);
}

.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform 240ms cubic-bezier(0.22, 0.72, 0.2, 1);
  flex-shrink: 0;
}

.has-mega.is-open .nav-chevron {
  transform: rotate(180deg);
}

.mega-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-height);
  background: rgba(248, 245, 239, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(31, 33, 29, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.22, 0.72, 0.2, 1);
  z-index: 40;
  box-shadow: 0 24px 48px rgba(20, 22, 18, 0.1);
}

.has-mega.is-open .mega-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-inner {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(1.8rem, 3vw, 2.5rem) 0;
}

.mega-col-label {
  font-size: 0.69rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 700;
  margin: 0 0 1.1rem;
  padding-left: 0.7rem;
  border-left: 2px solid var(--color-sand-dark);
}

.mega-service-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem;
}

.mega-service-link {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  transition: background-color 200ms ease;
  color: var(--color-charcoal);
  text-decoration: none;
}

.mega-service-link:hover {
  background: rgba(185, 135, 69, 0.08);
}

.mega-service-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-cream);
  border: 1px solid rgba(31, 33, 29, 0.08);
  flex-shrink: 0;
  transition: background-color 200ms ease;
}

.mega-service-link:hover .mega-service-icon {
  background: rgba(185, 135, 69, 0.14);
}

.mega-service-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--color-sand-dark);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-service-link strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.18rem;
  line-height: 1.2;
}

.mega-service-link span:last-child {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.mega-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 33, 29, 0.1);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-sand-dark);
  width: 100%;
  text-decoration: none;
  transition: gap 220ms ease;
}

.mega-all-link:hover {
  gap: 0.65rem;
}

.mega-image-col {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.mega-image-col img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.mega-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(10, 8, 6, 0.76), transparent);
  color: #fff;
}

.mega-image-caption p {
  margin: 0 0 0.18rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.mega-image-caption a {
  font-size: 0.86rem;
  font-weight: 600;
  color: #fff;
  transition: opacity 200ms ease;
}

.mega-image-caption a:hover {
  opacity: 0.8;
}

/* ═══════════════════════════════════════
   SERVICES SPLIT LAYOUT (Archscale)
═══════════════════════════════════════ */

.section-services {
  background: var(--color-cream);
}

.services-layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.services-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.services-header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 420;
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  font-variation-settings: normal;
  text-wrap: balance;
}

.services-header p {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  max-width: 56ch;
}

.service-list {
  border-top: 1px solid rgba(31, 33, 29, 0.12);
}

.service-item {
  border-bottom: 1px solid rgba(31, 33, 29, 0.12);
  cursor: pointer;
  transition: background-color 220ms ease;
}

.service-item:hover,
.service-item:focus-visible {
  outline: none;
}

.service-item-inner {
  padding: 1.5rem 0 1.5rem 0;
  transition: padding-left 280ms ease;
}

.service-item.is-active .service-item-inner,
.service-item:hover .service-item-inner {
  padding-left: 0.4rem;
}

.service-item-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  color: var(--color-sand-dark);
  font-variation-settings: normal;
  font-weight: 600;
  min-width: 1.8rem;
  opacity: 0.7;
}

.service-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.9vw, 1.9rem);
  font-weight: 420;
  margin: 0;
  flex: 1;
  line-height: 1;
  font-variation-settings: normal;
  transition: color 220ms ease;
}

.service-item.is-active h3,
.service-item:hover h3 {
  color: var(--color-charcoal);
}

.service-arrow {
  font-size: 1.1rem;
  color: var(--color-sand-dark);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-item.is-active .service-arrow,
.service-item:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  max-width: 48ch;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 400ms cubic-bezier(0.22, 0.72, 0.2, 1),
              opacity 320ms ease,
              margin 320ms ease;
}

.service-item.is-active .service-desc {
  max-height: 6rem;
  opacity: 1;
  margin: 0.7rem 0 0;
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-sand-dark);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 400ms cubic-bezier(0.22, 0.72, 0.2, 1),
              opacity 300ms ease,
              gap 220ms ease;
  text-decoration: none;
}

.service-item.is-active .service-more {
  max-height: 3rem;
  opacity: 1;
  margin-top: 0.65rem;
}

.service-more:hover {
  gap: 0.55rem;
}

.services-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-decoration: none;
  padding: 0.75rem 1.4rem;
  border: 1px solid rgba(31, 33, 29, 0.22);
  border-radius: 999px;
  transition: background-color 220ms ease, border-color 220ms ease, gap 220ms ease;
}

.services-all-link:hover {
  background: rgba(31, 33, 29, 0.05);
  border-color: rgba(31, 33, 29, 0.38);
  gap: 0.8rem;
}

.services-visual {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.service-images {
  position: relative;
  border-radius: clamp(14px, 1.5vw, 20px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-cream);
}

.service-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 560ms cubic-bezier(0.24, 0.8, 0.3, 1);
}

.service-img.is-active {
  opacity: 1;
}

.services-visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.4rem 0.9rem 0.4rem 0.6rem;
  border-radius: 999px;
  background: rgba(185, 135, 69, 0.1);
  border: 1px solid rgba(185, 135, 69, 0.22);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-sand-dark);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-sand-dark);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════ */

.stats-strip {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(31, 33, 29, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  line-height: 1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  font-weight: 700;
  color: var(--color-charcoal);
  font-variation-settings: normal;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  color: var(--color-sand-dark);
  font-weight: 700;
  font-variation-settings: normal;
  line-height: 1;
}

.stat p {
  margin: 0.55rem 0 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  font-weight: 700;
}

/* ═══════════════════════════════════════
   360° MATTERPORT SECTION
═══════════════════════════════════════ */

.section-360 {
  background: var(--color-cream);
}

.matterport-wrap {
  display: grid;
  gap: 1rem;
}

.matterport-container {
  position: relative;
  border-radius: clamp(14px, 1.5vw, 20px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-charcoal);
  box-shadow: 0 24px 60px rgba(20, 22, 18, 0.14);
  border: 1px solid rgba(31, 33, 29, 0.08);
}

.matterport-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.matterport-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: start;
}

.matterport-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  animation: live-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.matterport-badge p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 500;
}

@media (max-width: 1200px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero {
    padding-bottom: 14.75rem;
  }

  .trust-top-row {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .trust-divider {
    display: none;
  }

  .trust-claim {
    min-width: 0;
  }

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

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

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

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.7rem;
  }

  .timeline::before {
    display: none;
  }

  .timeline-step {
    border-left: 1px solid rgba(185, 135, 69, 0.6);
    border-top: 0;
    padding: 0 0 0 1rem;
  }

  .step-number {
    margin-left: -1.95rem;
    background: var(--color-cream);
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-visual {
    position: relative;
    top: 0;
    order: -1;
  }

  .service-images {
    aspect-ratio: 16 / 9;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .mega-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mega-image-col {
    display: none;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(var(--container-max), 100% - 2.5rem);
  }

  .section {
    padding: var(--section-space-mobile) 0;
  }

  .section-flow::before,
  .section-flow::after {
    height: 38px;
  }

  .hero {
    align-items: flex-end;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 2.4rem;
    min-height: 100vh;
  }

  .hero-content {
    margin-top: 0;
    margin-bottom: 1.6rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12.2vw, 4.25rem);
    line-height: 0.95;
  }

  .hero-subline {
    font-size: 1.02rem;
    max-width: 32ch;
  }

  .hero-ctas {
    width: 100%;
  }

  .hero-ctas .btn {
    flex: 1 1 100%;
    max-width: 300px;
  }

  .hero-trust-wrap {
    position: static;
    margin-top: 1.75rem;
  }

  .hero-trust-panel {
    padding: 1rem;
  }

  .trust-bottom-row {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.8rem;
  }

  .trust-bottom-row article {
    justify-content: flex-start;
  }

  .product-grid,
  .proof-grid,
  .footer-grid,
  .timeline,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-images {
    aspect-ratio: 4 / 3;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 1rem;
  }

  .matterport-container {
    aspect-ratio: 4 / 3;
  }

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

  .gallery-large {
    grid-row: auto;
  }

  .gallery-large img,
  .gallery-item img {
    aspect-ratio: 4 / 5;
  }

  .product-tile {
    min-height: 420px;
  }

  .site-footer {
    padding-top: 4rem;
  }

  .consultation-inner {
    padding: 1.45rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero {
    clip-path: none;
    animation: none;
  }

  .hero-media,
  .hero-video,
  .hero-content,
  .hero-trust-panel {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════
   OPTIMIERTE NEUE VERSION
═══════════════════════════════════════ */

body.gb-open {
  overflow: auto;
}

.section-label,
.mega-col-label {
  letter-spacing: 0.14em;
}

.site-header {
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled {
  background: rgba(245, 243, 238, 0.92);
  box-shadow: none;
}

.header-inner {
  gap: clamp(1rem, 2.2vw, 2rem);
}

.brand {
  filter: none;
}

.brand-logo {
  height: clamp(62px, 5.4vw, 78px);
}

.main-nav a,
.mega-trigger {
  font-weight: 700;
}

.header-actions .btn {
  padding-inline: 1.75rem;
}

.phone-link {
  font-weight: 700;
}

.mega-panel {
  top: var(--header-height);
  background:
    linear-gradient(90deg, rgba(28, 21, 17, 0.94), rgba(54, 37, 27, 0.9)),
    rgba(34, 25, 20, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 26px 70px rgba(14, 9, 5, 0.32);
}

.mega-inner {
  width: min(1340px, 100% - clamp(2rem, 6vw, 6rem));
  margin: 0 auto;
  grid-template-columns: 1fr 280px;
  padding: clamp(2rem, 3.6vw, 3.4rem) 0 clamp(2.2rem, 4vw, 3.8rem);
}

.mega-col-label {
  color: rgba(255, 255, 255, 0.6);
}

.mega-service-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.6vw, 3rem);
}

.mega-service-link {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  border-radius: 0;
  color: #fff;
}

.mega-service-link:hover {
  background: transparent;
}

.mega-service-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.mega-service-link strong {
  color: #fff;
  font-size: 1.02rem;
}

.mega-service-link span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.mega-all-link {
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.16);
}

.mega-image-col {
  border-radius: var(--radius);
}

.mega-image-col img {
  aspect-ratio: 1 / 1.1;
}

.hero {
  min-height: 100svh;
  padding-bottom: clamp(10rem, 18vh, 15rem);
}

.hero-content {
  margin-bottom: clamp(1.4rem, 3vh, 3.5rem);
}

.hero-kicker {
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero h1 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(3rem, 5.8vw, 6.2rem);
  max-width: 17ch;
  letter-spacing: 0;
}

.hero h1::first-line {
  font-family: var(--font-body);
}

.hero-subline {
  max-width: 42ch;
}

.hero-trust-panel {
  border-radius: var(--radius);
  padding: clamp(1rem, 1.6vw, 1.4rem) clamp(1.1rem, 2vw, 1.8rem);
  background: linear-gradient(130deg, rgba(17, 13, 10, 0.86), rgba(38, 31, 24, 0.76));
}

.logo-slot {
  border-radius: var(--radius);
  min-height: 74px;
}

.logo-slot img {
  filter: none;
  opacity: 1;
  max-height: 52px;
}

.section-metrics,
.section-service-overview,
.section-testimonials {
  background: #efeeeb;
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.metrics-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.soft-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  padding: 0.44rem 0.68rem;
  border-radius: var(--radius);
  background: #dfdbd6;
  color: #433b36;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
}

.soft-pill svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metrics-copy h2,
.overview-head h2,
.testimonials-head h2 {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-body);
  font-size: clamp(2.15rem, 4.2vw, 4.5rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.metrics-copy p:not(.soft-pill),
.overview-actions p {
  margin: 1.7rem 0 0;
  color: #5d5852;
  max-width: 48ch;
  line-height: 1.6;
}

.metrics-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.metrics-actions .btn-primary,
.overview-actions .btn-primary {
  background: #3d322d;
  color: #fff;
  box-shadow: none;
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.metric-cards article {
  min-height: clamp(160px, 15vw, 210px);
  border-radius: var(--radius);
  background: #dcd8d3;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-icon,
.overview-icon {
  display: grid;
  place-items: center;
  color: #443b36;
}

.metric-icon svg,
.overview-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-cards strong {
  display: block;
  margin-top: auto;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  color: #111;
}

.metric-cards p {
  margin: 0.5rem 0 0;
  color: #615b55;
  font-weight: 700;
}

.overview-head,
.testimonials-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.overview-actions {
  justify-self: end;
}

.overview-actions .btn {
  margin-top: 1.3rem;
}

.overview-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.overview-list a {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border-radius: 999px;
  background: #fff;
  padding: 0.75rem 0.8rem 0.75rem 1.8rem;
  color: #111;
  font-weight: 800;
}

.overview-list .overview-arrow {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ecebe8;
  font-size: 1.6rem;
  transition: transform 220ms ease, background-color 220ms ease;
}

.overview-list a:hover .overview-arrow,
.overview-list a:focus-visible .overview-arrow {
  transform: translateX(4px);
  background: #ded9d3;
}

.section-proof {
  background: var(--color-deep-blue);
  color: #fff;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(5rem, 8vw, 8rem);
  overflow: hidden;
}

.section-proof::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 46%;
  background:
    linear-gradient(180deg, rgba(12, 14, 19, 0.6), rgba(15, 23, 45, 1)),
    url("assets/schauraum sis ai.webp") center 58% / cover;
  z-index: -1;
}

.section-proof::after {
  display: none;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding-top: clamp(8rem, 18vw, 18rem);
}

.section-proof .section-header {
  margin: 0;
}

.section-proof .section-header h2 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
}

.section-proof .section-header p {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

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

.proof-grid article {
  min-height: 150px;
  border-radius: var(--radius);
  text-align: left;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
}

.section-testimonials {
  overflow: hidden;
}

.testimonial-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
}

.testimonial-controls span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: #4a423d;
  font-size: 2rem;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(360px, 1fr));
  gap: 1rem;
}

.testimonial-track article {
  min-height: 390px;
  border: 1px solid #ddd9d4;
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.25);
}

.testimonial-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.testimonial-logo img {
  width: 58px;
  height: 28px;
  object-fit: contain;
}

.testimonial-track article > p {
  margin: clamp(3rem, 7vw, 6rem) 0 0;
  color: #141414;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
}

.testimonial-track footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.testimonial-track footer span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #f6c27b 0 18%, transparent 19%),
    linear-gradient(135deg, #2e2621, #74645b);
}

.testimonial-track footer strong,
.testimonial-track footer small {
  display: block;
}

.testimonial-track footer small {
  color: #69635d;
  font-weight: 700;
}

.section-consultation {
  min-height: clamp(620px, 82vh, 860px);
  display: grid;
  align-items: end;
  background: #111;
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
  color: #fff;
  overflow: hidden;
}

.section-consultation::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.64)),
    url("assets/lamellendach sis.webp") center / cover;
  z-index: -1;
}

.consultation-inner {
  max-width: 920px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.consultation-inner .section-label {
  color: rgba(255, 255, 255, 0.82);
}

.consultation-inner h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 6.2rem);
  letter-spacing: 0;
}

.consultation-inner p {
  color: rgba(255, 255, 255, 0.82);
}

.consultation-ctas .btn-outline-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1200px) {
  :root {
    --header-height: 82px;
  }

  .brand-logo {
    height: 62px;
  }

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

  .metrics-layout,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .proof-layout {
    padding-top: clamp(9rem, 24vw, 15rem);
  }

  .overview-head,
  .testimonials-head {
    grid-template-columns: 1fr;
  }

  .overview-actions {
    justify-self: start;
  }
}

.reveal {
  opacity: 1;
  visibility: visible;
}

.hero {
  clip-path: none !important;
  animation: none !important;
}

.hero-media,
.hero-video,
.hero-content,
.hero-trust-panel {
  opacity: 1 !important;
  animation: none !important;
}

@media (max-width: 760px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(100% - 1.5rem, 1340px);
  }

  .brand-logo {
    height: 58px;
  }

  .mobile-menu-panel {
    width: min(92vw, 420px);
    padding-inline: 1.25rem;
  }

  .hero {
    display: grid;
    min-height: auto;
    padding-top: calc(var(--header-height) + 26vh);
    padding-bottom: 1.25rem;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
  }

  .hero-content {
    width: 100%;
    margin-bottom: 1rem;
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10.4vw, 2.95rem);
    max-width: 9.6ch;
    padding-inline: 0.2rem;
    line-height: 1.04;
    overflow-wrap: normal;
  }

  .hero-subline {
    font-size: 0.98rem;
    max-width: 29ch;
  }

  .hero-ctas .btn {
    width: min(100%, 300px);
    max-width: none;
  }

  .hero-trust-wrap {
    position: relative;
    inset: auto;
    width: 100%;
    overflow: hidden;
  }

  .hero-trust-wrap .container {
    width: min(300px, calc(100vw - 1rem));
  }

  .hero-trust-panel {
    padding: 0.9rem;
    max-height: none;
    width: min(100%, 340px);
    max-width: 100%;
    margin: 0 auto;
  }

  .trust-claim {
    font-size: 1.1rem;
  }

  .trust-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    min-width: 0;
  }

  .logo-slot {
    min-height: 48px;
    padding: 0.2rem;
    min-width: 0;
  }

  .logo-slot img {
    max-height: 32px;
    max-width: calc(100% - 0.35rem);
  }

  .trust-bottom-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .trust-bottom-row p {
    font-size: 0.9rem;
  }

  .metrics-layout,
  .metric-cards,
  .overview-list,
  .proof-grid,
  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .metric-cards article {
    min-height: 140px;
  }

  .overview-list a {
    min-height: 74px;
    padding-left: 1.1rem;
  }

  .overview-list .overview-arrow {
    width: 54px;
    height: 54px;
  }

  .proof-layout {
    padding-top: 48vw;
  }

  .testimonial-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }

  .testimonial-track article {
    min-width: min(86vw, 420px);
    min-height: 360px;
    scroll-snap-align: start;
  }

  .testimonial-controls {
    display: none;
  }

  .section-consultation {
    min-height: 640px;
  }

  .consultation-ctas .btn {
    width: min(100%, 320px);
  }
}

/* ═══════════════════════════════════════
   FINAL UI PATCH: HERO, MEGA, SERVICES, PROCESS
═══════════════════════════════════════ */

.site-header {
  height: var(--header-height);
}

.header-inner {
  align-items: center;
}

.brand {
  align-self: center;
  padding-block: 0.45rem;
}

.brand-logo {
  height: clamp(58px, 4.4vw, 72px);
  object-fit: contain;
}

.header-actions {
  height: 100%;
  align-items: center;
}

.header-actions .btn {
  min-height: 48px;
  align-items: center;
}

.hero {
  min-height: 100svh;
  align-items: end;
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: clamp(4.25rem, 9vh, 7rem);
}

.hero-content {
  margin-bottom: 0;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.7rem, 4.35vw, 4.8rem);
  line-height: 1.02;
  max-width: 17ch;
}

.hero-subline {
  max-width: 39ch;
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  line-height: 1.55;
}

.hero-ctas {
  margin-top: clamp(1.2rem, 2.2vw, 1.75rem);
}

.section-hero-trust {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(25, 20, 17, 0.96), rgba(239, 238, 235, 1)),
    #efeeeb;
}

.section-hero-trust .hero-trust-wrap {
  position: relative;
  inset: auto;
}

.section-hero-trust .hero-trust-panel {
  max-width: 1180px;
  opacity: 1;
  transform: none;
}

.section-services {
  min-height: 100svh;
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.services-layout {
  min-height: calc(100svh - var(--header-height));
  align-items: center;
}

.service-item {
  border-bottom-color: rgba(31, 33, 29, 0.18);
}

.service-item-inner {
  border-radius: var(--radius);
  padding: 1.3rem 1.15rem;
}

.service-item.is-active .service-item-inner {
  background: #fff;
  box-shadow: 0 18px 45px rgba(31, 33, 29, 0.08);
  padding-left: 1.25rem;
}

.service-item h3 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0;
}

.services-visual {
  position: relative;
  top: auto;
}

.service-images {
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(24, 21, 18, 0.18);
}

.section-process {
  background:
    linear-gradient(135deg, rgba(19, 18, 16, 0.88), rgba(43, 33, 27, 0.86)),
    url("assets/schauraum sis ai.webp") center / cover;
  color: #fff;
  padding: clamp(5rem, 9vw, 9rem) 0;
  overflow: hidden;
}

.section-process::before,
.section-process::after {
  display: none;
}

.section-process .section-header {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.46fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-process .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.section-process .section-header h2 {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-variation-settings: var(--heading-variation);
  letter-spacing: -0.018em;
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
  color: #fff;
}

.section-process .section-header::after {
  content: "Beratung, Planung, Montage und Service laufen nicht nebeneinander her, sondern als sauber geführter Projektablauf.";
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.6;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  padding-top: 0;
}

.timeline::before {
  display: none;
}

.timeline-step {
  min-height: 310px;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 320ms ease, background-color 320ms ease, border-color 320ms ease;
}

.timeline-step:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(214, 169, 104, 0.58);
}

.step-number {
  width: 52px;
  height: 52px;
  border-color: rgba(214, 169, 104, 0.82);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: none;
}

.timeline-step h3 {
  margin-top: auto;
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
  color: #fff;
}

.timeline-step p {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1200px) {
  :root {
    --header-height: 86px;
  }

  .site-header .mega-panel {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 5rem);
  }

  .services-layout,
  .section-process .section-header,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 78px;
  }

  .brand-logo {
    height: 58px;
  }

  .hero {
    min-height: 92svh;
    padding-top: calc(var(--header-height) + 22vh);
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 10vw, 3rem);
    max-width: 10ch;
  }

  .hero-subline {
    max-width: 27ch;
  }

  .section-hero-trust {
    padding: 2rem 0 3.25rem;
  }

  .section-hero-trust .hero-trust-wrap .container {
    width: min(100% - 1.25rem, 360px);
  }

  .section-hero-trust .hero-trust-panel {
    width: 100%;
  }

  .section-services {
    min-height: auto;
  }

  .services-layout {
    min-height: auto;
  }
}

/* ═══════════════════════════════════════
   GOOGLE BEWERTUNGEN BADGE
═══════════════════════════════════════ */

.gb-badge {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 144px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 200ms ease, filter 200ms ease;
}

.gb-badge:hover,
.gb-badge:focus-visible {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
}

.gb-badge:focus-visible {
  outline: 2px solid #4285f4;
  outline-offset: 4px;
  border-radius: 10px;
}

.gb-badge img {
  width: 100%;
  height: auto;
  display: block;
}

.gb-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.gb-overlay.on {
  opacity: 1;
  pointer-events: auto;
}

.gb-side {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 10001;
  width: 400px;
  max-width: 92vw;
  height: 100%;
  background: #fff;
  color: #202124;
  transform: translateX(100%);
  transition: transform 320ms ease;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  /* Schatten nur im geöffneten Zustand – sonst leckt er am rechten Rand auf den Screen */
  box-shadow: none;
}

.gb-side.on {
  transform: translateX(0);
  box-shadow: -22px 0 60px rgba(0, 0, 0, 0.18);
}

.gb-head {
  padding: 18px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gb-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.gb-head-info {
  flex: 1;
}

.gb-head-info strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  color: #202124;
}

.gb-head-info span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #777;
}

.gb-stars {
  color: #fbbc05;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: 1px;
}

.gb-stars-small {
  font-size: 12px;
  margin-left: 42px;
}

.gb-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  background: none;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.gb-close:hover,
.gb-close:focus-visible {
  color: #202124;
}

.gb-list {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px;
}

.gb-r {
  padding: 13px 0;
  border-bottom: 1px solid #f1f3f4;
}

.gb-r:last-child {
  border-bottom: 0;
}

.gb-rhead {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.gb-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.gb-blue { background: #4285f4; }
.gb-green { background: #34a853; }
.gb-yellow { background: #fbbc05; }
.gb-red { background: #ea4335; }

.gb-rname {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #202124;
}

.gb-rmeta {
  margin-top: 1px;
  font-size: 11px;
  line-height: 1.2;
  color: #aaa;
}

.gb-rtext {
  margin: 3px 0 0 42px;
  color: #444;
  font-size: 12.5px;
  line-height: 1.55;
}

.gb-foot {
  padding: 14px 16px;
  border-top: 1px solid #eee;
}

.gb-foot a {
  display: block;
  padding: 11px;
  border-radius: 8px;
  background: #4285f4;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.gb-foot a:hover,
.gb-foot a:focus-visible {
  background: #3367d6;
}

@media (max-width: 1024px) {
  .gb-badge {
    width: 86px;
    right: 20px;
    bottom: 20px;
  }
}

/* ═══════════════════════════════════════
   DESIGN SYSTEM FINAL PASS
═══════════════════════════════════════ */

.site-header {
  height: var(--header-height);
}

.site-header.is-scrolled {
  background: rgba(246, 244, 239, 0.94);
}

.header-inner {
  height: var(--header-height);
  grid-template-columns: minmax(180px, 1fr) auto minmax(300px, 1fr);
}

.brand {
  height: 100%;
  display: grid;
  place-items: center start;
  padding-block: 0;
}

.brand-logo {
  height: 62px;
  width: auto;
}

.brand-logo-white {
  height: 72px;
}

.main-nav ul {
  gap: clamp(1.1rem, 2vw, 2rem);
}

.main-nav a,
.mega-trigger,
.phone-link,
.header-actions .btn {
  font-size: 0.88rem;
  line-height: 1;
}

.header-actions {
  height: 100%;
  gap: 0.9rem;
}

.header-actions .btn {
  min-height: 42px;
  padding: 0.72rem 1.35rem;
  font-weight: 700;
}

.phone-link {
  height: 42px;
  align-items: center;
}

.section-hero-trust {
  background: var(--surface);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.section-hero-trust .hero-trust-panel {
  max-width: 1160px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(32, 33, 36, 0.1);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.section-hero-trust .hero-trust-panel::after {
  border-color: rgba(32, 33, 36, 0.06);
}

.section-hero-trust .trust-claim {
  color: var(--ink);
  font-size: clamp(1.5rem, 2.7vw, 2.25rem);
  font-weight: 800;
}

.section-hero-trust .trust-divider,
.section-hero-trust .trust-bottom-row {
  border-color: rgba(32, 33, 36, 0.12);
}

.section-hero-trust .trust-divider {
  background: rgba(32, 33, 36, 0.18);
}

.section-hero-trust .logo-slot {
  background: #f7f5f1;
  border-color: rgba(32, 33, 36, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.section-hero-trust .trust-bottom-row p,
.section-hero-trust .line-icon {
  color: var(--ink);
}

.line-icon i {
  font-size: 1.15rem;
}

.line-icon svg {
  display: none;
}

.section-services {
  min-height: 100svh;
  padding: clamp(3.25rem, 5.5vw, 5.5rem) 0;
}

.services-layout {
  min-height: min(760px, calc(100svh - var(--header-height)));
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.services-header h2,
.section-header h2,
.split-copy h2,
.consultation-inner h2,
.metrics-copy h2,
.overview-head h2,
.testimonials-head h2 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0;
}

.service-images {
  aspect-ratio: 4 / 3;
  max-height: min(68vh, 620px);
  background: #e6e0d8;
}

.service-img {
  object-fit: contain;
  object-position: center;
  padding: clamp(0.4rem, 1vw, 0.75rem);
}

.services-visual-badge {
  margin-top: 0.75rem;
}

.section-consultation {
  min-height: clamp(390px, 52vh, 520px);
  align-items: center;
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.section-consultation::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.26)),
    url("assets/lamellendach sis.webp") center / cover;
}

.consultation-inner {
  max-width: 760px;
  text-align: left;
  margin-inline: 0;
}

.consultation-inner h2 {
  font-size: clamp(2.2rem, 4.1vw, 4.2rem);
}

.consultation-inner p {
  margin-inline: 0;
  max-width: 48ch;
}

.consultation-ctas {
  justify-content: flex-start;
}

@media (max-width: 1200px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand-logo,
  .brand-logo-white {
    height: 62px;
  }

  .services-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .brand-logo,
  .brand-logo-white {
    height: 56px;
  }

  .section-hero-trust .trust-top-row {
    grid-template-columns: 1fr;
  }

  .section-hero-trust .trust-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-images {
    max-height: none;
  }

  .consultation-inner {
    text-align: center;
    margin-inline: auto;
  }

  .consultation-inner p {
    margin-inline: auto;
  }

  .consultation-ctas {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════
   SYSTEM TUNING: LOGO, TYPE SCALE, MENU, SERVICES
═══════════════════════════════════════ */

.site-header {
  overflow: visible;
}

.site-header:not(.is-scrolled) .brand-logo-white {
  height: clamp(118px, 9vw, 144px);
  transform-origin: left center;
  animation: hero-logo-bloom 980ms cubic-bezier(0.18, 0.78, 0.22, 1) both;
}

.site-header.is-scrolled .brand-logo-color {
  height: 62px;
}

.site-header.is-scrolled .brand {
  place-items: center start;
}

@keyframes hero-logo-bloom {
  0% {
    opacity: 0;
    transform: translateY(-14px) scale(0.84);
    filter: blur(6px);
  }
  58% {
    opacity: 1;
    transform: translateY(2px) scale(1.04);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-content {
  animation: hero-copy-rise 900ms 180ms cubic-bezier(0.18, 0.78, 0.22, 1) both;
}

@keyframes hero-copy-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: var(--type-display);
  font-weight: var(--weight-heading);
}

.section-header h2,
.services-header h2,
.split-copy h2,
.metrics-copy h2,
.overview-head h2,
.testimonials-head h2,
.section-proof .section-header h2,
.section-process .section-header h2,
.consultation-inner h2 {
  font-size: var(--type-section);
  line-height: 1.08;
  font-weight: var(--weight-heading);
  letter-spacing: 0;
}

.service-item h3,
.timeline-step h3,
.metric-cards strong {
  font-size: var(--type-card);
  font-weight: var(--weight-heading);
}

.section-label,
.hero-kicker,
.mega-col-label {
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.14em;
}

@media (min-width: 901px) {
  .section-services {
    height: 330svh;
    min-height: 0;
    padding: 0;
    background: var(--surface);
  }

  .section-services .services-layout {
    position: sticky;
    top: var(--header-height);
    height: calc(100svh - var(--header-height));
    min-height: 0;
    grid-template-columns: minmax(0, 0.82fr) minmax(460px, 0.95fr);
    align-items: center;
    padding-block: clamp(2rem, 4vh, 3.25rem);
  }

  .services-copy {
    align-self: center;
  }

  .services-header {
    margin-bottom: clamp(1.25rem, 2.5vh, 2rem);
  }

  .service-list {
    display: grid;
    gap: 0.5rem;
    border: 0;
  }

  .service-item {
    border: 0;
  }

  .service-item-inner {
    padding: clamp(1rem, 1.6vh, 1.25rem) 1.15rem;
  }

  .service-item.is-active .service-desc {
    max-height: 4.8rem;
  }

  .services-all-link {
    margin-top: 1.15rem;
  }

  .services-visual {
    align-self: center;
  }

  .service-images {
    height: min(64svh, 620px);
    max-height: none;
    aspect-ratio: auto;
  }

  .service-img {
    object-fit: contain;
    padding: clamp(0.5rem, 1.2vw, 0.9rem);
  }
}

.gb-badge {
  width: 118px;
  right: 18px;
  bottom: 18px;
}

@media (max-width: 1024px) {
  .gb-badge {
    width: 74px;
  }
}

@media (max-width: 760px) {
  :root {
    --type-display: clamp(2.35rem, 10vw, 3rem);
    --type-section: clamp(1.95rem, 7.2vw, 2.65rem);
  }

  .site-header:not(.is-scrolled) .brand-logo-white,
  .site-header.is-scrolled .brand-logo-color {
    height: 58px;
  }

  .section-services {
    height: auto;
  }

  .hero-content {
    width: min(100% - 1.25rem, 340px);
    overflow: visible;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 0.64rem;
    letter-spacing: 0.09em;
    white-space: normal;
    justify-content: center;
  }

  .hero h1 {
    width: min(100%, 8.4ch);
    max-width: 8.4ch;
    font-size: clamp(2.15rem, 9.2vw, 2.72rem);
    line-height: 1.06;
    margin-inline: auto;
  }

  .hero-subline {
    max-width: 28ch;
    font-size: 0.96rem;
  }

  .hero-ctas {
    align-items: center;
  }

  .hero-ctas .btn {
    flex: 0 0 auto;
    width: min(100%, 282px);
    max-width: 282px;
  }
}

/* ═══════════════════════════════════════
   CONTENT CLEANUP AND CAROUSEL FINISH
═══════════════════════════════════════ */

.stats-strip,
.section-metrics {
  display: none;
}

.section-why {
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.section-testimonials {
  background: var(--surface);
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.testimonials-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.testimonial-controls {
  display: flex;
  gap: 0.7rem;
}

.testimonial-controls button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(32, 33, 36, 0.1);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  transform: translateY(-2px);
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.35rem;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-track article {
  flex: 0 0 min(560px, calc(50% - 0.5rem));
  min-height: 360px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(32, 33, 36, 0.1);
  box-shadow: none;
}

.testimonial-track article > p {
  font-weight: 720;
  font-size: clamp(1.12rem, 1.45vw, 1.42rem);
}

.section-360 {
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.matterport-container {
  border-radius: var(--radius);
  box-shadow: none;
}

.site-footer {
  padding-top: clamp(3.25rem, 5vw, 4.5rem);
}

@media (max-width: 760px) {
  .testimonials-head {
    grid-template-columns: 1fr;
  }

  .testimonial-controls {
    justify-content: flex-start;
  }

  .testimonial-track article {
    flex-basis: min(86vw, 420px);
  }
}

/* ═══════════════════════════════════════
   FINAL PREMIUM GSAP SYSTEM PASS
   Structured override layer for the cleaned homepage.
═══════════════════════════════════════ */

html {
  scroll-padding-top: var(--header-height);
}

.line {
  display: block;
}

[data-animate-image] {
  overflow: hidden;
  clip-path: inset(0% 0% 0% 0%);
}

[data-animate-image] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  scroll-margin-top: var(--header-height);
}

.section-label,
.hero-kicker,
.mega-col-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.section-header h2,
.service-story-copy h2,
.split-copy h2,
.overview-head h2,
.testimonials-head h2,
.consultation-inner h2 {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-variation-settings: normal;
  text-wrap: balance;
}

.hero h1 {
  font-size: var(--type-display);
  max-width: 11ch;
}

.hero h1::first-line {
  font-family: var(--font-heading);
}

.section-header h2,
.service-story-copy h2,
.split-copy h2,
.overview-head h2,
.testimonials-head h2,
.consultation-inner h2 {
  font-size: var(--type-section);
}

.site-header {
  z-index: 1000;
  transform: translateY(0);
  transition: transform 300ms ease, background 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header .brand {
  filter: none;
}

.site-header:not(.is-scrolled) .brand-logo-white {
  height: clamp(108px, 8vw, 132px);
}

.site-header.is-scrolled .brand-logo-color {
  height: 64px;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(23, 32, 27, 0.09), 0 18px 42px rgba(23, 32, 27, 0.06);
}

.header-inner {
  grid-template-columns: minmax(180px, 1fr) auto minmax(260px, 1fr);
}

.header-actions .btn {
  min-height: 44px;
  padding: 0.72rem 1.35rem;
  font-size: 0.9rem;
  align-items: center;
}

.mega-trigger {
  font: inherit;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  justify-self: end;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-toggle span {
  left: 50%;
  margin-left: -11px;
  background: currentColor;
}

.site-header.is-scrolled .menu-toggle {
  color: var(--color-ink);
  border-color: rgba(23, 32, 27, 0.14);
  background: rgba(255, 255, 255, 0.64);
}

.site-header.is-scrolled .mega-trigger {
  color: rgba(23, 32, 27, 0.9);
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 18vh);
  padding-bottom: clamp(3rem, 8vh, 5rem);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.54)),
    linear-gradient(90deg, rgba(18, 22, 19, 0.64), rgba(18, 22, 19, 0.14) 55%, rgba(18, 22, 19, 0.38));
}

.hero-content {
  max-width: 760px;
  text-align: center;
  align-items: center;
  margin-inline: auto;
}

.hero-subline {
  max-width: 42ch;
  line-height: 1.55;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-video,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  background:
    radial-gradient(circle at 70% 25%, rgba(185, 144, 92, 0.22), transparent 34%),
    linear-gradient(135deg, #17201b, #2f3630);
}

.section-hero-trust {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, #efebe2, var(--color-cream));
}

.section-services.service-story {
  min-height: 0;
  height: auto;
  padding: 0;
  overflow: visible;
  background: var(--color-cream);
}

.service-story-scroll {
  position: relative;
}

.service-story-sticky {
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
}

.service-story-copy h2 {
  margin: 0;
}

.service-story-intro {
  max-width: 52ch;
  margin: 1.25rem 0 0;
  color: var(--color-muted);
}

.service-story-panels {
  position: relative;
  margin-top: clamp(2rem, 5vh, 3.25rem);
}

.service-story-panel {
  border: 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(1.3rem, 2vw, 1.75rem);
  box-shadow: 0 1px 0 rgba(23, 32, 27, 0.08);
  cursor: pointer;
}

.service-story-panel .service-num {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 800;
}

.service-story-panel h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--type-card);
  font-weight: 560;
  line-height: 1;
}

.service-story-panel p {
  max-width: 42ch;
  margin: 0.9rem 0 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.service-story-panel a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--color-ink);
  font-weight: 800;
}

.service-story-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #e8e0d5;
  box-shadow: 0 26px 70px rgba(23, 32, 27, 0.16);
  isolation: isolate;
}

.service-story-img {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  padding: 0 !important;
  opacity: 1;
  object-fit: initial;
  clip-path: inset(100% 0 0 0);
  transition: none;
}

.service-story-img.is-active {
  clip-path: inset(0 0 0 0);
}

.service-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.split-features {
  border-radius: var(--radius-lg);
}

.section-process {
  background:
    linear-gradient(135deg, rgba(24, 28, 24, 0.9), rgba(45, 36, 28, 0.84)),
    url("assets/schauraum sis ai.webp") center / cover;
}

.timeline-step {
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.section-gallery {
  background: var(--color-cream);
}

.gallery-grid {
  align-items: stretch;
  gap: clamp(0.8rem, 1.8vw, 1.5rem);
}

.gallery-item {
  border-radius: var(--radius-lg);
  box-shadow: none;
  background: #e8e0d5;
}

.gallery-item img {
  min-height: clamp(260px, 36vw, 560px);
}

.gallery-large img {
  min-height: clamp(360px, 48vw, 720px);
}

.section-testimonials {
  overflow: hidden;
  background: #efede8;
}

.testimonial-track {
  will-change: transform;
}

.testimonial-track article {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
}

.google-review-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.google-review-head img {
  display: none;
}

.google-review-head small {
  display: block;
  margin-top: 0.1rem;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.review-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), #81694b);
  color: #fff;
  font-weight: 800;
}

.review-stars {
  margin-top: 1.25rem;
  color: #f4b400;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.section-consultation {
  min-height: clamp(360px, 50vh, 500px);
  background: var(--color-deep);
}

.consultation-inner h2 {
  max-width: 10ch;
}

.gb-badge {
  width: 104px;
}

@media (min-width: 1025px) {
  .service-story-scroll {
    height: auto;
  }

  .service-story-sticky {
    position: sticky;
    top: 0;
    min-height: 100svh;
    padding-top: var(--header-height);
    padding-bottom: clamp(2rem, 4vh, 3rem);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .service-story-panels {
    min-height: 265px;
  }

  .service-story-panel {
    position: absolute;
    inset: 0 auto auto 0;
    width: min(100%, 560px);
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    pointer-events: none;
  }

  .service-story-panel.is-active {
    position: relative;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .service-story-visual {
    height: min(72svh, 760px);
    min-height: 520px;
  }

  .section-testimonials {
    min-height: 100svh;
    display: grid;
    align-items: center;
  }

  .testimonial-track article {
    flex-basis: min(620px, 44vw);
  }
}

@media (max-width: 1200px) {
  .site-header .mega-panel {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 78px;
    --type-display: clamp(2.5rem, 9vw, 4.2rem);
    --type-section: clamp(2rem, 7vw, 3.2rem);
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid !important;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1002;
  }

  .site-header:not(.is-scrolled) .brand-logo-white,
  .site-header.is-scrolled .brand-logo-color {
    height: 60px;
  }

  .hero {
    min-height: 94svh;
    padding-top: calc(var(--header-height) + 18vh);
  }

  .hero h1 {
    max-width: 9ch;
  }

  .hero-kicker {
    width: min(100%, 30ch);
    white-space: normal;
    text-align: center;
    justify-content: center;
    line-height: 1.45;
    font-size: 0.66rem;
  }

  .hero-proof {
    display: none;
  }

  .service-story {
    padding: var(--section-y) 0;
  }

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

  .service-story-panels {
    display: grid;
    gap: 0.85rem;
  }

  .service-story-panel,
  .service-story-panel.is-active {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .service-story-visual {
    min-height: 340px;
    aspect-ratio: 4 / 3;
    order: -1;
  }

  .service-story-img {
    display: none;
    clip-path: inset(0 0 0 0);
  }

  .service-story-img.is-active {
    display: block;
  }

  .testimonial-track {
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    left: calc(min(100vw, 390px) - 62px);
    right: auto;
  }

  .container {
    width: min(100% - 1.25rem, var(--container-max));
  }

  .site-header:not(.is-scrolled) .brand-logo-white,
  .site-header.is-scrolled .brand-logo-color {
    height: 58px;
  }

  .hero-content {
    width: min(100% - 1.25rem, 350px);
  }

  .hero h1 {
    width: auto;
    max-width: 9ch;
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .hero-subline {
    max-width: 30ch;
  }

  .service-story-visual {
    min-height: 285px;
    border-radius: 20px;
  }

  .service-story-panel {
    border-radius: 20px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-item img,
  .gallery-large img {
    min-height: 260px;
  }

  .consultation-inner h2 {
    max-width: none;
  }

  .gb-badge {
    width: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════
   SCROLL STABILITY HOTFIX
   Native page scroll, no artificial long sticky/pinned tracks.
═══════════════════════════════════════ */

html,
body {
  height: auto;
  min-height: 100%;
  overflow-y: auto;
}

.section-testimonials,
.testimonials-layout,
.testimonial-track {
  max-width: 100vw;
}

.section-services.service-story {
  height: auto !important;
  min-height: auto !important;
  padding: var(--section-y) 0 !important;
  overflow: visible;
}

.service-story-scroll {
  height: auto !important;
  min-height: auto !important;
}

.service-story-sticky {
  position: relative !important;
  top: auto !important;
  min-height: auto !important;
  height: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.service-story-panels {
  display: grid !important;
  gap: 0.85rem;
  min-height: 0 !important;
}

.service-story-panel,
.service-story-panel.is-active {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: auto !important;
}

.service-story-panel {
  border: 1px solid rgba(23, 32, 27, 0.08);
}

.service-story-panel.is-active {
  border-color: rgba(185, 144, 92, 0.38);
  background: rgba(255, 255, 255, 0.9);
}

.service-story-visual {
  height: min(68vh, 660px) !important;
  min-height: 420px;
}

.section-testimonials {
  min-height: auto !important;
}

.testimonial-track {
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  margin-left: 0 !important;
}

.testimonials-head,
.testimonials-layout {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}

@media (min-width: 1025px) {
  .service-story-sticky {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
  }

  .service-story-visual {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }
}

@media (max-width: 760px) {
  .service-story-visual {
    min-height: 285px;
    height: auto !important;
  }
}

/* ═══════════════════════════════════════
   REDESIGN 2026 — FONT SYSTEM
   Sans-serif heading system (Plus Jakarta Sans / Manrope).
═══════════════════════════════════════ */

.hero h1,
.section-header h2,
.service-story-copy h2,
.services-header h2,
.split-copy h2,
.overview-head h2,
.testimonials-head h2,
.consultation-inner h2,
.metrics-copy h2,
.section-proof .section-header h2,
.section-process .section-header h2 {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-variation-settings: var(--heading-variation);
  letter-spacing: -0.018em;
}

.hero h1 {
  font-weight: 700;
  font-variation-settings: normal;
  font-size: var(--type-display);
  max-width: 26ch;
  line-height: var(--line-display);
}

.service-story-panel h3,
.timeline-step h3,
.service-item h3 {
  font-family: var(--font-heading);
  font-size: var(--type-h3);
  font-weight: 700;
  font-variation-settings: normal;
}

.stat-number,
.stat-suffix {
  font-family: var(--font-heading);
  font-weight: 700;
  font-variation-settings: normal;
}

.stat-number { font-size: clamp(2.2rem, 3.2vw, 3.4rem); }

.mobile-menu nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-variation-settings: normal;
}

.site-footer h3 {
  font-family: var(--font-heading);
  font-size: var(--type-h3);
  font-weight: 700;
  font-variation-settings: normal;
}

/* ── 3. Hero: wider headline, cleaner ── */
.hero h1 {
  max-width: 26ch;
  text-align: center;
}

@media (max-width: 760px) {
  .hero h1 {
    max-width: none;
    width: 100%;
    font-size: clamp(2.5rem, 10.5vw, 3.2rem);
    text-align: center;
  }
}

/* ── 5. Bridge / intro statement ── */
.section-intro {
  background: var(--color-cream, #fbf8f2);
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.intro-inner {
  max-width: 1040px;
}

.intro-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted, #667069);
  margin: 0 0 2rem;
  display: block;
}

.intro-heading {
  margin: 0;
}

.intro-line {
  overflow: hidden;
  line-height: 1;
  margin-bottom: 0.04em;
}

.intro-line span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3.5rem, 7vw, 8rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--color-ink, #17201b);
}

.intro-line--accent span {
  color: var(--color-gold, #b9905c);
}

.intro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(23, 32, 27, 0.12);
}

.intro-meta-col strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-ink, #17201b);
  line-height: 1;
}

.intro-meta-col p {
  margin: 0.3rem 0 0;
  font-size: 0.76rem;
  color: var(--color-muted, #667069);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media (max-width: 760px) {
  .intro-line span {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .intro-meta {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

/* ── 6. Service accordion ── */
.section-services.section-services--accord {
  min-height: 0 !important;
  height: auto !important;
  padding: clamp(4rem, 7vw, 6rem) 0 0 !important;
  background: var(--color-cream, #fbf8f2) !important;
  overflow: visible !important;
}

.services-accord-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem) 1rem clamp(5rem, 10vw, 9rem);
}

.services-accord {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
}

.service-card {
  width: 100%;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-lg);
  color: #fff;
  position: relative;
}

.service-card--1 {
  background: linear-gradient(155deg, #c99045 0%, #7a5228 100%);
}

.service-card--2 {
  background: linear-gradient(155deg, #2e5040 0%, #1c3329 100%);
}

.service-card--3 {
  background: linear-gradient(155deg, #1e2f42 0%, #0e1a29 100%);
}

.service-card__header {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding-bottom: 0.75rem;
}

.service-card__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.55;
  flex-shrink: 0;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  font-weight: 700;
  margin: 0;
  flex: 1;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.service-card__body {
  overflow: hidden;
  padding-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.service-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.95rem, 1.05vw, 1.06rem);
  line-height: 1.65;
  max-width: 54ch;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 220ms ease;
}

.service-card__link:hover { gap: 0.7rem; }

.services-accord-footer {
  text-align: center;
  padding-top: 0;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

@media (max-width: 760px) {
  .service-card {
    border-radius: 16px;
  }
  .service-card__title {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }
}

/* ── 7. Before / after comparison (leistungen.html) ── */
.comparison-intro {
  padding: clamp(5rem, 8vw, 8rem) 0 3rem;
  background: var(--color-cream, #fbf8f2);
}

.comparison-section {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.comparison-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.comparison-after {
  transform: translate(100%, 0);
}

.comparison-after img {
  transform: translate(-100%, 0);
}

.comparison-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  display: block;
}

.comparison-label {
  position: absolute;
  z-index: 10;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-after .comparison-label {
  left: auto;
  right: 1.5rem;
}

/* ═══════════════════════════════════════
   PATCH 2 — DESIGN REFINEMENTS
═══════════════════════════════════════ */

/* 1. Remove hero-state header border line */
.site-header:not(.is-scrolled) {
  border-bottom: none !important;
}

/* 3. Hero text — canonical size/weight (wins over earlier one-off .hero h1 rules) */
.hero h1 {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--type-display);
  line-height: var(--line-display);
  max-width: 24ch;
}
.hero-subline {
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  font-weight: 400;
  color: rgba(238, 234, 228, 0.72);
  max-width: 42ch;
}
@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(2.2rem, 9.5vw, 3rem);
    max-width: none;
    width: 100%;
  }
  .hero-subline {
    font-size: 0.95rem;
    max-width: none;
  }
  .hero-content {
    text-align: left;
    align-items: flex-start;
  }
  .hero-ctas {
    justify-content: flex-start;
  }
}

/* 4. Nav – uniform font size */
.main-nav a,
.mega-trigger,
.phone-link span {
  font-size: 0.875rem !important;
}

/* 5. Stats strip (replaces intro-statement) */
.ss-stats-strip {
  background: var(--color-charcoal, #1f211d);
  color: #fff;
  padding: clamp(2.2rem, 3.5vw, 3rem) 0;
}
.ss-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.ss-stat {
  padding: 0.8rem 1.5rem;
  position: relative;
}
.ss-stat + .ss-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.ss-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ss-stat span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.44);
  font-weight: 600;
}
@media (max-width: 600px) {
  .ss-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .ss-stat + .ss-stat::before { display: none; }
  .ss-stat { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ss-stat:nth-child(n+3) { border-bottom: none; }
}

/* 6. Vertical stacked service scroll section */
.ss-services-section {
  overflow: hidden;
  background: #16120e;
}
.ss-services-wrapper {
  position: relative;
}
.ss-services-list {
  height: 100%;
  width: 100%;
  position: relative;
}
.ss-services-item {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 42% 58%;
  position: relative;
  overflow: hidden;
}

/* Gestapelter Parallax-Modus — wird per JS aktiviert, sonst normale Vollbild-Panels */
.ss-services-section.is-stacked .ss-services-wrapper {
  height: 100vh;
}
.ss-services-section.is-stacked .ss-services-item {
  position: absolute;
  inset: 0;
  min-height: 0;
}
.ss-services-item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5.5rem) clamp(2rem, 5vw, 5rem);
  color: #fff;
  position: relative;
  z-index: 1;
}
.ss-services-item .ss-services-item__content { background: linear-gradient(150deg, #26231d 0%, #171511 100%); }
.ss-services-item__num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.38;
  margin-bottom: 1.5rem;
  display: block;
}
.ss-services-item__content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 2.5vw, 2.7rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.018em;
  line-height: 1.08;
  font-variation-settings: normal;
  color: #fff;
}
.ss-services-item__content p {
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  max-width: 36ch;
  margin: 0 0 2rem;
}
.ss-services-item__note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: -1rem 0 1.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.ss-services-item__note span {
  display: inline-grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.68rem;
  line-height: 1;
}

.ss-services-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 220ms ease;
  letter-spacing: 0.02em;
}
.ss-services-item__link:hover { gap: 0.85rem; }
.ss-services-item__link { color: var(--color-sand); }
.ss-services-item__media {
  overflow: hidden;
  position: relative;
}
.ss-services-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.ss-services-footer {
  background: #16120e;
  text-align: center;
  padding: clamp(3rem, 5vw, 4.5rem) 1rem;
}
.ss-services-footer .btn-outline-light {
  border-color: rgba(255,255,255,0.3) !important;
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.9rem;
}
@media (max-width: 760px) {
  .ss-services-item {
    grid-template-columns: 1fr;
    grid-template-rows: 55% 45%;
  }
  .ss-services-item__media { order: -1; }
  .ss-services-item__content {
    padding: 1.75rem 1.5rem;
    justify-content: flex-end;
  }
  .ss-services-item__content h3 {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
    margin-bottom: 0.5rem;
  }
  .ss-services-item__content p { display: none; }
  .ss-services-item__num { margin-bottom: 0.6rem; }
}

/* 7. Section-why – cleaner, less text-heavy */
.section-why .split-copy > p {
  font-size: 0.95rem;
  color: var(--color-muted);
  max-width: 44ch;
  line-height: 1.65;
}
.section-why .split-copy h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.6rem) !important;
  max-width: 28ch;
}
.split-features ul {
  font-size: 0.93rem;
}

/* 8. Hide duplicate metrics section */
.section-metrics { display: none !important; }

/* 9. Leistungen page-hero – smaller, less dominant */
.page-hero h1 {
  font-size: clamp(2.2rem, 3.8vw, 4rem) !important;
  font-weight: 700 !important;
  font-variation-settings: normal !important;
}

/* 10. Section-label gold accent → muted */
.section-label {
  color: var(--color-muted, #777267) !important;
  border-left-color: rgba(120,120,110,0.3) !important;
}
/* Keep gold only on dark sections */
.leistungen-cta .section-label,
.section-proof .section-label,
.ss-services-item .section-label {
  color: rgba(214,169,104,0.85) !important;
  border-left-color: rgba(214,169,104,0.5) !important;
}

/* ═══ PATCH 3 — QUICK FIXES ═══ */

/* Logo breathing room — reduce height so it floats in the header */
.brand-logo {
  height: clamp(42px, 3.8vw, 54px) !important;
}

/* CTA / consultation section — centered, smaller headline, better bg */
.section-consultation::before {
  background:
    linear-gradient(135deg, rgba(10,22,14,0.9) 0%, rgba(10,22,14,0.65) 60%, rgba(10,22,14,0.3) 100%),
    url("assets/lamellendach sis.webp") center / cover !important;
}

.consultation-inner {
  max-width: 600px !important;
  text-align: center !important;
  margin-inline: auto !important;
}

.consultation-inner h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.8rem) !important;
  font-weight: 700 !important;
  font-variation-settings: normal !important;
  max-width: 26ch !important;
  margin-inline: auto !important;
}

.consultation-inner p {
  max-width: 44ch !important;
  margin-inline: auto !important;
  color: rgba(238,234,228,0.72) !important;
  font-size: 0.97rem !important;
}

.consultation-ctas {
  justify-content: center !important;
  gap: 0.75rem;
}

/* Ensure btn-outline-dark shows cleanly on dark bg in CTA */
.section-consultation .btn-outline-dark {
  border-color: rgba(255,255,255,0.35) !important;
  color: rgba(255,255,255,0.85) !important;
}
.section-consultation .btn-outline-dark:hover,
.section-consultation .btn-outline-dark:focus-visible {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.6) !important;
  color: #fff !important;
}

/* ── Trust logos row (Regionaler Fokus section) ── */
.trust-logos-row {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-top: clamp(1.5rem, 2.5vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.trust-logos-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.trust-logos-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

.trust-logos-list img {
  height: clamp(36px, 4.5vw, 52px);
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 300ms ease;
}

.trust-logos-list img:hover {
  opacity: 0.85;
}

@media (max-width: 600px) {
  .trust-logos-list {
    gap: 1.25rem;
  }
  .trust-logos-list img {
    height: 30px;
  }
}

/* ═══════════════════════════════════════
   PATCH 4 — TYPOGRAPHY & COMPONENT POLISH
═══════════════════════════════════════ */

/* 2. Process timeline step numbers — clean minimal */
.step-number {
  background: var(--color-charcoal, #1f211d) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 0.82rem !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}

.timeline-step h3 {
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  letter-spacing: -0.01em;
}

/* Remove the gold-tinted border above timeline */
.timeline {
  border-top-color: rgba(31, 33, 29, 0.1) !important;
}

/* 3. Overview + testimonials h2 — reduce size */
.overview-head h2,
.testimonials-head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.6rem) !important;
  font-weight: 700 !important;
  font-variation-settings: normal !important;
  letter-spacing: -0.018em !important;
  max-width: 32ch !important;
}

/* 4. Overview section — section label on light bg */
.section-service-overview .section-label {
  color: var(--color-muted) !important;
  border-left-color: rgba(120,120,110,0.3) !important;
}

/* 5. Review avatar — clean monochrome initial */
.review-avatar {
  background: var(--color-charcoal, #1f211d) !important;
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.02em;
}

/* 6. Soft-pill — ensure no gold anywhere */
.soft-pill {
  background: rgba(31,33,29,0.07) !important;
  color: var(--color-charcoal, #1f211d) !important;
  border-radius: 999px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  font-weight: 700 !important;
}

/* 7. Comparison section — proper fixed height for GSAP pin */
.comparison-section {
  position: relative !important;
  width: 100% !important;
  height: 70vh !important;
  min-height: 400px !important;
  max-height: 700px !important;
  padding-bottom: 0 !important;
  overflow: hidden !important;
}

.comparison-intro {
  background: var(--color-warm-white, #faf8f3) !important;
  padding: clamp(4rem, 6vw, 6rem) 0 2rem !important;
}

.comparison-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 3rem) !important;
  font-weight: 700 !important;
  font-variation-settings: normal;
  letter-spacing: -0.018em !important;
}

/* 8. Matterport badge dot — was gold */
.matterport-dot {
  background: var(--color-charcoal) !important;
}

/* 9. Section-proof heading on dark bg */
.section-proof .section-header h2 {
  color: #fff;
  font-size: clamp(1.8rem, 2.8vw, 3rem) !important;
  font-weight: 700 !important;
  font-variation-settings: normal !important;
}

/* 10. Stats-strip reveal animation */
.ss-stats-strip .ss-stat {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ss-stats-strip.is-visible .ss-stat,
.ss-stats-strip .ss-stat.is-visible {
  opacity: 1;
  transform: none;
}

.ss-stats-strip .ss-stat:nth-child(2) { transition-delay: 0.08s; }
.ss-stats-strip .ss-stat:nth-child(3) { transition-delay: 0.16s; }
.ss-stats-strip .ss-stat:nth-child(4) { transition-delay: 0.24s; }

/* 11. Footer headings clean */
.site-footer h3,
.site-footer h4 {
  font-family: var(--font-heading) !important;
  font-variation-settings: normal !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em;
}

/* 12. Section-proof text readable on dark */
.section-proof .section-header p {
  color: rgba(248,246,240,0.75);
  max-width: 52ch;
}

/* ═══════════════════════════════════════
   PATCH 5 — FINAL POLISH PASS
═══════════════════════════════════════ */

/* 1. Footer — remove gold tint, clean headings */
.site-footer {
  background:
    radial-gradient(circle at 10% 20%, rgba(10,129,213,0.06), transparent 32%),
    #191b18 !important;
}

.site-footer h3 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  font-variation-settings: normal !important;
  letter-spacing: -0.015em;
  color: #fff;
}

.site-footer p {
  font-size: 0.88rem;
  line-height: 1.65;
}

.site-footer ul {
  font-size: 0.88rem;
}

/* 2. Overview list — tighter, cleaner links */
.overview-list a {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  padding-block: 1rem !important;
}

.overview-list strong {
  font-family: var(--font-heading) !important;
  font-variation-settings: normal !important;
}

/* 3. Overview head — clean two-column on desktop */
.overview-head h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.4rem) !important;
}

.overview-actions .btn-primary {
  white-space: nowrap;
}

/* 4. Section-flow warm — remove any residual gold bg tint */
.section-flow--warm {
  background-image: none !important;
}

/* 5. Section-process — tighter, no gold border */
.section-process .section-header {
  border-bottom-color: rgba(31,33,29,0.1) !important;
}

/* 6. Testimonial cards — slightly cleaner */
.testimonial-track article {
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
}

/* 7. Gallery item hover — subtle lift */
.gallery-item {
  transition: transform 350ms ease, box-shadow 350ms ease;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}

/* 8. Matterport section — clean heading */
.section-360 .section-header h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.8rem) !important;
  font-weight: 700 !important;
  font-variation-settings: normal !important;
}

/* 9. Leistungen page — service-detail CTA button width */
.service-cta .btn-primary {
  display: inline-flex;
  align-items: center;
}

/* 10. Leistungen page — fix comparison-intro on dark follows */
.comparison-intro .section-label {
  color: var(--color-muted) !important;
  border-left-color: rgba(120,120,110,0.3) !important;
}

/* 11. Mobile — reduce section vertical spacing slightly */
@media (max-width: 600px) {
  .section-why .split-copy > p {
    font-size: 0.9rem;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .trust-logos-list img {
    height: 28px;
    opacity: 0.45;
  }

  .consultation-inner h2 {
    font-size: clamp(1.5rem, 7.5vw, 2.2rem) !important;
  }
}

/* ═══════════════════════════════════════
   PATCH 6 — CONTEXT-SPECIFIC OVERRIDES
═══════════════════════════════════════ */

/* 1. page-hero (leistungen) — btn-primary must be light on dark bg */
.page-hero .btn-primary {
  background: rgba(252,249,243,0.96) !important;
  color: var(--color-charcoal, #1f211d) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,0.28) !important;
}
.page-hero .btn-primary:hover,
.page-hero .btn-primary:focus-visible {
  background: #fff !important;
  color: var(--color-charcoal, #1f211d) !important;
}

/* 2. section-label on dark sections — must be readable */
.page-hero .section-label,
.section-consultation .section-label,
.section-proof .section-label {
  color: rgba(255,255,255,0.55) !important;
  border-left-color: rgba(255,255,255,0.25) !important;
}

/* service-detail section-labels on light bg stay muted */
.service-detail .section-label {
  color: var(--color-muted, #777267) !important;
  border-left-color: rgba(120,120,110,0.3) !important;
}

/* 3. section-flow--sand bg — remove residual warm-sand tint from body gradient */
.section-process {
  background: var(--color-cream, #f5f1ea);
}

/* 4. Gallery section — remove gold-tinted after gradient */
.section-gallery.section-flow--light::after {
  background: linear-gradient(to top, rgba(245,241,234,0.75), transparent) !important;
}

/* 5. section-360 (Matterport) — section-label on sand bg */
.section-360 .section-label {
  color: var(--color-muted) !important;
  border-left-color: rgba(120,120,110,0.3) !important;
}

/* 6. Mega panel service links — ensure hover doesn't show gold */
.mega-service-link:hover .mega-service-icon,
.mega-service-link:focus-visible .mega-service-icon {
  background: rgba(255,255,255,0.14) !important;
  border-color: rgba(255,255,255,0.2) !important;
}

/* 7. Mobile menu btn-primary → dark is fine, but keep readable */
.mobile-menu-actions .btn-primary {
  display: block;
  text-align: center;
}

/* 8. leistungen-cta section label — gold on dark is intentional */
.leistungen-cta .section-label {
  color: rgba(214,169,104,0.88) !important;
  border-left-color: rgba(214,169,104,0.5) !important;
  display: table;
  margin-inline: auto;
}

/* ═══════════════════════════════════════
   PATCH 7 — FINAL POLISH
═══════════════════════════════════════ */

/* 1. page-hero section-label: restore gold (leistungen.html) 
      PATCH 6 mistakenly overrode it to white */
.page-hero .section-label {
  color: rgba(214,169,104,0.92) !important;
  border-left-color: rgba(214,169,104,0.6) !important;
}

/* 2. section-consultation btn-primary: light on dark CTA bg */
.section-consultation .btn-primary {
  background: rgba(252,249,243,0.96) !important;
  color: var(--color-charcoal, #1f211d) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,0.28) !important;
}
.section-consultation .btn-primary:hover,
.section-consultation .btn-primary:focus-visible {
  background: #fff !important;
  color: var(--color-charcoal, #1f211d) !important;
}

/* 3. Service-detail feature list dots: charcoal not gold */
.service-features li::before {
  background: var(--color-charcoal, #1f211d) !important;
  opacity: 0.45;
}

/* 4. Testimonials: ensure review-stars are gold amber */
.review-stars {
  color: #d4a017;
}

/* 5. comparison-intro text alignment: centered */
.comparison-intro {
  text-align: center;
}
.comparison-intro p {
  max-width: 54ch;
  margin-inline: auto;
  color: var(--color-muted);
}

/* 6. leistungen-cta btn-primary: light on dark */
.leistungen-cta .btn-primary {
  background: rgba(252,249,243,0.96) !important;
  color: var(--color-charcoal, #1f211d) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,0.28) !important;
}
.leistungen-cta .btn-primary:hover,
.leistungen-cta .btn-primary:focus-visible {
  background: #fff !important;
  color: var(--color-charcoal, #1f211d) !important;
}

/* 7. Stats strip: add a top divider line to visually separate from hero */
.ss-stats-strip {
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* 8. Service detail image badge span: consistent muted uppercase */
.service-detail-badge span {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
}

/* 9. Overview-list items: remove any residual gold accents */
.overview-list a:hover .overview-icon,
.overview-list a:focus-visible .overview-icon {
  background: rgba(31,33,29,0.08) !important;
  border-color: rgba(31,33,29,0.15) !important;
}

/* 10. Mobile: service item content padding tighter */
@media (max-width: 768px) {
  .ss-services-item__content {
    padding: clamp(1.8rem,5vw,2.5rem) !important;
  }
  .ss-services-item__num {
    font-size: 0.65rem !important;
  }
  .ss-services-item h3 {
    font-size: clamp(1.5rem,5vw,2rem) !important;
  }
}

/* ═══════════════════════════════════════
   PATCH 8 — SCREENSHOT FIXES
═══════════════════════════════════════ */

/* 1. Logo bigger in hero (not-scrolled state) */
.site-header:not(.is-scrolled) .brand-logo {
  height: clamp(58px, 6vw, 86px);
}
.site-header:not(.is-scrolled) .brand-logo-white {
  height: clamp(64px, 6.5vw, 92px);
}

/* 2. Process section — ensure steps are always visible as base */
.timeline-step {
  visibility: visible !important;
}

/* 3. Trust logos inline (under section-proof text) */
.trust-logos-inline {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-logos-inline img {
  height: clamp(32px, 4vw, 48px);
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.trust-logos-inline img:hover {
  opacity: 0.9;
}

/* 4. Consultation CTA — show background image more, centered layout */
.section-consultation::before {
  background:
    linear-gradient(0deg, rgba(10,14,12,0.52) 0%, rgba(10,14,12,0.18) 100%),
    url("assets/lamellendach sis.webp") center / cover !important;
}
.consultation-inner {
  text-align: center !important;
  margin-inline: auto !important;
  max-width: 700px !important;
}
.consultation-ctas {
  justify-content: center !important;
}
.consultation-inner p {
  margin-inline: auto !important;
  max-width: 52ch !important;
}

/* 5. CTA eyebrow label — refined pill style */
.section-consultation .section-label,
.leistungen-cta .section-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  border-left: none !important;
  padding-left: 0 !important;
  letter-spacing: 0.14em !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
  margin-bottom: 1rem !important;
}
.section-consultation .section-label::before,
.leistungen-cta .section-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.section-consultation .section-label::after,
.leistungen-cta .section-label::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* Keep leistungen-cta gold label */
.leistungen-cta .section-label {
  color: rgba(214,169,104,0.92) !important;
  margin-inline: auto !important;
}
/* Consultation label stays white */
.section-consultation .section-label {
  color: rgba(255,255,255,0.72) !important;
}

/* 6. leistungen-cta background — same lighter treatment */
.leistungen-cta::before {
  opacity: 0.32 !important;
}

/* ── Process steps: CSS-only scroll reveal (no GSAP autoAlpha issue) ── */
.ss-step-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ss-step-animate.in-view {
  opacity: 1;
  transform: none;
}
.ss-step-animate:nth-child(2) { transition-delay: 0.1s; }
.ss-step-animate:nth-child(3) { transition-delay: 0.2s; }
.ss-step-animate:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   PATCH 9 — 4 CRITICAL FIXES
═══════════════════════════════════════ */

/* 1. Logo 50% größer */
.brand-logo {
  height: clamp(72px, 7vw, 96px) !important;
}
.brand-logo-white {
  height: clamp(80px, 8vw, 108px) !important;
}
.site-header.is-scrolled .brand-logo {
  height: clamp(44px, 4.5vw, 58px) !important;
}
.site-header.is-scrolled .brand-logo-white {
  height: clamp(44px, 4.5vw, 58px) !important;
}

/* 2. "So funktioniert's" — restore background image (PATCH 6 had overridden it to cream) */
.section-process {
  background:
    linear-gradient(135deg, rgba(12,14,12,0.72) 0%, rgba(28,22,18,0.68) 100%),
    url("assets/schauraum sis ai.webp") center / cover !important;
  color: #fff !important;
}
.section-process .timeline-step h3,
.section-process .timeline-step p {
  color: inherit !important;
}
.section-process .step-number {
  color: #fff !important;
  border-color: rgba(255,255,255,0.25) !important;
  /* Kein negativer Rand mehr – Nummer sitzt sauber in der Karte (wurde sonst vom overflow:hidden abgeschnitten) */
  margin-left: 0 !important;
}

/* 3. Trust logos — show as-is (no aggressive filter), directly under text */
.trust-logos-inline img {
  filter: none !important;
  opacity: 0.75 !important;
  mix-blend-mode: screen;
}
.trust-logos-inline img:hover {
  opacity: 1 !important;
}

/* "Regionaler Fokus" eyebrow label — kleiner */
.section-proof .section-label {
  font-size: 0.68rem !important;
  letter-spacing: 0.18em !important;
}

/* 4. CTA Beratung — fullscreen background, nicht abgeschnitten */
.section-consultation {
  position: relative !important;
  isolation: isolate !important;
  min-height: 100vh !important;
  align-items: center !important;
}
.section-consultation::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(180deg, rgba(8,12,10,0.35) 0%, rgba(8,12,10,0.55) 100%),
    url("assets/lamellendach sis.webp") center / cover no-repeat !important;
  z-index: -1 !important;
}

/* ═══ PATCH 10 — CTA + PROCESS FIXES ═══ */

/* CTA: nur Bild, kein grüner Overlay */
.section-consultation::before {
  background: url("assets/lamellendach sis.webp") center / cover no-repeat !important;
}

/* Lesbarkeit: leichter Schatten nur am unteren Rand */
.section-consultation::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  z-index: -1;
  pointer-events: none;
}

/* ═══ PATCH 11 — Home CTA wie leistungen-cta ═══ */
.section-consultation {
  min-height: unset !important;
  padding: clamp(6rem, 10vw, 9rem) 0 !important;
  background: var(--color-charcoal) !important;
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}
.section-consultation::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: url("assets/lamellendach sis.webp") !important;
  background-size: cover !important;
  background-position: center !important;
  opacity: 0.38 !important;
  z-index: 0 !important;
}
.section-consultation::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 60%) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
.section-consultation .container {
  position: relative !important;
  z-index: 1 !important;
}

/* ═══ PATCH 12 — CTA Bild direkt als Background ═══ */
.section-consultation {
  background: url("assets/lamellendach sis.webp") center / cover no-repeat !important;
}
.section-consultation::before {
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%) !important;
  opacity: 1 !important;
}
.section-consultation::after {
  display: none !important;
}

/* ═══ PATCH 13 — Prozess-Karten immer sichtbar ═══ */
.ss-step-animate {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
/* Section-Header Text explizit weiß auf dunklem Hintergrund */
.section-process .section-header .section-label,
.section-process .section-header h2 {
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ═══ PATCH 14 — CTA Lesbarkeitsgradient ═══ */
.section-consultation::before {
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.38) 45%,
      rgba(0,0,0,0.62) 100%),
    url("assets/lamellendach sis.webp") center / cover no-repeat !important;
  opacity: 1 !important;
}

/* ═══ PATCH 15 — CTA sauber: 1 Bild, starker Gradient ═══ */
.section-consultation {
  background: #0a0f0d !important; /* kein direktes Bild mehr auf dem Element */
}
.section-consultation::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: url("assets/lamellendach sis.webp") !important;
  background-size: cover !important;
  background-position: center !important;
  opacity: 0.55 !important;
  z-index: 0 !important;
}
.section-consultation::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.0) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.75) 100%
  ) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
.section-consultation .container,
.section-consultation .consultation-inner {
  position: relative !important;
  z-index: 1 !important;
}


/* ═══════════════════════════════════════════════════
   NEW PATCHES – 2025
═══════════════════════════════════════════════════ */

/* ── MEGA MENU: Wide 4-col layout ── */
.mega-inner--wide {
  grid-template-columns: repeat(4, 1fr) 180px;
  gap: 0;
  padding: clamp(1.5rem, 2.5vw, 2rem) 0;
}

.mega-cat-col {
  padding: 0 clamp(1.2rem, 2vw, 2rem);
  border-right: 1px solid rgba(31,33,29,0.08);
}

.mega-cat-col:first-child {
  padding-left: 0;
}

.mega-cat-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 700;
  margin: 0 0 0.9rem;
  padding-left: 0.6rem;
  border-left: 2px solid var(--color-sand-dark);
}

.mega-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.18rem;
}

.mega-cat-list a {
  display: block;
  padding: 0.48rem 0.6rem;
  border-radius: 7px;
  font-size: 0.84rem;
  color: var(--color-charcoal);
  transition: background-color 180ms ease, color 180ms ease, padding-left 180ms ease;
}

.mega-cat-list a:hover {
  background: rgba(185,135,69,0.08);
  color: var(--color-sand-dark);
  padding-left: 0.9rem;
}

.mega-footer-bar {
  padding: 0.85rem clamp(1.2rem, 2vw, 2rem);
  border-top: 1px solid rgba(31,33,29,0.08);
}

/* ── SERVICE ITEMS: Bullets ── */
.ss-services-item__bullets {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 1rem;
  display: grid;
  gap: 0.38rem;
}

.ss-services-item__bullets li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
}

.ss-services-item__bullets li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--color-sand);
}

/* ── INSEKTENSCHUTZ: Produktion Badge ── */
.ss-badge-production {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.7rem 0 0.3rem;
  padding: 0.45rem 0.9rem 0.45rem 0.65rem;
  background: rgba(214,169,104,0.18);
  border: 1px solid rgba(214,169,104,0.45);
  border-radius: 999px;
  color: #f2e3ca;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ss-badge-production svg {
  width: 15px;
  height: 15px;
  fill: var(--color-sand);
  stroke: none;
  flex-shrink: 0;
}

/* ── IMAGE SLIDER ── */
.ss-img-slider {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  height: 100%;
  min-height: 320px;
}

.ss-img-slider__track {
  display: flex;
  height: 100%;
  transition: transform 480ms cubic-bezier(0.24, 0.8, 0.3, 1);
}

.ss-img-slider__slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}

.ss-img-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ss-slide-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.28rem 0.72rem;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: rgba(255,255,255,0.92);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ss-img-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 200ms ease, transform 200ms ease;
  z-index: 2;
}

.ss-img-slider__btn:hover {
  background: rgba(0,0,0,0.62);
  transform: translateY(-50%) scale(1.08);
}

.ss-img-slider__btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-img-slider__btn--prev { left: 0.65rem; }
.ss-img-slider__btn--next { right: 0.65rem; }

.ss-img-slider__dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.38rem;
  z-index: 2;
}

.ss-img-slider__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background-color 220ms ease, transform 220ms ease;
  padding: 0;
}

.ss-img-slider__dot.is-active {
  background: #fff;
  transform: scale(1.35);
}

/* ── SPLIT: Two-image grid ── */
.split-img-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.split-img-duo img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 12px 32px rgba(19,23,30,0.12);
}

/* ── COMING SOON BANNER ── */
.ss-coming-soon {
  background: linear-gradient(90deg, var(--color-charcoal) 0%, #2e3328 100%);
  border-top: 1px solid rgba(214,169,104,0.3);
  border-bottom: 1px solid rgba(214,169,104,0.3);
}

.ss-coming-soon__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  flex-wrap: wrap;
}

.ss-coming-soon__pill {
  padding: 0.28rem 0.75rem;
  background: rgba(214,169,104,0.18);
  border: 1px solid rgba(214,169,104,0.45);
  border-radius: 999px;
  color: var(--color-sand);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ss-coming-soon__inner p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  flex: 1;
}

.ss-coming-soon__inner strong {
  color: #fff;
}

.ss-coming-soon__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── PARTNER SECTION ── */
.section-partners {
  background: var(--color-warm-white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 680px;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(31,33,29,0.1);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  color: var(--color-charcoal);
  text-decoration: none;
}

.partner-card:hover {
  border-color: rgba(185,135,69,0.4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.partner-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.partner-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.partner-card span {
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* ── HERSTELLER BRAND BAR ── */
.ss-brands-bar {
  background: var(--color-warm-white);
  border-top: 1px solid rgba(31,33,29,0.08);
  border-bottom: 1px solid rgba(31,33,29,0.08);
  padding: 1.4rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ss-brands-bar__label {
  flex-shrink: 0;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  white-space: nowrap;
}

.ss-brands-track-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 3%, #000 97%, transparent 100%);
}

.ss-brands-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  width: max-content;
  animation: brands-scroll 28s linear infinite;
}

.ss-brands-track:hover {
  animation-play-state: paused;
}

@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ss-brand-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(37,37,37,0.45);
  white-space: nowrap;
  transition: color 220ms ease;
  line-height: 1.2;
}

.ss-brand-logo:hover {
  color: var(--color-sand-dark);
}

.ss-brand-logo em {
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-sand-dark);
  opacity: 0.8;
}

/* ── RESPONSIVE ── */

@media (max-width: 1100px) {
  .mega-inner--wide {
    grid-template-columns: repeat(2, 1fr) 160px;
    row-gap: 1.2rem;
  }
  .mega-cat-col:nth-child(3),
  .mega-cat-col:nth-child(4) {
    border-right: none;
  }
}

@media (max-width: 900px) {
  .mega-inner--wide {
    grid-template-columns: 1fr 1fr;
  }
  .mega-image-col { display: none; }

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

  .split-img-duo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ss-services-item__content {
    padding: 1.5rem 1.25rem;
  }

  .ss-coming-soon__inner {
    gap: 0.7rem;
  }

  .ss-brands-bar__label {
    display: none;
  }

  .split-img-duo img:last-child {
    display: none;
  }

  .mega-inner--wide {
    grid-template-columns: 1fr;
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mega-cat-col {
    border-right: none;
    border-bottom: 1px solid rgba(31,33,29,0.08);
    padding: 1rem 0.5rem;
  }
}

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

  .partner-card {
    padding: 1.1rem;
  }
}

/* ═══════════════════════════════════════
   FINAL RESPONSIVE PROJECT PATCH
═══════════════════════════════════════ */

.section-projects {
  background: #f4f2ee;
  padding-block: clamp(4.75rem, 8vw, 8rem);
}

.section-projects--page {
  background: #f7f5f0;
  padding-top: clamp(4rem, 7vw, 7rem);
}

.project-showcase-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: stretch;
  min-height: clamp(360px, 40vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(23, 32, 27, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-md);
}

.project-card:nth-child(even) .project-card__copy {
  order: 2;
}

.project-card__copy {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 3.25rem);
}

.project-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  padding: 0.4rem 0.62rem;
  border-radius: 999px;
  background: rgba(10, 129, 213, 0.08);
  color: #202124;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.project-rating span {
  color: #f4b400;
  letter-spacing: 0.04em;
}

.project-rating strong {
  font-weight: 800;
}

.project-eyebrow {
  margin: clamp(1.4rem, 4vw, 2.6rem) 0 0;
  color: #6f746d;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0.75rem 0 0;
  max-width: 15ch;
  color: var(--color-ink, #17201b);
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.project-work {
  margin: clamp(1rem, 2.5vw, 1.55rem) 0 0;
  max-width: 50ch;
  color: #515750;
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  font-weight: 400;
  line-height: 1.55;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: auto 0 0;
  padding-top: clamp(2rem, 5vw, 4.2rem);
}

.project-meta div {
  min-width: 0;
}

.project-meta dt {
  margin: 0 0 0.25rem;
  color: #90938d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-meta dd {
  margin: 0;
  color: #151914;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  font-weight: 800;
  line-height: 1.25;
}

.project-card__image {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 38vw, 520px);
  object-fit: cover;
}

.project-showcase-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.4rem, 3vw, 2.1rem);
}

.projects-hero {
  padding: calc(var(--header-height) + clamp(3rem, 7vw, 6rem)) 0 clamp(3.5rem, 7vw, 6rem);
  background:
    linear-gradient(180deg, rgba(247, 245, 240, 0.88), rgba(247, 245, 240, 1)),
    url("assets/lamellendach sis.webp") center / cover;
}

.projects-hero__inner {
  max-width: 820px;
}

.projects-hero h1 {
  margin: 0.8rem 0 0;
  color: var(--color-ink, #17201b);
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.projects-hero__inner > p:last-child {
  margin: 1.35rem 0 0;
  max-width: 58ch;
  color: #4f574f;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 400;
  line-height: 1.6;
}

.google-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  margin-top: 1.1rem;
  padding: 0.62rem 0.84rem;
  border: 1px solid rgba(32, 33, 36, 0.1);
  border-radius: 999px;
  background: #fff;
  color: #202124;
  box-shadow: 0 8px 22px rgba(23, 32, 27, 0.07);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.google-rating-pill:hover,
.google-rating-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(66, 133, 244, 0.28);
  box-shadow: 0 12px 28px rgba(23, 32, 27, 0.1);
}

.google-rating-pill:focus-visible {
  outline: 2px solid #4285f4;
  outline-offset: 3px;
}

.google-rating-pill__mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.google-rating-pill strong {
  color: #f4b400;
  font-weight: 800;
}

.testimonial-track article > p {
  font-weight: 400;
  font-size: 16px;
}

.testimonial-track article > p {
  margin: clamp(3rem, 7vw, 6rem) 0 0;
  color: #818181;
  line-height: 1.2;
}

.ss-brands-bar {
  background: #fff;
  padding: 1rem 0;
}

.ss-brands-track {
  gap: clamp(1.2rem, 3vw, 2.4rem);
  animation-duration: 34s;
}

.ss-brand-logo {
  min-width: clamp(104px, 12vw, 150px);
  height: 58px;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(23, 32, 27, 0.07);
}

.ss-brand-logo img {
  width: 100%;
  max-width: 128px;
  max-height: 38px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.95);
  opacity: 0.82;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.ss-brand-logo:hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-1px);
}

.section-consultation,
.section-consultation.section-flow {
  min-height: clamp(430px, 52vh, 620px) !important;
  display: grid !important;
  align-items: center !important;
  padding: clamp(5rem, 9vw, 8rem) 0 !important;
  background: #111713 !important;
  color: #fff !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.section-consultation::before,
.section-consultation.section-flow::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  height: auto !important;
  background:
    linear-gradient(90deg, rgba(10, 13, 11, 0.86) 0%, rgba(10, 13, 11, 0.58) 44%, rgba(10, 13, 11, 0.16) 100%),
    linear-gradient(180deg, rgba(10, 13, 11, 0.1) 0%, rgba(10, 13, 11, 0.38) 100%),
    url("assets/lamellendach sis.webp") center / cover no-repeat !important;
  opacity: 1 !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.section-consultation::after,
.section-consultation.section-flow::after {
  display: none !important;
}

.section-consultation .container,
.section-consultation .consultation-inner {
  position: relative !important;
  z-index: 1 !important;
}

.consultation-inner {
  margin-inline: 0;
  text-align: left;
}

.consultation-inner p {
  margin-inline: 0;
}

.consultation-ctas {
  justify-content: flex-start;
}


@media (max-width: 1200px) {
  .main-nav,
  .header-actions {
    display: none !important;
  }

  .header-inner {
    grid-template-columns: 1fr auto !important;
  }
}

@media (max-width: 900px) {
  .section {
    padding-block: var(--section-space-mobile);
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .project-card,
  .project-card:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .project-card:nth-child(even) .project-card__copy {
    order: 0;
  }

  .project-card__image {
    order: -1;
  }

  .project-card__image img {
    min-height: clamp(240px, 58vw, 420px);
    aspect-ratio: 16 / 10;
  }

  .project-meta {
    padding-top: 1.6rem;
  }

  .overview-head,
  .testimonials-head {
    gap: 1.35rem;
    margin-bottom: 2rem;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 1rem;
  }

  .container {
    width: min(100% - 1.25rem, var(--container-max)) !important;
  }

  .menu-toggle {
    right: 0.75rem !important;
    left: auto !important;
  }

  .mobile-menu-panel {
    width: min(92vw, 380px) !important;
    padding: 1.1rem !important;
  }

  .section-header h2,
  .overview-head h2,
  .testimonials-head h2,
  .section-proof .section-header h2 {
    font-size: clamp(1.75rem, 8vw, 2.65rem) !important;
    line-height: 1.08 !important;
  }

  .project-card__copy {
    padding: 1.25rem;
  }

  .project-card h3 {
    max-width: none;
    font-size: clamp(1.65rem, 8vw, 2.45rem);
  }

  .project-work {
    font-size: 0.98rem;
  }

  .project-meta {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .google-rating-pill {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
    line-height: 1.25;
  }

  .testimonial-track article {
    min-width: min(88vw, 390px);
    min-height: 330px;
  }

  .testimonial-track article > p {
    margin-top: 2.2rem;
  }

  .section-consultation,
  .section-consultation.section-flow {
    min-height: 0 !important;
    padding: 4.5rem 0 !important;
  }

  .section-consultation::before,
  .section-consultation.section-flow::before {
    background:
      linear-gradient(180deg, rgba(10, 13, 11, 0.82), rgba(10, 13, 11, 0.62)),
      url("assets/lamellendach sis.webp") center / cover no-repeat !important;
  }

  .consultation-inner h2 {
    max-width: none !important;
    font-size: clamp(2rem, 9vw, 3.2rem) !important;
  }

  .consultation-ctas {
    display: grid;
    justify-items: stretch;
  }

  .consultation-ctas .btn {
    width: 100%;
  }

  .ss-brands-bar {
    display: block;
    padding: 0.85rem 0;
  }

  .ss-brands-bar__label {
    display: block;
    padding: 0 1rem 0.6rem;
    text-align: center;
  }

  .ss-brand-logo {
    min-width: 112px;
    height: 52px;
  }

  .ss-brand-logo img {
    max-height: 32px;
  }

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

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

@media (max-width: 520px) {
  .hero-ctas,
  .metrics-actions,
  .page-hero-ctas {
    display: grid !important;
    width: 100%;
  }

  .hero-ctas .btn,
  .metrics-actions .btn,
  .page-hero-ctas .btn {
    width: 100%;
  }

  .overview-list a {
    border-radius: 8px;
    grid-template-columns: auto 1fr;
    padding: 1rem !important;
  }

  .overview-list .overview-arrow {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr !important;
  }

  .projects-hero {
    padding-top: calc(var(--header-height) + 2.4rem);
  }
}

/* ═══════════════════════════════════════
   FINAL MOBILE MENU MEGA PATCH
═══════════════════════════════════════ */

.mobile-menu-panel {
  overflow: hidden;
}

.mobile-menu-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: #242820;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 5.5vw, 1.9rem);
  font-weight: 500;
  font-variation-settings: normal;
  letter-spacing: -0.015em;
  line-height: 1.1;
  text-align: left;
  padding: 0.35rem 0;
  min-height: 48px;
  cursor: pointer;
}

.mobile-menu-link span {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(23, 32, 27, 0.06);
  color: #596057;
  font-size: 1.65rem;
  line-height: 1;
}

.mobile-submenu {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  background: #fbfaf6;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 320ms cubic-bezier(0.24, 0.8, 0.29, 1), visibility 320ms ease;
}

.mobile-submenu.is-active {
  visibility: visible;
  transform: translateX(0);
}

.mobile-submenu-head {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(23, 32, 27, 0.1);
  background: #fff;
}

.mobile-submenu-back {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 32, 27, 0.05);
  color: #17201b;
  font-size: 2rem;
  line-height: 1;
}

.mobile-submenu-head span {
  color: #17201b;
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mobile-submenu-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.35rem 1.25rem 2rem;
}

.mobile-submenu-body section {
  padding: 1rem 0 1.25rem;
  border-bottom: 1px solid rgba(23, 32, 27, 0.09);
}

.mobile-submenu-body section:first-child {
  padding-top: 0;
}

.mobile-submenu-body .submenu-label {
  margin: 0 0 0.62rem;
  color: var(--color-sand-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-submenu-body a {
  display: block;
  padding: 0.58rem 0;
  color: #20241f;
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 4.8vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 1.2;
}

.mobile-submenu-all {
  margin-top: 1.3rem;
  padding: 0.95rem 1rem !important;
  border-radius: 999px;
  background: #17201b;
  color: #fff !important;
  text-align: center;
}

@media (max-width: 1200px) {
  .mobile-menu {
    z-index: 1000;
  }

  .mobile-menu-backdrop {
    background: rgba(15, 18, 15, 0.58);
    backdrop-filter: blur(6px);
  }

  .mobile-menu-panel {
    inset: 0 0 0 auto;
    width: min(88vw, 430px) !important;
    max-width: 430px;
    min-width: 300px;
    padding: clamp(1rem, 4vw, 1.35rem) clamp(1rem, 4vw, 1.6rem) clamp(1rem, 4vw, 1.4rem) !important;
    gap: 0;
    border-left: 1px solid rgba(23, 32, 27, 0.12);
    background:
      radial-gradient(circle at 14% 8%, rgba(242, 164, 15, 0.13), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 237, 0.98));
    box-shadow: -26px 0 70px rgba(10, 13, 11, 0.24);
  }

  .mobile-close {
    top: clamp(0.9rem, 3vw, 1.25rem);
    right: clamp(0.9rem, 3vw, 1.25rem);
    width: clamp(54px, 12vw, 66px);
    height: clamp(54px, 12vw, 66px);
    border-color: rgba(23, 32, 27, 0.13);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 8px 24px rgba(23, 32, 27, 0.08);
    font-size: 0;
  }

  .mobile-close::before,
  .mobile-close::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: #17201b;
  }

  .mobile-close::before {
    transform: rotate(45deg);
  }

  .mobile-close::after {
    transform: rotate(-45deg);
  }

  .mobile-brand {
    width: min(150px, 48%) !important;
    margin: 0 0 clamp(2.5rem, 9vh, 5rem) !important;
  }

  .mobile-menu-main {
    transition: transform 320ms cubic-bezier(0.24, 0.8, 0.29, 1), opacity 240ms ease;
  }

  .mobile-menu-panel.is-submenu-open .mobile-menu-main,
  .mobile-menu-panel.is-submenu-open .mobile-menu-actions,
  .mobile-menu-panel.is-submenu-open .mobile-brand {
    opacity: 0;
    transform: translateX(-18%);
    pointer-events: none;
  }

  .mobile-menu nav ul {
    gap: 0 !important;
  }

  .mobile-menu nav li + li {
    border-top: 1px solid rgba(31, 33, 29, 0.08);
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    color: #242820;
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 5.5vw, 1.9rem) !important;
    font-weight: 500 !important;
    font-variation-settings: normal;
    letter-spacing: -0.015em;
    line-height: 1.1;
    padding: 0.35rem 0;
  }

  .mobile-menu-actions {
    position: relative;
    z-index: 2;
    gap: 0.8rem !important;
    margin-top: auto !important;
    padding-top: clamp(1.25rem, 6vh, 3rem);
    transition: transform 320ms cubic-bezier(0.24, 0.8, 0.29, 1), opacity 240ms ease;
  }

  .mobile-menu-actions .btn {
    width: 100%;
    min-height: 60px;
    border-radius: 999px;
    font-size: clamp(1rem, 4vw, 1.16rem);
  }

  .mobile-phone {
    min-height: 58px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.52);
    color: #17201b;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 4vw, 1.25rem);
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  body.menu-open .gb-badge {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.96);
  }
}

@media (max-width: 420px) {
  .mobile-menu-panel {
    width: min(92vw, 390px) !important;
    min-width: 0;
  }

  .mobile-menu nav a,
  .mobile-menu-link {
    font-size: clamp(1.35rem, 7vw, 1.6rem) !important;
  }

  .mobile-submenu-head {
    min-height: 74px;
  }
}

/* ═══════════════════════════════════════════════
   Team Profiles
═══════════════════════════════════════════════ */
.home-team-section {
  background:
    linear-gradient(180deg, rgba(250,248,243,0.96), rgba(245,241,234,0.98));
}

.home-team-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.home-team-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 4vw, 4.35rem);
  line-height: 1.02;
  font-weight: 420;
  margin: 0;
  font-variation-settings: normal;
}

.home-team-head > p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.profile-grid {
  display: grid;
  align-items: start;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.profile-grid--home {
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.85fr));
}

.profile-grid--about {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.profile-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(31,33,29,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.profile-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214,169,104,0.42);
  box-shadow: var(--shadow-lg);
}

.profile-card--featured {
  background: var(--color-charcoal);
  color: #fff;
}

.profile-card--quiet {
  background: rgba(245,241,234,0.82);
}

.profile-card__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(11rem, 16vw, 15rem);
  background:
    linear-gradient(135deg, rgba(31,33,29,0.93), rgba(126,129,110,0.78)),
    linear-gradient(90deg, rgba(214,169,104,0.22), rgba(10,129,213,0.14));
  overflow: hidden;
}

.profile-card__media::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
}

.profile-card__media::after {
  content: "";
  position: absolute;
  width: 38%;
  aspect-ratio: 1;
  right: -8%;
  bottom: -12%;
  border-radius: 999px;
  background: rgba(214,169,104,0.24);
}

.profile-card__media span {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 6vw, 6.2rem);
  line-height: 0.9;
  color: rgba(255,255,255,0.84);
  font-weight: 600;
  font-variation-settings: normal;
}

.profile-card--featured .profile-card__media {
  background:
    linear-gradient(135deg, rgba(10,129,213,0.72), rgba(31,33,29,0.95)),
    linear-gradient(90deg, rgba(214,169,104,0.35), rgba(255,255,255,0.08));
}

.profile-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(1.15rem, 2.2vw, 1.8rem);
}

.profile-card__eyebrow {
  margin: 0 0 0.65rem;
  color: var(--color-sand-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-card--featured .profile-card__eyebrow {
  color: var(--color-sand);
}

.profile-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
  font-weight: 700;
  font-variation-settings: normal;
}

.profile-card__body > p:not(.profile-card__eyebrow),
.profile-card__details p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.72;
  font-size: clamp(0.94rem, 0.35vw + 0.86rem, 1.02rem);
}

.profile-card--featured .profile-card__body > p:not(.profile-card__eyebrow),
.profile-card--featured .profile-card__details p {
  color: rgba(255,255,255,0.72);
}

.profile-card__link,
.profile-card__details summary {
  width: fit-content;
  margin-top: auto;
  padding-top: 1.05rem;
  color: var(--color-charcoal);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.profile-card__link::after,
.profile-card__details summary::after {
  content: " →";
  color: var(--color-sand-dark);
}

.profile-card--featured .profile-card__link,
.profile-card--featured .profile-card__details summary {
  color: #fff;
}

.profile-card__details {
  margin-top: auto;
}

.profile-card__details summary {
  list-style: none;
}

.profile-card__details summary::-webkit-details-marker {
  display: none;
}

.profile-card__details[open] summary {
  margin-bottom: 0.9rem;
}

.profile-card__details p + p {
  margin-top: 0.9rem;
}

@media (max-width: 1200px) {
  .profile-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .home-team-head,
  .profile-grid--about {
    grid-template-columns: 1fr;
  }

  .profile-grid--home {
    grid-template-columns: 1fr;
  }

  .profile-card {
    grid-template-columns: minmax(7.5rem, 0.34fr) 1fr;
    grid-template-rows: none;
  }

  .profile-card__media {
    min-height: 100%;
  }

  .profile-card__media span {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
}

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

  .profile-card__media {
    min-height: 10rem;
  }
}

/* Team photo cards v2 */
.home-team-section .container,
.ueber-team .container {
  max-width: 1360px;
}

.profile-grid--home,
.profile-grid--about {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 255px), 1fr));
  align-items: stretch;
}

.profile-grid--about {
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

.profile-card {
  min-height: 0;
  height: auto;
  background: rgba(255,255,255,0.92);
  transform: translateZ(0);
}

.profile-card--featured {
  background: var(--color-charcoal);
}

.profile-card__media {
  min-height: 0;
  aspect-ratio: 4 / 3.35;
  background: linear-gradient(135deg, rgba(31,33,29,0.06), rgba(214,169,104,0.12));
}

.profile-card__media::before,
.profile-card__media::after,
.profile-card__media > span:not(.profile-work-badge) {
  display: none;
}

.profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background:
    linear-gradient(135deg, rgba(245,241,234,0.72), rgba(255,255,255,0.86));
  transition: opacity 260ms ease, transform 360ms ease;
}

.profile-photo--work {
  opacity: 0;
  background: #12140f;
}

.has-work-photo:hover .profile-photo--primary,
.has-work-photo:focus-within .profile-photo--primary {
  opacity: 0;
}

.has-work-photo:hover .profile-photo--work,
.has-work-photo:focus-within .profile-photo--work {
  opacity: 1;
  transform: scale(1.015);
}

.profile-card__media .profile-work-badge {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(31,33,29,0.82);
  color: #fff;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
  font-family: var(--font-body);
  font-variation-settings: normal;
}

.has-work-photo:hover .profile-work-badge,
.has-work-photo:focus-within .profile-work-badge {
  opacity: 1;
  transform: translateY(0);
}

.profile-card__body {
  gap: 0;
}

.profile-card__story {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31,33,29,0.1);
}

.profile-card--featured .profile-card__story {
  border-top-color: rgba(255,255,255,0.14);
}

.profile-card__story p {
  margin: 0;
}

.profile-card__story p + p {
  margin-top: 0.9rem;
}

.profile-card__toggle {
  appearance: none;
  width: fit-content;
  margin-top: auto;
  padding: 1.05rem 0 0;
  border: 0;
  background: transparent;
  color: var(--color-charcoal);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.profile-card__toggle::after {
  content: " →";
  color: var(--color-sand-dark);
}

.profile-card__toggle[aria-expanded="true"]::after {
  content: " ↑";
}

.profile-card--featured .profile-card__toggle {
  color: #fff;
}

.profile-card__toggle:hover,
.profile-card__toggle:focus-visible,
.profile-card__link:hover,
.profile-card__link:focus-visible {
  color: var(--color-sand-dark);
  outline: none;
}

.profile-card--featured .profile-card__toggle:hover,
.profile-card--featured .profile-card__toggle:focus-visible,
.profile-card--featured .profile-card__link:hover,
.profile-card--featured .profile-card__link:focus-visible {
  color: var(--color-sand);
}

@media (min-width: 1180px) {
  .profile-grid--home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .profile-grid--about {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .home-team-section,
  .ueber-team {
    padding-top: clamp(3.2rem, 10vw, 4.5rem);
    padding-bottom: clamp(3.2rem, 10vw, 4.5rem);
  }

  .home-team-head {
    gap: 0.8rem;
    margin-bottom: 1.4rem;
  }

  .home-team-head h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.05;
  }

  .profile-grid--home,
  .profile-grid--about {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .profile-card {
    grid-template-columns: minmax(104px, 36%) 1fr;
    min-height: 0;
  }

  .profile-card__media {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .profile-card__body {
    padding: 1rem;
  }

  .profile-card h3 {
    font-size: clamp(1.25rem, 6vw, 1.55rem);
    margin-bottom: 0.45rem;
  }

  .profile-card__eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.66rem;
  }

  .profile-card__body > p:not(.profile-card__eyebrow) {
    line-height: 1.55;
    font-size: 0.92rem;
  }

  .profile-card__toggle,
  .profile-card__link {
    padding-top: 0.75rem;
  }
}

@media (max-width: 560px) {
  .gb-badge {
    display: none !important;
  }

  .home-team-head > p,
  .ueber-team .section-header > p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .profile-grid--home .profile-card__body > p:not(.profile-card__eyebrow) {
    display: none;
  }

  .profile-card__media {
    background: #f3eee5;
  }

  .profile-photo {
    object-fit: contain;
  }

  .profile-card__story {
    grid-column: 1 / -1;
  }

  .profile-card__story p {
    font-size: 0.92rem;
    line-height: 1.58;
  }
}

/* ═══════════════════════════════════════════════
   Homepage Patch: calmer services, branch map, seal
═══════════════════════════════════════════════ */
.branch-section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background: linear-gradient(180deg, #f7f3eb, #fff);
}

.branch-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.3rem, 3vw, 3rem);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(31,33,29,0.1);
  box-shadow: var(--shadow-md);
}

.branch-card .ss-coming-soon__pill {
  width: fit-content;
  color: var(--color-sand-dark);
  background: rgba(214,169,104,0.15);
  border-color: rgba(214,169,104,0.42);
}

.branch-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.06;
  margin: 1rem 0 1rem;
  font-weight: var(--weight-heading);
}

.branch-copy p {
  margin: 0;
  color: var(--color-muted);
  max-width: 55ch;
}

.branch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.branch-tags span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(10,129,213,0.08);
  border: 1px solid rgba(10,129,213,0.18);
  color: #1b5e8f;
  font-size: 0.82rem;
  font-weight: 800;
}

.branch-map {
  position: relative;
  min-height: clamp(18rem, 31vw, 28rem);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #f9fbfd, #edf4f8);
}

.branch-map svg {
  position: absolute;
  inset: 6%;
  width: 88%;
  height: 88%;
}

.map-region {
  stroke: rgba(31,33,29,0.28);
  stroke-width: 4;
  stroke-linejoin: round;
}

.map-muted { fill: #f8fafb; }
.map-west { fill: #fff; }
.map-focus-soft { fill: #b9d7ef; }
.map-focus { fill: #5a9bd1; }

.branch-pin {
  position: absolute;
  right: 18%;
  top: 29%;
  display: grid;
  place-items: center;
  width: clamp(4rem, 7vw, 6rem);
  aspect-ratio: 1;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #fff;
  border: 2px solid rgba(10,129,213,0.35);
  box-shadow: 0 18px 46px rgba(10,129,213,0.25);
}

.branch-pin img {
  width: 70%;
  transform: rotate(45deg);
}

.branch-pin__dot {
  position: absolute;
  inset: -0.55rem;
  border-radius: 50%;
  border: 1px solid rgba(10,129,213,0.24);
  animation: branch-pulse 2.6s ease-out infinite;
}

@keyframes branch-pulse {
  0% { opacity: 0.9; transform: scale(0.86); }
  100% { opacity: 0; transform: scale(1.55); }
}

.branch-map-label {
  position: absolute;
  right: 5%;
  bottom: 7%;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(31,33,29,0.08);
  box-shadow: 0 10px 28px rgba(31,33,29,0.08);
}

.branch-map-label strong,
.branch-map-label span {
  display: block;
}

.branch-map-label strong {
  font-size: 1rem;
}

.branch-map-label span {
  color: var(--color-muted);
  font-size: 0.8rem;
}

.team-expertise-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(31,33,29,0.06);
  border: 1px solid rgba(31,33,29,0.1);
}

.team-expertise-pill strong {
  color: var(--color-sand-dark);
  font-size: 0.95rem;
}

.team-expertise-pill span {
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.partner-logo {
  display: grid;
  place-items: center;
  width: 7.5rem;
  min-height: 4.6rem;
  padding: 0.65rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(31,33,29,0.08);
}

.partner-logo img {
  max-width: 100%;
  max-height: 3.2rem;
  object-fit: contain;
}

.ss-brand-logo {
  cursor: pointer;
}

.ss-brand-logo:focus-visible {
  outline: 2px solid var(--color-sand);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .ss-services-item,
  .branch-card {
    grid-template-columns: 1fr;
  }

  .ss-services-item__media {
    order: -1;
    min-height: 17rem;
  }

  .branch-map {
    order: -1;
  }
}

@media (max-width: 560px) {
  .ss-services-list {
    padding: 0 0.7rem;
  }

  .ss-services-item__content h3 {
    font-size: clamp(1.7rem, 9vw, 2.3rem);
  }

  .branch-card {
    padding: 1rem;
  }

  .branch-map {
    min-height: 17rem;
  }

  .team-expertise-pill {
    align-items: flex-start;
    border-radius: 8px;
  }
}

.service-detail-slider {
  width: 100%;
  min-height: clamp(20rem, 36vw, 32rem);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(31,33,29,0.12);
}

.service-detail-slider .ss-img-slider__slide img {
  height: 100%;
  object-fit: cover;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.4rem 0 0;
}

.product-strip article {
  padding: 0.9rem;
  border-radius: 8px;
  background: rgba(31,33,29,0.05);
  border: 1px solid rgba(31,33,29,0.08);
}

.product-strip span,
.product-strip strong,
.product-strip small {
  display: block;
}

.product-strip span {
  color: var(--color-sand-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.product-strip strong {
  margin-top: 0.35rem;
  color: var(--color-charcoal);
  font-size: 1rem;
}

.product-strip small {
  margin-top: 0.2rem;
  color: var(--color-muted);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .product-strip {
    grid-template-columns: 1fr;
  }
}

/* Final UX/UI revision pass */

h1,
h2,
h3,
.hero h1,
.section-header h2,
.split-copy h2,
.home-team-head h2,
.ss-services-item__content h3 {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: balance;
}

.hero h1 {
  font-size: var(--type-display);
  line-height: var(--line-display);
}

.section-header h2,
.split-copy h2,
.home-team-head h2 {
  font-size: var(--type-h2);
  line-height: 1.08;
}

.section-label,
.soft-pill,
.profile-card__eyebrow,
.ss-services-item__num {
  letter-spacing: 0.08em;
}

/* ── Mega menu — clean light multi-column (Fleck-style) ── */
.mega-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-height);
  width: 100%;
  max-width: none;
  padding: clamp(2rem, 3.5vw, 3.25rem) 0 clamp(1.6rem, 2.5vw, 2.4rem);
  border-radius: 0;
  border-bottom: 1px solid rgba(31, 33, 29, 0.1);
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-charcoal);
  box-shadow: 0 28px 70px rgba(31, 33, 29, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.mega-panel .mega-group-label {
  margin: 0 0 1.1rem;
  padding: 0 0 0.7rem;
  border: 0;
  border-bottom: 1px solid rgba(31, 33, 29, 0.16);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.mega-panel ul.mega-group-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  align-items: start;
  gap: 0.35rem;
}

.mega-panel .mega-group-links li {
  position: static;
}

.mega-group-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  transition: color 180ms ease, gap 180ms ease;
}

.mega-group-links a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--color-charcoal);
  flex-shrink: 0;
  transition: border-left-color 180ms ease;
}

.mega-group-links a:hover,
.mega-group-links a:focus-visible {
  color: var(--color-sand-dark);
  gap: 0.75rem;
}

.mega-group-links a:hover::before,
.mega-group-links a:focus-visible::before {
  border-left-color: var(--color-sand-dark);
}

.mega-panel-footer {
  margin-top: clamp(1.6rem, 2.5vw, 2.2rem);
  padding-top: 1.1rem;
  border-top: 1px solid rgba(31, 33, 29, 0.1);
  display: flex;
  justify-content: flex-end;
}

.mega-panel-footer .mega-all-link {
  margin: 0;
  padding: 0;
  border: 0;
  width: auto;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.mega-panel-footer .mega-all-link:hover {
  color: var(--color-sand-dark);
}

.ss-services-item__bullets li,
.split-features li,
.service-features li {
  transition: none;
  transform: none;
  cursor: default;
}

.ss-services-item__bullets li:hover,
.split-features li:hover,
.service-features li:hover {
  transform: none;
  background: inherit;
  color: inherit;
}

.branch-map {
  background: linear-gradient(135deg, #f7fbff, #eef6fc);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.branch-map__inner {
  position: relative;
  width: min(100%, 720px);
  aspect-ratio: 912 / 470;
}

.branch-map__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(31,33,29,0.14));
}

.branch-map > svg {
  display: none;
}

/* Pin-Spitze verankert auf dem blauen Wien/NÖ-Bereich des SVG (x 89.8%, y 30.1%) */
.branch-pin {
  right: auto;
  left: 89.8%;
  top: 30.1%;
  transform: translate(-50%, -88%) rotate(-45deg);
}

.google-rating-pill__mark {
  background: #fff;
  border: 1px solid rgba(31,33,29,0.1);
  color: transparent;
}

.google-rating-pill__mark img {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

.schauraum-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.consultation-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(22rem, 1.18fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: start;
}

.section-consultation .consultation-shell {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  text-align: left;
}

.section-consultation .consultation-shell::before,
.section-consultation .consultation-shell::after {
  display: none;
}

.consultation-copy h2 {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-variation-settings: var(--heading-variation);
  letter-spacing: -0.018em;
  font-size: var(--type-h2);
  line-height: 1.05;
  margin: 0.6rem 0 1rem;
}

.consultation-phone {
  width: fit-content;
  margin-top: 1.2rem;
}

.multi-step-form {
  padding: var(--card-padding);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(31, 33, 29, 0.1);
  box-shadow: var(--shadow-lg);
}

/* ── Stepper: numbered circles on one continuous connecting line ── */
.form-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: form-step;
  margin-bottom: 0.85rem;
}

.form-progress::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 1rem;
  height: 2px;
  background: rgba(31, 33, 29, 0.14);
}

.form-progress span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-warm-white);
  border: 2px solid rgba(31, 33, 29, 0.16);
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  counter-increment: form-step;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.form-progress span::before {
  content: counter(form-step);
}

.form-progress span.is-active {
  border-color: var(--color-sand-dark);
}

.form-progress span.is-current {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.form-progress span.is-done {
  background: var(--color-sand-dark);
  border-color: var(--color-sand-dark);
  color: #fff;
}

.form-progress span.is-done::before {
  content: "✓";
}

.form-progress-text {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: var(--type-small);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-muted);
}

.form-step {
  display: none;
  border: 0;
  padding: 0;
  margin: 0;
}

.form-step.is-active {
  display: grid;
  gap: 1.15rem;
  animation: form-step-in 420ms var(--ease-standard) both;
}

@keyframes form-step-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step legend {
  margin-bottom: 0.25rem;
  padding: 0;
  font-family: var(--font-heading);
  font-size: var(--type-h3);
  font-weight: 600;
  color: var(--color-charcoal);
}

.multi-step-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
}

.multi-step-form input,
.multi-step-form select,
.multi-step-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(31, 33, 29, 0.18);
  border-radius: var(--radius-sm);
  background: var(--color-warm-white);
  color: var(--color-charcoal);
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.multi-step-form input:focus-visible,
.multi-step-form select:focus-visible,
.multi-step-form textarea:focus-visible {
  outline: none;
  border-color: var(--color-sand-dark);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-sand) 45%, transparent);
}

.multi-step-form label.has-error input,
.multi-step-form label.has-error select,
.multi-step-form label.has-error textarea {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.04);
}

.multi-step-form textarea {
  resize: vertical;
}

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

.form-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-check input {
  width: 1.15rem;
  height: 1.15rem;
  min-height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: var(--color-sand-dark);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(31, 33, 29, 0.08);
}

.form-actions .btn {
  min-width: 140px;
}

.form-success {
  margin: 1rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(93, 139, 89, 0.12);
  color: #315b31;
  font-family: var(--font-body);
  font-weight: 700;
}

.compare-slider {
  position: relative;
  width: min(100%, 980px);
  aspect-ratio: 16 / 10;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(31,33,29,0.14);
  user-select: none;
  box-shadow: 0 22px 70px rgba(31,33,29,0.14);
}

.comparison-section--range {
  min-height: auto !important;
  height: auto !important;
  max-height: none !important;
  display: block;
  padding: clamp(1.5rem, 5vw, 5rem) 1rem clamp(3rem, 7vw, 7rem);
  background: #f5f3ee;
}

.comparison-section--range::before,
.comparison-section--range::after {
  display: none;
}

.compare-panel {
  position: absolute;
  inset: 0;
}

.compare-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-panel--before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: #fff;
  pointer-events: none;
}

.compare-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transform: translate(-50%, -50%);
}

.compare-divider::after {
  content: "<>";
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--color-charcoal);
  font-size: 0.8rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-label {
  position: absolute;
  top: 1rem;
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.58);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-label--before {
  left: 1rem;
}

.compare-label--after {
  right: 1rem;
}

.career-card {
  min-height: 100%;
  background: linear-gradient(145deg, #1f211d, #33372f);
  color: #fff;
}

.career-card .profile-card__eyebrow,
.career-card p {
  color: rgba(255,255,255,0.76);
}

.career-card h3 {
  color: #fff;
}

.career-card .profile-card__link {
  color: #fff;
}

.legal-hero {
  min-height: 54vh;
  padding-top: 8rem;
  background:
    linear-gradient(135deg, rgba(31,33,29,0.78), rgba(31,33,29,0.44)),
    url("assets/schauraum sis ai.webp") center/cover;
  color: #fff;
}

.legal-hero h1 {
  color: #fff;
  /* Fluide Größe: lange Titel (Datenschutzerklärung, AGB) passen auch auf schmalen Screens */
  font-size: clamp(1.7rem, 6.2vw, 3.4rem) !important;
  line-height: 1.1 !important;
  overflow-wrap: break-word;
  hyphens: auto;
}

.legal-hero p {
  color: rgba(238, 234, 228, 0.82);
}

.legal-section {
  background: #f7f3eb;
}

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

.legal-card,
.legal-content {
  padding: clamp(1.2rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(31,33,29,0.1);
  box-shadow: var(--shadow-sm);
}

.legal-card h2,
.legal-content h2 {
  margin: 1.6rem 0 0.6rem;
  color: var(--color-charcoal);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.legal-card h2:first-child,
.legal-content h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-content p {
  color: var(--color-muted);
  line-height: 1.75;
}

.legal-card a,
.legal-content a {
  color: var(--color-sand-dark);
  font-weight: 800;
}

.legal-note {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(214,169,104,0.12);
  color: var(--color-charcoal) !important;
}

@media (max-width: 900px) {
  body .hero .hero-content {
    text-align: center !important;
    align-items: center !important;
    margin-inline: auto;
  }

  body .hero .hero-kicker,
  body .hero .hero-ctas {
    justify-content: center !important;
  }

  body .hero .hero-subline {
    margin-inline: auto;
  }

  .ss-services-item {
    min-height: auto !important;
    padding: clamp(1.2rem, 6vw, 2rem);
  }

  .mega-panel,
  .mega-panel--dark {
    display: none;
  }

  .consultation-shell,
  .form-grid-2,
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 100svh;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
    line-height: 0.98;
  }

  .hero-content {
    padding-top: 4rem;
  }

  body .mobile-menu-panel {
    width: min(86vw, 23rem) !important;
    padding: 1.4rem 1.25rem;
  }

  .mobile-brand img {
    max-width: 10rem;
  }

  .mobile-menu-main a,
  .mobile-menu-link {
    min-height: 52px;
    font-size: clamp(1.4rem, 6.5vw, 1.75rem);
    line-height: 1.1;
  }

  .mobile-submenu-body {
    gap: 1rem;
  }

  .mobile-submenu-body .submenu-label {
    font-size: 0.75rem;
  }

  .mobile-submenu-body a {
    font-size: 1.1rem;
    padding: 0.45rem 0;
  }

  .mobile-menu-actions {
    gap: 0.65rem;
  }

  .mobile-menu-actions .btn,
  .mobile-phone {
    min-height: 3.5rem;
    font-size: 0.98rem;
  }

  .section-label,
  .soft-pill {
    font-size: 0.72rem;
  }

  .split-copy,
  .section-header,
  .home-team-head {
    text-align: left;
  }

  .branch-pin {
    width: 3.4rem;
    height: 3.4rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  /* Die Eigenproduktions-Zeile bleibt sichtbar, auch wenn der Fließtext auf Mobile entfällt */
  .ss-services-item__content p.ss-services-item__note {
    display: inline-flex;
    margin: 0 0 1rem;
  }
}

@media (max-width: 760px) {
  /* Label ist auf Mobile redundant zur Headline und überlappt die kompakte Karte */
  .branch-map-label {
    display: none;
  }
}

/* ── Pflichtfeld-Kennzeichnung ── */
.multi-step-form .req {
  color: var(--color-sand-dark);
  font-weight: 700;
}

.form-required-note {
  margin: -1rem 0 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* ── Karriere: einzige Sektion, Abstand unter dem fixen Header ── */
.karriere-single {
  padding-top: calc(var(--header-height) + clamp(3rem, 6vw, 5rem));
}

/* ── Schauraum: Öffnungszeiten ── */
.schauraum-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  margin: 1.4rem 0 0;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(31, 33, 29, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  width: fit-content;
}

.schauraum-hours div {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.schauraum-hours dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.schauraum-hours dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

/* ── Schauraum: Voranmeldungs-Modal ── */
.schauraum-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  visibility: hidden;
  pointer-events: none;
}

.schauraum-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.schauraum-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 21, 19, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.schauraum-modal.is-open .schauraum-modal__backdrop {
  opacity: 1;
}

.schauraum-modal__panel {
  position: relative;
  width: min(100%, 27rem);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(31, 33, 29, 0.1);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 240ms ease, transform 240ms var(--ease-standard);
}

.schauraum-modal.is-open .schauraum-modal__panel {
  opacity: 1;
  transform: translateY(0);
}

.schauraum-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 33, 29, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-charcoal);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.schauraum-modal__panel h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

.schauraum-modal__panel > p {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.schauraum-modal__form {
  display: grid;
  gap: 1rem;
}

.schauraum-modal__form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

.schauraum-modal__form .field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
}

.schauraum-modal__form .req {
  color: var(--color-sand-dark);
}

.schauraum-modal__form input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(31, 33, 29, 0.18);
  border-radius: var(--radius-sm);
  background: var(--color-warm-white);
  color: var(--color-charcoal);
  font: inherit;
  font-size: 1rem;
}

.schauraum-modal__form input:focus-visible {
  outline: none;
  border-color: var(--color-sand-dark);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-sand) 45%, transparent);
}

.schauraum-modal__note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

@media (max-width: 560px) {
  .schauraum-modal {
    padding: 1rem;
  }

  .schauraum-modal__panel {
    padding: 1.5rem 1.25rem;
  }

  .schauraum-modal__panel h3 {
    max-width: calc(100% - 2.5rem);
  }

  .schauraum-modal__panel > p {
    margin-bottom: 1rem;
    font-size: 0.88rem;
  }

  .schauraum-modal__form {
    gap: 0.85rem;
  }
}

/* ── Projekte: einzige Sektion, Abstand unter dem fixen Header ── */
.projekte-single {
  padding-top: calc(var(--header-height) + clamp(3rem, 6vw, 5rem));
}

.projekte-single .section-header h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--type-h1);
  line-height: 1.05;
  letter-spacing: -0.018em;
}

/* ── Final polish: global nav, mobile menu, forms ── */
.main-nav > ul > li > a,
.mega-trigger {
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

.mega-group-label {
  display: inline-block;
  text-decoration: none;
}

.mobile-submenu-body .submenu-label {
  display: block;
  text-decoration: none;
}

.multi-step-form label {
  display: block;
}

.multi-step-form label > input,
.multi-step-form label > select,
.multi-step-form label > textarea {
  margin-top: 0.5rem;
}

.form-check {
  display: grid;
}

.multi-step-form .req {
  display: inline;
  margin-left: 0.08em;
  vertical-align: baseline;
}

@media (max-width: 1200px) {
  .main-nav,
  .header-actions {
    display: none !important;
  }

  .menu-toggle {
    display: grid !important;
  }

  .mobile-close {
    width: 38px !important;
    height: 38px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .mobile-close::before,
  .mobile-close::after {
    width: 18px !important;
    height: 1.8px !important;
  }

  .mobile-menu nav ul {
    gap: 0.5rem !important;
  }

  .mobile-menu nav li + li {
    border-top: 0 !important;
  }

  .mobile-menu nav a,
  .mobile-menu-link {
    min-height: 48px !important;
    padding: 0.55rem 0 !important;
    font-size: clamp(1.14rem, 4.35vw, 1.5rem) !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 760px) {
  .hero-kicker {
    display: none !important;
  }

  .ss-services-item {
    grid-template-rows: minmax(260px, 52svh) auto !important;
    padding: 0 !important;
    overflow: hidden;
  }

  .ss-services-item__media {
    min-height: 260px;
  }

  .ss-services-item__content {
    position: relative;
    z-index: 2;
    padding: 1.55rem 1.35rem 1.85rem !important;
    justify-content: flex-start !important;
  }

  .ss-services-item__num {
    display: none !important;
  }

  .ss-services-item__content h3 {
    margin-top: 0 !important;
    font-size: clamp(1.65rem, 7.4vw, 2.25rem) !important;
    line-height: 1.08 !important;
  }

  .ss-img-slider__dots {
    bottom: 1rem;
    z-index: 4;
  }

  .ss-slide-label {
    top: 1rem;
    bottom: auto;
    left: 1rem;
    z-index: 4;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 7.4vw, 2.55rem) !important;
    line-height: 1.04 !important;
  }
}

@media (max-width: 560px) {
  .career-card {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    min-height: auto !important;
    height: auto !important;
    overflow: visible;
  }

  .career-card .profile-card__body {
    padding: 1.35rem !important;
  }

  .career-card .profile-card__eyebrow {
    font-size: 0.68rem;
    margin-bottom: 0.7rem;
  }

  .career-card h3 {
    max-width: none;
    font-size: clamp(1.9rem, 10vw, 2.55rem) !important;
    line-height: 1.04 !important;
    overflow-wrap: normal;
    word-break: normal;
  }

  .career-card .profile-card__body > p:not(.profile-card__eyebrow) {
    display: block !important;
    max-width: 28ch;
    color: rgba(255,255,255,0.76);
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .career-card .profile-card__link {
    margin-top: 1rem;
    padding-top: 0;
  }

  .profile-card.is-expanded {
    grid-template-columns: 1fr;
  }

  .profile-card.is-expanded .profile-card__media {
    aspect-ratio: 4 / 3.25;
    min-height: 0;
  }
}

/* ═══════════════════════════════════════
   EIGENES GOOGLE-BEWERTUNGSWIDGET
═══════════════════════════════════════ */

.gb-badge {
  display: grid;
  width: 110px;
  right: 14px;
  bottom: 14px;
  overflow: hidden;
  border: 2px solid var(--color-logo-blue);
  border-radius: 11px;
  background: #fff;
  color: #202124;
  box-shadow: 0 10px 26px rgba(20, 31, 41, 0.24);
  font-family: var(--font-body);
  text-align: center;
  filter: none;
}

.gb-badge:hover,
.gb-badge:focus-visible {
  transform: translateY(-2px);
  filter: none;
  box-shadow: 0 13px 30px rgba(20, 31, 41, 0.3);
}

.gb-badge:focus-visible {
  outline: 3px solid rgba(10, 129, 213, 0.35);
  outline-offset: 4px;
}

.gb-badge__bar {
  display: block;
  height: 8px;
  background: linear-gradient(90deg, var(--color-logo-blue), #48a7e7);
}

.gb-badge__body {
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 7px 6px 6px;
}

.gb-badge__brand {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 25px;
}

.gb-badge .gb-badge__brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.gb-badge__verified {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #4285f4;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
}

.gb-badge__label {
  color: #303236;
  font-size: 7.5px;
  font-weight: 700;
  line-height: 1.2;
}

.gb-badge__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #f4b400;
  font-size: 9.5px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.gb-badge__rating strong {
  color: #e6a900;
  font-size: 14px;
  letter-spacing: -0.04em;
}

.gb-badge__foot {
  display: block;
  padding: 4px 4px;
  border-top: 1px solid #e7e9ec;
  background: #f4f5f6;
  color: #4f5358;
  font-size: 6px;
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width: 1024px) {
  .gb-badge {
    width: 100px;
    right: 10px;
    bottom: 10px;
  }

  .gb-badge__bar {
    height: 7px;
  }

  .gb-badge__body {
    gap: 2px;
    padding: 6px 5px 5px;
  }

  .gb-badge .gb-badge__brand img {
    width: 22px;
    height: 22px;
  }

  .gb-badge__brand {
    width: 29px;
    height: 23px;
  }

  .gb-badge__rating {
    font-size: 8.5px;
  }

  .gb-badge__rating strong {
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .gb-badge {
    display: grid !important;
    width: 94px;
    right: 8px;
    bottom: 8px;
    border-radius: 10px;
  }

  .gb-badge__label {
    font-size: 6.8px;
  }

  .gb-badge__rating {
    font-size: 8px;
  }

  .gb-badge__rating strong {
    font-size: 12px;
  }

  .gb-badge__foot {
    padding: 3px 3px;
    font-size: 5.5px;
  }
}
