:root {
  --surface: oklch(98% 0.008 52);
  --surface-soft: oklch(95.5% 0.011 52);
  --surface-warm: oklch(96.5% 0.018 62);
  --panel: oklch(99% 0.005 52);
  --ink: oklch(21% 0.014 255);
  --muted: oklch(48% 0.018 255);
  --line: oklch(88% 0.011 45);
  --line-strong: oklch(80% 0.02 45);
  --brand-red: oklch(55% 0.19 25);
  --brand-red-dark: oklch(42% 0.16 25);
  --brand-red-soft: oklch(94% 0.035 25);
  --brand-blue: oklch(54% 0.13 240);
  --brand-blue-soft: oklch(91% 0.03 235);
  --brand-amber: oklch(72% 0.12 72);
  --brand-amber-dark: oklch(42% 0.075 72);
  --brand-amber-soft: oklch(94.5% 0.04 78);
  --brand-steel: oklch(42% 0.026 255);
  --brand-steel-soft: oklch(93.5% 0.012 255);
  --shadow: 0 18px 45px oklch(34% 0.02 255 / 12%);
  --shadow-soft: 0 10px 28px oklch(34% 0.02 255 / 8%);
  --radius: 8px;
  --page-gutter: clamp(22px, 3.4vw, 48px);
  --wrap: min(1300px, calc(100vw - (var(--page-gutter) * 2)));
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --section-gap: clamp(32px, 5vw, 72px);
  --component-gap: clamp(16px, 2.2vw, 30px);
  --content-measure: 68ch;
  --font-body: "Aptos", "Segoe UI", system-ui, sans-serif;
  --font-heading: "Aptos Display", "Aptos", "Segoe UI", system-ui, sans-serif;
  --text-small: 0.875rem;
  --text-body: 1rem;
  --text-lead: 1.125rem;
  --text-card-title: 1.25rem;
  --text-section: 1.6rem;
  --text-title: 2.25rem;
  --text-display: 3.65rem;
  --text-hero: 4.35rem;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-fast: 140ms;
  --motion-medium: 240ms;
  --motion-slow: 640ms;
  --sch-reveal-distance: 18px;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  font-kerning: normal;
  font-optical-sizing: auto;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

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

a {
  color: var(--brand-blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  transition: color var(--motion-fast) var(--ease-out-quart);
}

a:hover {
  color: var(--brand-red);
}

.ph {
  flex: 0 0 auto;
  line-height: 1;
}

.button .ph,
.contact-strip .ph,
.site-footer .ph {
  font-size: 1.05em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid oklch(72% 0.15 70);
  outline-offset: 3px;
}

input,
select,
textarea {
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  transition:
    border-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart),
    background-color var(--motion-medium) var(--ease-out-quart);
}

textarea {
  min-height: 140px;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--panel);
  background: var(--brand-red-dark);
}

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

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

@keyframes sch-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, var(--sch-reveal-distance), 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes sch-hero-shell {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes sch-media-settle {
  from {
    opacity: 0.82;
    transform: scale(1.035);
  }

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

.sch-animate-ready [data-sch-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--sch-reveal-distance), 0);
  transition:
    opacity var(--motion-slow) var(--ease-out-quint),
    transform var(--motion-slow) var(--ease-out-quint);
  transition-delay: var(--sch-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.sch-animate-ready [data-sch-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.contact-strip {
  color: var(--muted);
  background: var(--surface-warm);
  font-size: var(--text-small);
  font-variant-numeric: tabular-nums;
}

.contact-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
}

.contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
}

.contact-strip__inner > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.contact-strip__urgent {
  color: var(--brand-red) !important;
}

.masthead {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  min-height: 96px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(136px, 14vw, 168px);
  height: auto;
}

.masthead__menu-toggle,
.primary-nav__mobile-head,
.primary-nav__mobile-cta {
  display: none;
}

.masthead__menu-toggle,
.primary-nav__close {
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--panel);
  cursor: pointer;
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    color var(--motion-medium) var(--ease-out-quart),
    border-color var(--motion-medium) var(--ease-out-quart),
    background-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.masthead__menu-toggle:hover,
.primary-nav__close:hover {
  color: var(--brand-red);
  border-color: oklch(85% 0.04 25);
  box-shadow: 0 10px 22px oklch(34% 0.02 255 / 9%);
  transform: translateY(-1px);
}

.masthead__menu-toggle .ph,
.primary-nav__close .ph {
  font-size: 1.65rem;
}

.primary-nav {
  min-width: 0;
}

.primary-nav .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav .menu--level-0 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 22px);
}

.primary-nav .menu__item {
  position: relative;
  min-width: 0;
}

.primary-nav .menu__item--has-submenu::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-start: 100%;
  height: 14px;
}

.primary-nav .menu__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding-inline: 4px;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--motion-medium) var(--ease-out-quart);
}

.primary-nav .menu__link:hover,
.primary-nav .menu__link:focus-visible,
.primary-nav .menu__item--active-trail > .menu__link,
.primary-nav .is-active {
  color: var(--brand-red);
}

.primary-nav .menu__link--has-submenu .ph {
  font-size: 0.78rem;
  transition: transform var(--motion-medium) var(--ease-out-quint);
}

.primary-nav .menu__item--has-submenu:hover > .menu__link .ph,
.primary-nav .menu__item--has-submenu:focus-within > .menu__link .ph {
  transform: rotate(180deg);
}

.primary-nav .menu--level-1 {
  position: absolute;
  z-index: 30;
  inset-block-start: calc(100% + 12px);
  inset-inline-start: 50%;
  display: grid;
  gap: 3px;
  min-width: 236px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(99% 0.004 45);
  box-shadow: 0 18px 42px oklch(34% 0.02 255 / 14%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  visibility: hidden;
  transition:
    opacity var(--motion-medium) var(--ease-out-quart),
    transform var(--motion-medium) var(--ease-out-quint),
    visibility var(--motion-medium) var(--ease-out-quart);
}

.primary-nav .menu__item--has-submenu:hover > .menu--level-1,
.primary-nav .menu__item--has-submenu:focus-within > .menu--level-1 {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.primary-nav .menu--level-1 .menu__link {
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    color var(--motion-medium) var(--ease-out-quart),
    background-color var(--motion-medium) var(--ease-out-quart);
}

.primary-nav .menu--level-1 .menu__link:hover,
.primary-nav .menu--level-1 .menu__link:focus-visible,
.primary-nav .menu--level-1 .menu__item--active-trail > .menu__link {
  color: var(--brand-red);
  background: oklch(97% 0.014 35);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  text-decoration: none;
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    background-color var(--motion-medium) var(--ease-out-quart),
    border-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart),
    color var(--motion-medium) var(--ease-out-quart);
}

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

.button:active {
  transform: translateY(0) scale(0.985);
  transition-duration: var(--motion-fast);
}

.button .ph-arrow-right,
.button .ph-phone {
  transition: transform var(--motion-medium) var(--ease-out-quint);
}

.button:hover .ph-arrow-right {
  transform: translateX(3px);
}

.button:hover .ph-phone {
  transform: rotate(-8deg);
}

.button--primary {
  color: oklch(98% 0.006 45);
  background: var(--brand-red);
  box-shadow: 0 12px 24px oklch(55% 0.19 25 / 22%);
}

.button--primary:hover {
  color: oklch(98% 0.006 45);
  background: var(--brand-red-dark);
  box-shadow: 0 16px 30px oklch(55% 0.19 25 / 25%);
}

.button--secondary {
  color: var(--brand-blue);
  border-color: oklch(88% 0.035 235);
  background: var(--panel);
}

.button--secondary:hover {
  color: var(--brand-red);
  border-color: oklch(85% 0.04 25);
  background: oklch(98% 0.012 35);
}

.button--light {
  color: var(--ink);
  border-color: oklch(91% 0.011 45);
  background: var(--panel);
  box-shadow: 0 10px 20px oklch(34% 0.02 255 / 10%);
}

.primary-nav .primary-nav__mobile-cta {
  display: none;
}

.header-region,
.breadcrumb-region,
.content-wrap {
  padding-block: clamp(20px, 4vw, 10px);
}

.breadcrumb-region {
  padding-block: clamp(14px, 2vw, 10px) 0;
}

.sch-breadcrumb {
  display: inline-flex;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid oklch(89% 0.012 45);
  border-radius: var(--radius);
  background: oklch(99% 0.004 45);
  box-shadow: 0 10px 24px oklch(34% 0.02 255 / 7%);
}

.sch-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.sch-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.sch-breadcrumb__item + .sch-breadcrumb__item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-inline: 10px;
  border-block-start: 1.5px solid oklch(67% 0.018 255);
  border-inline-end: 1.5px solid oklch(67% 0.018 255);
  transform: rotate(45deg);
}

.sch-breadcrumb a,
.sch-breadcrumb__item > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.sch-breadcrumb a:hover {
  color: var(--brand-red);
}

.sch-breadcrumb__item.is-current > span {
  overflow: hidden;
  max-width: min(52ch, 42vw);
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-main .content-wrap:has(.sch-paragraph--hero:first-child) {
  padding-block-start: 22px;
}

.site-main {
  min-height: 46vh;
}

.content-wrap {
  max-width: 980px;
}

.content-wrap:has(.field--name-field-sections),
.content-wrap:has(.sch-paragraph),
.content-wrap:has(.sch-node) {
  max-width: var(--wrap);
}

.content-wrap h1 {
  max-width: 100%;
  margin: 0 0 18px;
  font-size: var(--text-display);
  line-height: 1.02;
  letter-spacing: 0;
}

.content-wrap h2 {
  max-width: 100%;
  margin-block: 36px 14px;
  font-size: var(--text-title);
  line-height: 1.12;
  letter-spacing: 0;
}

.content-wrap p,
.content-wrap li {
  max-width: var(--content-measure);
}

.sch-node {
  display: grid;
  gap: var(--section-gap);
}

.sch-node-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.78fr);
  min-height: clamp(360px, 44vw, 300px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.sch-node-hero__copy {
  display: grid;
  align-content: center;
  gap: var(--space-md);
  min-width: 0;
  padding: clamp(32px, 5vw, 72px);
  background:
    linear-gradient(90deg, var(--panel) 0%, oklch(99% 0.006 52) 76%, oklch(99% 0.006 52 / 88%) 100%);
}

.sch-node-hero__eyebrow {
  margin: 0;
  color: var(--brand-red);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.2;
}

.content-wrap .sch-node-hero__title,
.sch-node-hero__title {
  width: min(100%, 16ch);
  max-width: 16ch;
  margin: 0;
  color: var(--ink);
  font-size: var(--text-hero);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.sch-node--article .sch-node-hero__title,
.sch-node--job-posting .sch-node-hero__title {
  width: min(100%, 18ch);
  max-width: 18ch;
  font-size: var(--text-display);
  line-height: 1.05;
}

.sch-node-hero__summary {
  max-width: 66ch;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-lead);
  line-height: 1.6;
}

.sch-node-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.sch-node-hero__meta li {
  max-width: none;
  padding: 7px 10px;
  border: 1px solid oklch(89% 0.012 45);
  border-radius: 999px;
  color: var(--ink);
  background: oklch(97% 0.009 45);
  font-size: 0.85rem;
  font-weight: 750;
  line-height: 1.15;
}

.sch-node-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block-start: 2px;
}

.sch-node-hero__media {
  position: relative;
  min-width: 0;
  min-height: 280px;
  background: var(--surface-soft);
}

.sch-node-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, oklch(99% 0.004 45 / 20%) 0%, oklch(99% 0.004 45 / 0%) 48%);
  pointer-events: none;
}

.sch-node-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.sch-animate-ready .sch-node-hero,
.sch-animate-ready .sch-about-hero,
.sch-animate-ready .sch-subpage-hero,
.sch-animate-ready .sch-paragraph--hero {
  animation: sch-hero-shell 720ms var(--ease-out-expo) both;
}

.sch-animate-ready .sch-node-hero__copy > *,
.sch-animate-ready .sch-about-hero__copy > *,
.sch-animate-ready .sch-subpage-hero__copy > *,
.sch-animate-ready .sch-hero__slide.is-active .sch-hero__copy > * {
  animation: sch-fade-up 620ms var(--ease-out-quint) both;
}

.sch-animate-ready .sch-node-hero__copy > :nth-child(1),
.sch-animate-ready .sch-about-hero__copy > :nth-child(1),
.sch-animate-ready .sch-subpage-hero__copy > :nth-child(1),
.sch-animate-ready .sch-hero__slide.is-active .sch-hero__copy > :nth-child(1) {
  animation-delay: 90ms;
}

.sch-animate-ready .sch-node-hero__copy > :nth-child(2),
.sch-animate-ready .sch-about-hero__copy > :nth-child(2),
.sch-animate-ready .sch-subpage-hero__copy > :nth-child(2),
.sch-animate-ready .sch-hero__slide.is-active .sch-hero__copy > :nth-child(2) {
  animation-delay: 170ms;
}

.sch-animate-ready .sch-node-hero__copy > :nth-child(3),
.sch-animate-ready .sch-about-hero__copy > :nth-child(3),
.sch-animate-ready .sch-subpage-hero__copy > :nth-child(3),
.sch-animate-ready .sch-hero__slide.is-active .sch-hero__copy > :nth-child(3) {
  animation-delay: 250ms;
}

.sch-animate-ready .sch-node-hero__copy > :nth-child(n + 4),
.sch-animate-ready .sch-about-hero__copy > :nth-child(n + 4),
.sch-animate-ready .sch-subpage-hero__copy > :nth-child(n + 4),
.sch-animate-ready .sch-hero__slide.is-active .sch-hero__copy > :nth-child(n + 4) {
  animation-delay: 330ms;
}

.sch-animate-ready .sch-node-hero__media img,
.sch-animate-ready .sch-about-hero__media img,
.sch-animate-ready .sch-subpage-hero__media img,
.sch-animate-ready .sch-hero__slide.is-active .sch-hero__media img {
  animation: sch-media-settle 900ms var(--ease-out-expo) both;
}

.sch-node__content {
  display: grid;
  gap: var(--component-gap);
}

.sch-node__body {
  width: 100%;
  padding-inline: 10px;
  color: var(--ink);
  font-size: var(--text-body);
  line-height: 1.7;
}

.sch-node__body > div > div > :first-child,
.sch-node__body > div > :first-child,
.sch-node__body > :first-child {
  margin-block-start: 0;
}

.sch-node__body > div > div > :last-child,
.sch-node__body > div > :last-child,
.sch-node__body > :last-child {
  margin-block-end: 0;
}

.sch-node__body h2,
.sch-node__body h3,
.sch-node__body h4,
.sch-node__body h5 {
  color: var(--ink);
}

.sch-node__body h4,
.sch-node__body h5 {
  margin-block: 28px 10px;
  font-size: var(--text-card-title);
  line-height: 1.22;
}

.sch-node__body p,
.sch-node__body li {
  max-width: var(--content-measure);
}

.sch-node__body a {
  font-weight: 700;
}

.sch-node__body .field {
  display: grid;
  gap: 10px;
}

.sch-node__body .field + .field {
  margin-block-start: clamp(22px, 3vw, 34px);
}

.sch-node__body .field__label {
  color: var(--brand-red);
  font-size: 0.88rem;
  font-weight: 850;
}

.sch-node__sections {
  display: grid;
  gap: clamp(18px, 2.5vw, 32px);
}

.sch-node__content > .field {
  width: min(900px, 100%);
  margin-inline: auto;
}

.sch-node__panel {
  display: grid;
  gap: 10px;
  width: min(900px, 100%);
  margin-inline: auto;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.sch-node__panel .field {
  display: grid;
  gap: 8px;
}

.sch-node__panel .field__label {
  color: var(--brand-red);
  font-size: 0.86rem;
  font-weight: 850;
}

.sch-node__gallery {
  width: min(1040px, 100%);
  margin-inline: auto;
}

.sch-node__gallery .field__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}

.sch-node__gallery .field__item {
  min-width: 0;
}

.sch-node__gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--surface-soft);
}

.sch-node-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 34px);
  width: min(900px, 100%);
  margin-inline: auto;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid oklch(86% 0.026 25);
  border-radius: var(--radius);
  background: oklch(98% 0.014 35);
}

.sch-node-cta p {
  margin: 0;
}

.sch-node-cta__label {
  color: var(--brand-red);
  font-size: 0.82rem;
  font-weight: 850;
}

.sch-reference-page {
  display: grid;
  gap: clamp(34px, 5vw, 62px);
}

.sch-reference-folders {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  padding-inline: clamp(0px, 4vw, 58px);
}

.sch-reference-folders__intro {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.sch-reference-folders__intro h2 {
  max-width: 16ch;
  margin: 0;
  color: var(--ink);
  font-size: var(--text-title);
  font-weight: 850;
  line-height: 1.12;
}

.sch-reference-folders__intro p {
  margin: 0;
  color: oklch(34% 0.016 255);
  font-size: var(--text-body);
  line-height: 1.62;
  hyphens: auto;
  overflow-wrap: break-word;
}

.sch-reference-folder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.sch-reference-folder {
  --sch-reference-accent: var(--brand-red);
  --sch-reference-accent-soft: var(--brand-red-soft);
  display: grid;
  grid-template-rows: minmax(240px, 1fr) auto;
  min-width: 0;
  min-height: clamp(430px, 40vw, 540px);
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--panel);
  box-shadow: 0 12px 30px oklch(34% 0.02 255 / 8%);
  text-align: left;
  cursor: pointer;
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    border-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.sch-reference-folder--bad {
  --sch-reference-accent: var(--brand-blue);
  --sch-reference-accent-soft: var(--brand-blue-soft);
}

.sch-reference-folder:hover,
.sch-reference-folder:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 18px 42px oklch(34% 0.02 255 / 14%);
  transform: translateY(-3px);
}

.sch-reference-folder:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--sch-reference-accent) 26%, transparent);
  outline-offset: 3px;
}

.sch-reference-folder__media {
  display: block;
  min-width: 0;
  min-height: 0;
  background: var(--surface-soft);
}

.sch-reference-folder__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform var(--motion-slow) var(--ease-out-expo);
}

.sch-reference-folder:hover .sch-reference-folder__media img,
.sch-reference-folder:focus-visible .sch-reference-folder__media img {
  transform: scale(1.035);
}

.sch-reference-folder__body {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: clamp(22px, 3vw, 34px);
}

.sch-reference-folder__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: var(--sch-reference-accent);
  background: var(--sch-reference-accent-soft);
  font-size: 1.4rem;
}

.sch-reference-folder__title {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: var(--text-section);
  font-weight: 850;
  line-height: 1.12;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.sch-reference-folder__text {
  max-width: 36ch;
  color: oklch(34% 0.016 255);
  font-size: 1rem;
  line-height: 1.5;
  hyphens: auto;
  overflow-wrap: break-word;
}

.sch-reference-folder__meta {
  color: var(--sch-reference-accent);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.sch-reference-folder__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-block-start: 4px;
  color: var(--sch-reference-accent);
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.sch-reference-folder__action .ph {
  transition: transform var(--motion-medium) var(--ease-out-quint);
}

.sch-reference-folder:hover .sch-reference-folder__action .ph,
.sch-reference-folder:focus-visible .sch-reference-folder__action .ph {
  transform: translate(2px, -2px);
}

body.sch-reference-lightbox-open {
  overflow: hidden;
}

.sch-reference-lightbox[hidden] {
  display: none;
}

.sch-reference-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: clamp(54px, 8vw, 92px) minmax(0, 1fr) clamp(54px, 8vw, 92px);
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(12px, 2vw, 24px);
  padding: clamp(14px, 2.6vw, 34px);
  color: oklch(98% 0.006 45);
  background: oklch(13% 0.018 255 / 98%);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--motion-medium) var(--ease-out-quart),
    visibility var(--motion-medium) var(--ease-out-quart);
}

.sch-reference-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.sch-reference-lightbox__top {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.sch-reference-lightbox__top > div {
  min-width: 0;
}

.sch-reference-lightbox__top p {
  margin: 0 0 4px;
  color: oklch(82% 0.012 45);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.2;
}

.sch-reference-lightbox__top h2 {
  margin: 0;
  color: oklch(98% 0.006 45);
  font-size: clamp(1.3rem, 2.6vw, 2.2rem);
  font-weight: 850;
  line-height: 1.1;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.sch-reference-lightbox__close,
.sch-reference-lightbox__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid oklch(100% 0 0 / 22%);
  color: oklch(98% 0.006 45);
  background: oklch(100% 0 0 / 10%);
  cursor: pointer;
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    background-color var(--motion-medium) var(--ease-out-quart),
    border-color var(--motion-medium) var(--ease-out-quart);
}

.sch-reference-lightbox__close {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 1.2rem;
}

.sch-reference-lightbox__arrow {
  align-self: center;
  width: clamp(48px, 6vw, 64px);
  height: clamp(48px, 6vw, 64px);
  border-radius: 999px;
  font-size: 1.45rem;
}

.sch-reference-lightbox__close:hover,
.sch-reference-lightbox__close:focus-visible,
.sch-reference-lightbox__arrow:hover,
.sch-reference-lightbox__arrow:focus-visible {
  border-color: oklch(100% 0 0 / 44%);
  background: oklch(100% 0 0 / 16%);
  transform: translateY(-2px);
}

.sch-reference-lightbox__arrow--prev {
  grid-column: 1;
  grid-row: 2;
}

.sch-reference-lightbox__arrow--next {
  grid-column: 3;
  grid-row: 2;
}

.sch-reference-lightbox__stage {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: clamp(12px, 2vw, 18px);
  min-width: 0;
  min-height: 0;
  margin: 0;
}

.sch-reference-lightbox__stage img {
  display: block;
  max-width: 100%;
  max-height: min(72vh, 760px);
  width: auto;
  height: auto;
  border-radius: var(--radius);
  background: oklch(20% 0.018 255);
  box-shadow: 0 24px 70px oklch(0% 0 0 / 44%);
  object-fit: contain;
}

.sch-reference-lightbox__stage figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 980px);
  min-width: 0;
  color: oklch(92% 0.01 45);
  font-size: 0.96rem;
  line-height: 1.35;
}

.sch-reference-lightbox__stage strong {
  min-width: 0;
  color: oklch(98% 0.006 45);
  font-weight: 850;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.sch-reference-lightbox__stage span {
  flex: 0 0 auto;
  color: oklch(82% 0.012 45);
  font-weight: 750;
}

.sch-about {
  display: grid;
  gap: clamp(42px, 6vw, 70px);
}

.sch-about__eyebrow {
  margin: 0;
  color: var(--brand-red);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
}

.sch-about-hero {
  position: relative;
  display: grid;
  align-content: space-between;
  height: clamp(420px, 38vw, 524px);
  min-height: 0;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px) clamp(30px, 4.6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.sch-about-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--surface-soft);
}

.sch-about-hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
}

.sch-about-hero__copy,
.sch-about-hero__proofs {
  position: relative;
  z-index: 1;
}

.sch-about-hero__copy {
  display: grid;
  gap: clamp(10px, 1.2vw, 14px);
  width: min(100%, 500px);
  max-width: 50%;
}

.content-wrap .sch-about-hero__title,
.sch-about-hero__title {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: var(--text-display);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.sch-about-hero__text {
  max-width: 54ch;
  margin: 0;
  color: var(--ink);
  font-size: var(--text-body);
  line-height: 1.5;
}

.sch-about-hero__proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2.2vw, 34px);
  width: min(760px, 74%);
  margin-block-start: clamp(20px, 3vw, 36px);
}

.sch-about-proof {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.sch-about-proof > .ph {
  color: var(--ink);
  font-size: 1.6rem;
}

.sch-about-proof h2 {
  margin: 0 0 3px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.2;
}

.sch-about-proof p {
  margin: 0;
  color: oklch(34% 0.016 255);
  font-size: 0.85rem;
  line-height: 1.35;
}

.sch-about-profile {
  display: grid;
  gap: clamp(18px, 2.5vw, 24px);
  padding-inline: clamp(0px, 4vw, 58px);
}

.sch-about-profile__intro {
  display: grid;
  gap: 14px;
}

.sch-about-profile__intro h2 {
  max-width: 20ch;
  margin: 0;
  color: var(--ink);
  font-size: var(--text-title);
  font-weight: 850;
  line-height: 1.12;
}

.sch-about-profile__text {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-body);
  line-height: 1.7;
}

.sch-about-profile__text p {
  margin: 0 0 1em;
}

.sch-about-profile__text p:last-child {
  margin-bottom: 0;
}

.sch-about-values {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
  padding-inline: clamp(0px, 4vw, 58px);
}

.sch-about-values__intro {
  display: grid;
  gap: 12px;
  max-width: 700px;
}

.sch-about-values__intro h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--ink);
  font-size: var(--text-title);
  font-weight: 850;
  line-height: 1.12;
}

.sch-about-values__intro p {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-body);
  line-height: 1.6;
}

.sch-about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 66px);
}

.sch-about-value {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  text-align: center;
}

.sch-about-value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--ink);
  background: oklch(96% 0.006 255);
}

.sch-about-value__icon .ph {
  font-size: 1.8rem;
}

.sch-about-value h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.2;
}

.sch-about-value p {
  max-width: 23ch;
  margin: 0;
  color: oklch(34% 0.016 255);
  font-size: 0.95rem;
  line-height: 1.45;
}

.sch-about-team {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 12px 34px oklch(34% 0.02 255 / 8%);
}

.sch-about-team__media {
  min-height: clamp(300px, 32vw, 380px);
  background: var(--surface-soft);
}

.sch-about-team__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.sch-about-team__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: clamp(14px, 2vw, 24px);
  min-width: 0;
  padding: clamp(32px, 5vw, 70px);
}

.sch-about-team__copy h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--ink);
  font-size: var(--text-title);
  font-weight: 850;
  line-height: 1.12;
}

.sch-about-team__copy p {
  max-width: 58ch;
  margin: 0;
  color: oklch(34% 0.016 255);
  font-size: var(--text-body);
  line-height: 1.6;
}

.sch-team-page {
  display: grid;
  gap: clamp(38px, 5vw, 64px);
}

.sch-team-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.sch-team-hero__copy {
  display: grid;
  align-content: center;
  gap: clamp(14px, 2vw, 20px);
  min-width: 0;
  padding: clamp(34px, 5vw, 70px);
  background:
    linear-gradient(90deg, var(--panel) 0%, oklch(99% 0.006 52) 76%, oklch(99% 0.006 52 / 88%) 100%);
}

.content-wrap .sch-team-hero__title,
.sch-team-hero__title {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: var(--text-hero);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.sch-team-hero__text {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-lead);
  line-height: 1.58;
}

.sch-team-hero__slideshow {
  position: relative;
  min-height: clamp(320px, 38vw, 470px);
  overflow: hidden;
  background: var(--surface-soft);
}

.sch-team-hero__slides,
.sch-team-hero__slide {
  position: absolute;
  inset: 0;
}

.sch-team-hero__slide {
  display: block;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-slow) var(--ease-out-quart);
}

.sch-team-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.sch-team-hero__slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.sch-team-hero__controls {
  position: absolute;
  inset-inline: clamp(14px, 2vw, 24px);
  inset-block-end: clamp(14px, 2vw, 24px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.sch-team-hero__arrow,
.sch-team-hero__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid oklch(100% 0 0 / 54%);
  color: var(--ink);
  background: oklch(99% 0.004 45 / 86%);
  box-shadow: 0 12px 28px oklch(34% 0.02 255 / 16%);
  backdrop-filter: blur(10px);
  cursor: pointer;
  pointer-events: auto;
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    background-color var(--motion-medium) var(--ease-out-quart),
    border-color var(--motion-medium) var(--ease-out-quart);
}

.sch-team-hero__arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.15rem;
}

.sch-team-hero__arrow:hover,
.sch-team-hero__arrow:focus-visible {
  border-color: oklch(100% 0 0 / 84%);
  background: var(--panel);
  transform: translateY(-2px);
}

.sch-team-hero__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid oklch(100% 0 0 / 40%);
  border-radius: 999px;
  background: oklch(99% 0.004 45 / 78%);
  box-shadow: 0 12px 28px oklch(34% 0.02 255 / 14%);
  backdrop-filter: blur(10px);
}

.sch-team-hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  box-shadow: none;
}

.sch-team-hero__dot.is-active {
  width: 24px;
  border-color: var(--brand-red);
  background: var(--brand-red);
}

.sch-team-members {
  display: grid;
  gap: clamp(24px, 3.5vw, 42px);
  padding-inline: clamp(0px, 4vw, 58px);
}

.sch-team-members__intro {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.sch-team-members__intro h2 {
  max-width: 16ch;
  margin: 0;
  color: var(--ink);
  font-size: var(--text-title);
  font-weight: 850;
  line-height: 1.12;
}

.sch-team-members__intro p {
  margin: 0;
  color: oklch(34% 0.016 255);
  font-size: var(--text-body);
  line-height: 1.62;
}

.sch-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.sch-team-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: 0 12px 30px oklch(34% 0.02 255 / 8%);
  outline: 0;
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    border-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.sch-team-card:hover,
.sch-team-card:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 18px 38px oklch(34% 0.02 255 / 13%);
  transform: translateY(-3px);
}

.sch-team-card:focus-visible {
  outline: 3px solid oklch(62% 0.18 25 / 32%);
  outline-offset: 3px;
}

.sch-team-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--motion-slow) var(--ease-out-expo);
}

.sch-team-card:hover img,
.sch-team-card:focus-visible img {
  transform: scale(1.035);
}

.sch-team-card__overlay {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  display: grid;
  gap: 6px;
  min-height: 42%;
  padding: 54px clamp(14px, 1.8vw, 18px) clamp(14px, 1.8vw, 18px);
  color: oklch(99% 0.004 45);
  background: linear-gradient(180deg, oklch(23% 0.025 255 / 0%) 0%, oklch(23% 0.025 255 / 82%) 46%, oklch(18% 0.025 255 / 94%) 100%);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--motion-medium) var(--ease-out-quart),
    transform var(--motion-medium) var(--ease-out-quint);
}

.sch-team-card:hover .sch-team-card__overlay,
.sch-team-card:focus-visible .sch-team-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.sch-team-card__overlay h3 {
  margin: 0;
  color: inherit;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.15;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.sch-team-card__overlay p {
  margin: 0;
  color: oklch(94% 0.01 45);
  font-size: 0.92rem;
  line-height: 1.35;
  hyphens: auto;
  overflow-wrap: break-word;
}

.sch-team-card__overlay span {
  color: oklch(86% 0.012 45);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.2;
}

.field--name-field-sections {
  display: grid;
  gap: var(--component-gap);
}

.sch-front-sections > div {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: var(--component-gap);
}

.sch-front-sections > div > div:has(.sch-paragraph--hero),
.sch-front-sections > div > div:has(.sch-paragraph--service-cards),
.sch-front-sections > div > div:has(.sch-paragraph--trust-badges),
.sch-front-sections > div > div:has(.sch-paragraph--product-cards),
.sch-front-sections > div > div:has(.sch-paragraph--emergency-banner),
.sch-front-sections > div > div:has(.sch-paragraph--faq),
.sch-front-sections > div > div:has(.sch-paragraph--contact-cta) {
  grid-column: 1 / -1;
}

.sch-front-sections > div > div:has(.sch-paragraph--calculator-promo) {
  display: grid;
  min-width: 0;
}

.sch-front-sections > div > div:has(.sch-paragraph--jobs-cta),
.sch-front-sections > div > div:has(.sch-paragraph--testimonials) {
  display: grid;
  min-width: 0;
}

.sch-front-sections > div > div:has(.sch-paragraph--calculator-promo-heizungsrechner) {
  grid-column: 1 / span 5;
}

.sch-front-sections > div > div:has(.sch-paragraph--calculator-promo-bad-budgetrechner) {
  grid-column: 6 / span 5;
}

.sch-front-sections > div > div:has(.sch-paragraph--jobs-cta) {
  grid-column: 1 / span 4;
}

.sch-front-sections > div > div:has(.sch-paragraph--testimonials) {
  grid-column: 5 / span 6;
}

.sch-paragraph {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.sch-paragraph__inner {
  display: grid;
  gap: var(--space-md);
  padding: clamp(20px, 2.5vw, 34px);
}

.sch-paragraph .field {
  display: grid;
  gap: 6px;
}

.sch-paragraph .field__label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.sch-paragraph .field__item > p:first-child {
  margin-block-start: 0;
}

.sch-paragraph .field__item > p:last-child {
  margin-block-end: 0;
}

.sch-paragraph--hero {
  overflow: hidden;
  color: var(--ink);
  border-radius: 14px;
  background: var(--panel);
}

.sch-paragraph--hero .sch-paragraph__inner {
  position: relative;
  display: block;
  min-height: clamp(520px, 58vh, 620px);
  padding: 0;
}

.sch-hero__slides {
  position: relative;
  min-height: clamp(520px, 58vh, 620px);
  overflow: hidden;
}

.sch-hero__eyebrow {
  margin: 0;
  color: var(--brand-red);
  font-size: 0.86rem;
  font-weight: 800;
}

.content-wrap .sch-hero__heading,
.sch-hero__heading,
.sch-paragraph--hero .field--name-field-heading {
  max-width: 19ch;
  margin: 0;
  font-size: var(--text-title);
  font-weight: 850;
  line-height: 1.08;
  hyphens: auto;
  text-wrap: balance;
}

.sch-hero__heading a {
  color: inherit;
  text-decoration: none;
}

.sch-hero__heading a:hover {
  color: var(--brand-red);
}

.sch-hero__text {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-lead);
  line-height: 1.55;
}

.sch-hero__copy {
  position: relative;
  isolation: isolate;
  z-index: 3;
  grid-column: 1 / -1;
  grid-row: 1;
  display: grid;
  align-content: center;
  gap: 16px;
  min-width: 0;
  width: 45%;
  height: 100%;
  padding: clamp(34px, 3.8vw, 50px) clamp(58px, 6vw, 92px) clamp(34px, 3.8vw, 50px) clamp(34px, 4vw, 56px);
  background: var(--panel);
}

.sch-hero__copy::after {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline: 64% 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--panel) 0%, oklch(99% 0.004 45 / 88%) 39%, oklch(99% 0.004 45 / 0%) 100%);
}

.sch-hero__copy > * {
  position: relative;
  z-index: 1;
}

.sch-hero__actions {
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-block-start: clamp(6px, 1.2vw, 14px);
}

.sch-hero__actions .button {
  flex: 0 1 auto;
  min-height: 44px;
  padding-inline: 12px;
  gap: 6px;
  font-size: 0.88rem;
  line-height: 1;
  white-space: nowrap;
}

.sch-hero__media {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--surface-soft);
}

.sch-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  display: none;
  z-index: 2;
  background: linear-gradient(90deg, oklch(98% 0.006 45 / 18%) 0%, oklch(98% 0.006 45 / 0%) 28%);
  pointer-events: none;
}

.sch-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}

.sch-hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.3fr) minmax(0, 0.7fr);
  min-height: clamp(520px, 58vh, 620px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms var(--ease-out-quint);
}

.sch-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.sch-hero__controls {
  position: absolute;
  z-index: 8;
  inset-inline-start: auto;
  inset-inline-end: clamp(18px, 4vw, 52px);
  inset-block-end: clamp(16px, 2vw, 24px);
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sch-hero__arrow,
.sch-hero__dot {
  border: 0;
  color: var(--ink);
  cursor: pointer;
}

.sch-hero__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  font-size: 0.95rem;
  box-shadow: 0 8px 20px oklch(34% 0.02 255 / 10%);
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    color var(--motion-medium) var(--ease-out-quart),
    background-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.sch-hero__arrow:hover {
  color: var(--brand-red);
  box-shadow: 0 12px 24px oklch(34% 0.02 255 / 14%);
  transform: translateY(-1px);
}

.sch-hero__dots {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.sch-hero__dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
}

.sch-hero__dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: oklch(78% 0.01 255);
  transition:
    width var(--motion-medium) var(--ease-out-quint),
    transform var(--motion-medium) var(--ease-out-quint),
    background-color var(--motion-medium) var(--ease-out-quart);
}

.sch-hero__dot.is-active::before {
  width: 22px;
  background: var(--brand-red);
}

.sch-hero__dot:hover::before {
  transform: scale(1.25);
}

.sch-paragraph ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sch-section-title {
  margin: 0;
  color: var(--brand-red);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.2;
}

h2.sch-section-title,
.content-wrap h2.sch-section-title {
  max-width: none;
  margin: 0 0 10px;
  font-size: var(--text-card-title);
  line-height: 1.12;
}

.sch-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--brand-red);
  background: oklch(96% 0.025 25);
  font-size: 1.45rem;
}

.sch-icon-card-grid,
.sch-product-grid,
.sch-testimonial-grid {
  display: grid;
  gap: clamp(12px, 1.3vw, 18px);
}

.sch-icon-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.sch-icon-card,
.sch-product-card,
.sch-testimonial {
  position: relative;
  display: grid;
  gap: clamp(9px, 0.9vw, 12px);
  min-height: 148px;
  padding: clamp(17px, 1.5vw, 22px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    border-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart),
    background-color var(--motion-medium) var(--ease-out-quart);
}

.sch-icon-card:hover,
.sch-icon-card:focus-within,
.sch-product-card:hover,
.sch-product-card:focus-within,
.sch-testimonial:hover,
.sch-testimonial:focus-within {
  border-color: oklch(83% 0.032 35);
  box-shadow: 0 16px 34px oklch(34% 0.02 255 / 11%);
  transform: translateY(-3px);
}

.sch-icon-card h3,
.sch-product-card h3,
.sch-testimonial p {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-card-title);
  font-weight: 800;
  line-height: 1.25;
}

.sch-icon-card p,
.sch-product-card p,
.sch-testimonial p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.45;
}

.sch-icon-card a,
.sch-product-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-self: start;
  min-height: 44px;
  margin-block-start: auto;
  color: var(--brand-red);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.sch-icon-card a .ph,
.sch-product-card a .ph {
  transition: transform var(--motion-medium) var(--ease-out-quint);
}

.sch-icon-card a:hover .ph,
.sch-product-card a:hover .ph {
  transform: translateX(3px);
}

.sch-icon-card--mein-bad .sch-icon-badge,
.sch-paragraph--calculator-promo-bad-budgetrechner .sch-icon-badge {
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
}

.sch-icon-card--meine-sicherheit .sch-icon-badge,
.sch-icon-card--mein-schapfl-team .sch-icon-badge {
  color: oklch(46% 0.015 255);
  background: oklch(94% 0.008 255);
}

.sch-paragraph--service-cards,
.sch-paragraph--trust-badges,
.sch-paragraph--product-cards,
.sch-paragraph--testimonials,
.sch-paragraph--faq {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.sch-paragraph--service-cards .sch-paragraph__inner,
.sch-paragraph--trust-badges .sch-paragraph__inner,
.sch-paragraph--product-cards .sch-paragraph__inner,
.sch-paragraph--testimonials .sch-paragraph__inner,
.sch-paragraph--faq .sch-paragraph__inner {
  padding: 0;
}

.sch-badge-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.sch-trust-badge {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 94px;
  padding: 16px 12px;
  color: var(--muted);
  text-align: center;
  border-inline-end: 1px solid var(--line);
  transition:
    color var(--motion-medium) var(--ease-out-quart),
    background-color var(--motion-medium) var(--ease-out-quart);
}

.sch-trust-badge:hover {
  color: var(--ink);
  background: oklch(98% 0.012 35);
}

.sch-trust-badge:last-child {
  border-inline-end: 0;
}

.sch-trust-badge .ph {
  color: var(--brand-red);
  font-size: 1.6rem;
}

.sch-trust-badge:nth-child(3n + 2) .ph {
  color: var(--brand-blue);
}

.sch-trust-badge:nth-child(3n) .ph {
  color: var(--brand-amber-dark);
}

.sch-trust-badge strong {
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.2;
}

.sch-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sch-product-card {
  --sch-product-card-pad: clamp(14px, 1.2vw, 18px);
  gap: 8px;
  padding: var(--sch-product-card-pad);
  overflow: hidden;
}

.sch-product-card img {
  display: block;
  justify-self: stretch;
  width: calc(100% + (var(--sch-product-card-pad) * 2));
  max-width: none;
  aspect-ratio: 2.42;
  margin: calc(var(--sch-product-card-pad) * -1) calc(var(--sch-product-card-pad) * -1) 0;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
  transition: transform var(--motion-medium) var(--ease-out-quint);
}

.sch-product-card:hover img,
.sch-product-card:focus-within img {
  transform: scale(1.025);
}

.sch-product-card .sch-icon-badge {
  width: 40px;
  height: 40px;
  margin: -28px 0 0;
  color: var(--panel);
  background: var(--brand-red);
  box-shadow: 0 10px 18px oklch(34% 0.02 255 / 14%);
  z-index: 1;
}

.sch-product-card h3,
.sch-product-card p,
.sch-product-card a {
  margin-inline: 0;
}

.sch-paragraph--service-cards ul,
.sch-paragraph--trust-badges ul,
.sch-paragraph--product-cards ul,
.sch-paragraph--testimonials ul,
.sch-paragraph--faq ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(14px, 1.2vw, 18px);
}

.sch-paragraph--service-cards li,
.sch-paragraph--product-cards li,
.sch-paragraph--testimonials li,
.sch-paragraph--faq li {
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    border-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.sch-paragraph--service-cards li:hover,
.sch-paragraph--service-cards li:focus-within,
.sch-paragraph--product-cards li:hover,
.sch-paragraph--product-cards li:focus-within,
.sch-paragraph--testimonials li:hover,
.sch-paragraph--testimonials li:focus-within,
.sch-paragraph--faq li:hover,
.sch-paragraph--faq li:focus-within {
  border-color: oklch(83% 0.032 35);
  box-shadow: 0 14px 28px oklch(34% 0.02 255 / 9%);
  transform: translateY(-2px);
}

.sch-paragraph--trust-badges li {
  min-height: 72px;
  padding: 14px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  background: var(--panel);
}

.sch-paragraph--calculator-promo .sch-paragraph__inner,
.sch-paragraph--jobs-cta .sch-paragraph__inner {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.8fr);
  align-items: center;
}

.sch-paragraph--calculator-promo .sch-paragraph__inner {
  height: 100%;
  min-height: 196px;
  padding: 0;
  grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}

.sch-front-sections > div > div:has(.sch-paragraph--calculator-promo) > .sch-paragraph--calculator-promo {
  height: 100%;
}

.sch-front-sections > div > div:has(.sch-paragraph--jobs-cta) > .sch-paragraph--jobs-cta,
.sch-front-sections > div > div:has(.sch-paragraph--testimonials) > .sch-paragraph--testimonials {
  height: 100%;
}

.sch-paragraph--jobs-cta .sch-paragraph__inner {
  min-height: 224px;
  padding: clamp(22px, 2.2vw, 30px);
  grid-template-columns: minmax(0, 0.9fr) minmax(180px, 1fr);
  overflow: hidden;
}

.sch-paragraph--jobs-cta .sch-promo__copy {
  gap: 12px;
}

.sch-paragraph--jobs-cta .sch-promo__copy h2 {
  max-width: 22ch;
  font-size: 1.45rem;
  line-height: 1.08;
}

.sch-paragraph--jobs-cta .sch-promo__copy p {
  max-width: 24ch;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.sch-paragraph--jobs-cta .sch-promo__image {
  height: 148px;
  object-position: 62% center;
}

.sch-promo__copy {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.sch-paragraph--calculator-promo .sch-promo__copy {
  align-content: center;
  padding: clamp(22px, 2.2vw, 30px);
}

.sch-promo__copy h2 {
  margin: 0;
  font-size: 1.15rem;
}

.sch-promo__copy p {
  margin: 0;
  color: var(--muted);
}

.sch-promo__image {
  width: 100%;
  height: 154px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
}

.sch-paragraph--calculator-promo .sch-paragraph__inner > div:has(img),
.sch-paragraph--jobs-cta .sch-paragraph__inner > div:has(img) {
  grid-column: 2;
  grid-row: 1 / span 4;
}

.sch-paragraph--calculator-promo img,
.sch-paragraph--jobs-cta img {
  width: 100%;
  border-radius: var(--radius);
}

.sch-paragraph--calculator-promo .sch-promo__image {
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 196px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-sizing: border-box;
}

.sch-paragraph--calculator-promo-heizungsrechner .sch-promo__image {
  background: oklch(99% 0.004 36);
}

.sch-paragraph--calculator-promo-bad-budgetrechner .sch-promo__image {
  object-position: 52% center;
}

.sch-paragraph--product-cards .sch-paragraph__inner > div:has(img) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(14px, 1.2vw, 18px);
}

.sch-paragraph--product-cards img {
  border-radius: var(--radius);
}

.sch-paragraph--service-cards .field--name-field-items,
.sch-paragraph--trust-badges .field--name-field-items,
.sch-paragraph--product-cards .field--name-field-items,
.sch-paragraph--testimonials .field--name-field-items,
.sch-paragraph--faq .field--name-field-items {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.sch-technology-overview {
  display: grid;
  grid-template-columns: minmax(230px, 0.52fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(22px, 4vw, 58px);
  padding-block: clamp(18px, 2.5vw, 32px);
  border-block: 1px solid var(--line);
}

.sch-technology-overview__intro {
  display: grid;
  gap: 12px;
}

.sch-technology-overview__intro .sch-section-title {
  margin: 0;
}

.sch-technology-overview__text .field {
  display: contents;
}

.sch-technology-overview__text p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.55;
}

.sch-paragraph--product-cards-technology-overview .sch-technology-overview__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.sch-paragraph--product-cards-technology-overview .sch-technology-overview__item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  min-height: 0;
  padding: 16px 18px;
  border: 0;
  border-block-start: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.sch-paragraph--product-cards-technology-overview .sch-technology-overview__item:first-child {
  border-block-start: 0;
}

.sch-paragraph--product-cards-technology-overview .sch-technology-overview__item:hover,
.sch-paragraph--product-cards-technology-overview .sch-technology-overview__item:focus-within {
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.sch-technology-overview__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--brand-red);
  background: oklch(96% 0.025 25);
  font-size: 1.1rem;
}

.sch-technology-overview__content {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.sch-technology-overview__content strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.22;
}

.sch-technology-overview__content span {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.45;
}

.sch-process-timeline {
  display: grid;
  grid-template-columns: minmax(230px, 0.46fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(22px, 4vw, 58px);
  padding-block: clamp(18px, 2.5vw, 32px);
  border-block: 1px solid var(--line);
}

.sch-process-timeline__intro {
  display: grid;
  gap: 12px;
}

.sch-process-timeline__intro .sch-section-title {
  margin: 0;
}

.sch-process-timeline__text .field {
  display: contents;
}

.sch-process-timeline__text p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.55;
}

.sch-process-timeline__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.sch-paragraph--service-cards-process-timeline .sch-process-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 0;
  padding: 18px 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.sch-paragraph--service-cards-process-timeline .sch-process-timeline__item::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 47px;
  width: 1px;
  background: var(--line);
}

.sch-paragraph--service-cards-process-timeline .sch-process-timeline__item:first-child::before {
  inset-block-start: 50%;
}

.sch-paragraph--service-cards-process-timeline .sch-process-timeline__item:last-child::before {
  inset-block-end: 50%;
}

.sch-paragraph--service-cards-process-timeline .sch-process-timeline__item:hover,
.sch-paragraph--service-cards-process-timeline .sch-process-timeline__item:focus-within {
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.sch-process-timeline__marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: var(--brand-red);
  background: oklch(96% 0.025 25);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1;
}

.sch-process-timeline__content {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding-block: 3px;
}

.sch-process-timeline__content strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.sch-process-timeline__content span {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.45;
}

.sch-paragraph--map-embed,
.sch-paragraph--video-embed,
.sch-paragraph--external-script-embed {
  border-color: oklch(78% 0.05 240);
  background: var(--brand-blue-soft);
}

.sch-paragraph--calculator-embed {
  border-color: oklch(84% 0.018 55);
  background: oklch(97% 0.008 55);
}

.sch-calculator-embed {
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  align-items: stretch;
  gap: clamp(18px, 3vw, 44px);
}

.sch-calculator-embed--with-iframe {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-items: stretch;
}

.sch-calculator-embed__copy {
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
}

.sch-calculator-embed__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid oklch(72% 0.075 240);
  border-radius: 999px;
  color: var(--brand-blue);
  background: oklch(98% 0.012 235);
  font-size: 1.5rem;
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    background-color var(--motion-medium) var(--ease-out-quart);
}

.sch-calculator-embed__eyebrow {
  margin: 0;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sch-calculator-embed h2 {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-title);
  line-height: 1.05;
}

.sch-calculator-embed__copy > p:not(.sch-calculator-embed__eyebrow) {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
}

.sch-calculator-embed__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block-start: 8px;
}

.sch-calculator-embed__steps {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sch-calculator-embed__steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid oklch(82% 0.035 235);
  border-radius: var(--radius);
  background: oklch(98% 0.01 235);
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    border-color var(--motion-medium) var(--ease-out-quart),
    background-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.sch-calculator-embed:hover .sch-calculator-embed__icon {
  background: oklch(96% 0.02 235);
  transform: rotate(-4deg);
}

.sch-calculator-embed__steps li:hover {
  border-color: oklch(70% 0.07 240);
  background: oklch(99% 0.01 235);
  box-shadow: 0 12px 24px oklch(34% 0.02 255 / 8%);
  transform: translateY(-2px);
}

.sch-calculator-embed__steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--brand-blue);
  background: oklch(92% 0.04 235);
  font-size: 0.82rem;
  font-weight: 850;
}

.sch-calculator-embed__steps p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.sch-calculator-embed__frame-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid oklch(84% 0.018 55);
  border-radius: var(--radius);
  background: oklch(99% 0.004 55);
  box-shadow: 0 18px 34px oklch(42% 0.02 55 / 10%);
}

.sch-calculator-embed__iframe {
  display: block;
  width: 100%;
  min-height: var(--sch-calculator-min-height, 685px);
  height: var(--sch-calculator-min-height, 685px);
  border: 0;
  background: oklch(99% 0.004 55);
}

.sch-calculator-embed__consent {
  padding: 12px 14px;
  border-top: 1px solid oklch(88% 0.014 55);
  color: var(--muted);
  background: oklch(96% 0.008 55);
  font-size: 0.86rem;
  line-height: 1.45;
}

.sch-calculator-embed__consent p {
  margin: 0;
}

.sch-paragraph--emergency-banner {
  color: oklch(98% 0.006 45);
  border-color: var(--brand-red-dark);
  background: var(--brand-red);
}

.sch-paragraph--emergency-banner a:not(.button) {
  color: oklch(98% 0.006 45);
}

.sch-paragraph--emergency-banner .button--light {
  color: var(--brand-red-dark);
  border-color: transparent;
  background: var(--panel);
}

.sch-paragraph--emergency-banner .button--light:hover {
  color: var(--brand-red);
  background: oklch(98% 0.012 35);
}

.sch-paragraph--emergency-banner .sch-paragraph__inner {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  padding: 18px 24px;
}

.sch-emergency__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid oklch(95% 0.006 45 / 40%);
  border-radius: 999px;
  font-size: 2rem;
}

.sch-emergency__copy h2 {
  margin: 0 0 3px;
  color: oklch(98% 0.006 45);
  font-size: 1.26rem;
}

.sch-emergency__copy p {
  margin: 0;
  color: oklch(96% 0.012 35);
}

.sch-paragraph--testimonials .sch-paragraph__inner {
  height: 100%;
  box-sizing: border-box;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.sch-paragraph--testimonials .sch-section-title {
  max-width: none;
  color: var(--brand-red);
  font-size: 1.45rem;
  line-height: 1.08;
}

.sch-testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.1vw, 16px);
}

.sch-testimonial-carousel {
  --sch-testimonial-gap: clamp(12px, 1.1vw, 16px);
  --sch-testimonial-visible: 3;
  position: relative;
  min-width: 0;
}

.sch-testimonial-carousel__viewport {
  overflow: hidden;
}

.sch-testimonial-carousel .sch-testimonial-grid {
  display: flex;
  gap: var(--sch-testimonial-gap);
  transition: transform 260ms var(--ease-out-quint);
  will-change: transform;
}

.sch-testimonial-carousel .sch-testimonial {
  flex: 0 0 calc((100% - var(--sch-testimonial-gap) - var(--sch-testimonial-gap)) / 3);
  min-width: 0;
}

.sch-testimonial-carousel__button {
  position: absolute;
  z-index: 2;
  inset-block-start: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-red);
  background: var(--panel);
  box-shadow: 0 12px 24px oklch(34% 0.02 255 / 14%);
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    color var(--motion-medium) var(--ease-out-quart),
    background-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.sch-testimonial-carousel__button:hover,
.sch-testimonial-carousel__button:focus-visible {
  color: var(--panel);
  background: var(--brand-red);
  box-shadow: 0 14px 28px oklch(55% 0.19 25 / 18%);
  transform: translateY(-50%) scale(1.04);
}

.sch-testimonial-carousel__button:focus-visible {
  outline: 3px solid oklch(72% 0.12 25 / 34%);
  outline-offset: 2px;
}

.sch-testimonial-carousel__button--prev {
  inset-inline-start: -22px;
}

.sch-testimonial-carousel__button--next {
  inset-inline-end: -22px;
}

.sch-testimonial-carousel__button[hidden] {
  display: none;
}

.sch-testimonial {
  align-content: stretch;
  min-height: 176px;
  padding: 16px;
  gap: 10px;
}

.sch-stars {
  display: flex;
  gap: 2px;
  color: oklch(77% 0.16 75);
  font-size: 0.94rem;
}

.sch-testimonial > .ph {
  position: absolute;
  inset-block-start: 14px;
  inset-inline-end: 14px;
  color: oklch(78% 0.01 255);
  font-size: 1.05rem;
}

.sch-testimonial__quote {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.sch-testimonial__person {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-block-start: auto;
  padding-block-start: 12px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.2;
}

.sch-testimonial__avatar {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  background: oklch(96% 0.012 35);
}

.sch-testimonial__avatar--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  background: oklch(96% 0.025 25);
  font-size: 0.9rem;
}

.sch-testimonial__name {
  min-width: 0;
}

.sch-paragraph--faq .sch-paragraph__inner {
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  align-items: start;
}

.sch-faq__intro p {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  color: var(--brand-blue);
  font-size: 0.84rem;
  font-weight: 800;
}

.sch-faq__intro h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.08;
}

.sch-faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  align-items: stretch;
  gap: 12px 14px;
}

.sch-faq__item {
  display: grid;
  align-self: stretch;
  min-width: 0;
}

.sch-faq__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 11px 14px 11px 16px;
  color: var(--ink);
  text-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  transition:
    color var(--motion-medium) var(--ease-out-quart),
    border-color var(--motion-medium) var(--ease-out-quart),
    background-color var(--motion-medium) var(--ease-out-quart);
}

.sch-faq__row span {
  min-width: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.sch-faq__row .ph {
  justify-self: end;
  width: 18px;
  color: var(--muted);
  line-height: 1;
  transition: transform var(--motion-medium) var(--ease-out-quint);
}

.sch-faq__row[aria-expanded="true"] {
  border-end-start-radius: 0;
  border-end-end-radius: 0;
  color: var(--brand-red);
}

.sch-faq__row[aria-expanded="true"] .ph {
  transform: rotate(180deg);
}

.sch-faq__row--static {
  grid-template-columns: minmax(0, 1fr);
  cursor: default;
}

.sch-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  padding: 12px 14px 14px;
  border: 1px solid var(--line);
  border-block-start: 0;
  border-end-start-radius: var(--radius);
  border-end-end-radius: var(--radius);
  background: var(--panel);
  transition:
    grid-template-rows 300ms var(--ease-out-quint),
    opacity var(--motion-medium) var(--ease-out-quart);
}

.sch-faq__panel[hidden] {
  display: none;
}

.sch-faq__panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.sch-faq__panel > * {
  min-height: 0;
  overflow: hidden;
}

.sch-faq__panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.sch-paragraph--contact-cta .sch-paragraph__inner {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 18px;
  padding: 22px 24px;
}

.sch-paragraph--contact-cta .sch-icon-badge {
  grid-row: 1 / span 2;
}

.sch-paragraph--contact-cta h2 {
  max-width: none;
  margin: 0;
  font-size: var(--text-section);
  line-height: 1.12;
}

.sch-paragraph--contact-cta .field--name-field-text {
  grid-column: 2;
}

.sch-paragraph--contact-cta .field--name-field-text p {
  margin: 0;
  color: var(--muted);
}

.sch-paragraph--contact-cta .sch-contact-cta__actions {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.sch-contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-shell:has(.sch-subpage) .breadcrumb-region {
  display: none;
}

.site-shell:has(.sch-subpage) .content-wrap {
  padding-block-start: clamp(18px, 2.5vw, 34px);
}

.sch-subpage {
  display: grid;
  gap: var(--section-gap);
}

.sch-subpage__eyebrow {
  margin: 0;
  color: var(--brand-red);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
}

.sch-subpage-hero {
  position: relative;
  min-height: clamp(380px, 35vw, 500px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.sch-subpage-hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: var(--space-md);
  width: min(55%, 640px);
  min-height: inherit;
  padding: clamp(32px, 5vw, 72px);
  background: linear-gradient(90deg, var(--panel) 0%, oklch(99% 0.006 52 / 96%) 56%, oklch(99% 0.006 52 / 0%) 100%);
}

.content-wrap .sch-subpage-hero__title,
.sch-subpage-hero__title {
  max-width: 14ch;
  margin: 0;
  color: var(--ink);
  font-size: var(--text-hero);
  font-weight: 850;
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.sch-subpage--aktuelles .sch-subpage-hero__title {
  max-width: 15ch;
  overflow-wrap: normal;
}

.sch-subpage-hero__text {
  max-width: 42ch;
  margin: 0;
  color: oklch(35% 0.016 255);
  font-size: var(--text-lead);
  line-height: 1.58;
}

.sch-subpage-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--surface-soft);
}

.sch-subpage-hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right top;
}

.sch-subpage--jobs .sch-subpage-hero__media img {
  object-position: 68% top;
}

.sch-subpage--kontakt .sch-subpage-hero__media img {
  object-position: center top;
}

.sch-subpage-section {
  min-width: 0;
}

.sch-service-hub__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--component-gap);
}

.sch-service-hub__grid > .sch-subpage-card {
  grid-column: span 6;
}

@media (min-width: 901px) {
  .sch-service-hub__grid > .sch-subpage-card:nth-child(4n + 1),
  .sch-service-hub__grid > .sch-subpage-card:nth-child(4n) {
    grid-column: span 7;
  }

  .sch-service-hub__grid > .sch-subpage-card:nth-child(4n + 2),
  .sch-service-hub__grid > .sch-subpage-card:nth-child(4n + 3) {
    grid-column: span 5;
  }
}

.sch-subpage-card {
  --sch-card-accent: var(--brand-red);
  --sch-card-accent-soft: var(--brand-red-soft);
  position: relative;
  min-height: clamp(190px, 18vw, 245px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 30px oklch(34% 0.02 255 / 8%);
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    border-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.sch-subpage-card:hover,
.sch-subpage-card:focus-within {
  border-color: var(--line-strong);
  box-shadow: 0 18px 38px oklch(34% 0.02 255 / 12%);
  transform: translateY(-3px);
}

.sch-subpage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--panel) 0%, oklch(99% 0.004 45 / 96%) 43%, oklch(99% 0.004 45 / 14%) 74%, oklch(99% 0.004 45 / 0%) 100%);
  pointer-events: none;
}

.sch-subpage-card__copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 10px;
  width: min(58%, 360px);
  min-height: inherit;
  padding: clamp(20px, 2.6vw, 36px);
}

.sch-subpage-card h2,
.sch-subpage-card h3,
.sch-job-row h3,
.sch-news-card h3,
.sch-contact-layout h2,
.sch-job-application h2,
.sch-subpage-support h2,
.sch-subpage-emergency h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

.sch-subpage-card h2 {
  font-size: var(--text-section);
  line-height: 1.15;
}

.sch-subpage-card p {
  max-width: 25ch;
  margin: 0;
  color: oklch(36% 0.016 255);
  font-size: 1rem;
  line-height: 1.55;
}

.sch-subpage-card a,
.sch-news-card__link,
.sch-job-row a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  margin-block-start: auto;
  color: var(--sch-card-accent, var(--brand-red));
  font-weight: 850;
  text-decoration: none;
}

.sch-subpage-card a .ph,
.sch-news-card__link .ph,
.sch-job-row a .ph {
  transition: transform var(--motion-medium) var(--ease-out-quint);
}

.sch-subpage-card a:hover .ph,
.sch-news-card__link:hover .ph,
.sch-job-row a:hover .ph {
  transform: translateX(3px);
}

.sch-subpage-card--blue a,
.sch-news-card__category {
  color: var(--brand-blue);
}

.sch-subpage-card--blue {
  --sch-card-accent: var(--brand-blue);
  --sch-card-accent-soft: var(--brand-blue-soft);
}

.sch-subpage-card--calculator {
  --sch-card-accent: var(--brand-amber-dark);
  --sch-card-accent-soft: var(--brand-amber-soft);
}

.sch-subpage-card--neutral {
  --sch-card-accent: var(--brand-steel);
  --sch-card-accent-soft: var(--brand-steel-soft);
}

.sch-subpage-card--neutral a {
  color: var(--brand-steel);
}

.sch-subpage-card img {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  width: 64%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform var(--motion-slow) var(--ease-out-expo);
}

.sch-subpage-card:hover img,
.sch-subpage-card:focus-within img {
  transform: scale(1.025);
}

.sch-subpage-icon,
.sch-job-row__icon,
.sch-job-benefit span,
.sch-subpage-support__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
}

.sch-subpage-icon {
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in oklch, var(--sch-card-accent) 22%, var(--panel));
  border-radius: var(--radius);
  background: var(--sch-card-accent-soft);
  color: var(--sch-card-accent);
  font-size: 2rem;
}

.sch-subpage-card--blue .sch-subpage-icon {
  color: var(--brand-blue);
}

.sch-subpage-card--neutral .sch-subpage-icon {
  color: oklch(48% 0.018 255);
}

.sch-subpage-emergency {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(18px, 2vw, 28px);
  border-radius: var(--radius);
  color: oklch(98% 0.006 45);
  background: var(--brand-red);
  box-shadow: 0 16px 34px oklch(55% 0.19 25 / 20%);
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.sch-subpage-emergency:hover,
.sch-subpage-emergency:focus-within {
  box-shadow: 0 20px 42px oklch(55% 0.19 25 / 24%);
  transform: translateY(-2px);
}

.sch-subpage-emergency__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border: 1px solid oklch(98% 0.006 45 / 38%);
  border-radius: var(--radius);
  color: oklch(98% 0.006 45);
  font-size: 2.6rem;
}

.sch-subpage-emergency h2 {
  color: oklch(98% 0.006 45);
  font-size: var(--text-section);
}

.sch-subpage-emergency p {
  max-width: 72ch;
  margin: 3px 0 0;
  color: oklch(96% 0.012 35);
}

.sch-news-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
  margin-block-end: clamp(22px, 3vw, 36px);
}

.sch-news-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding-inline: 20px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    color var(--motion-medium) var(--ease-out-quart),
    background-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.sch-news-tabs a:hover,
.sch-news-tabs a:focus-visible {
  color: var(--brand-red);
  background: oklch(98% 0.012 35);
  box-shadow: 0 10px 22px oklch(34% 0.02 255 / 8%);
  transform: translateY(-1px);
}

.sch-news-tabs a.is-active {
  color: oklch(98% 0.006 45);
  background: var(--brand-red);
}

.sch-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.sch-news-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 30px oklch(34% 0.02 255 / 8%);
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    border-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.sch-subpage--aktuelles .sch-subpage__eyebrow,
.sch-subpage--aktuelles .sch-news-card__link {
  color: var(--brand-blue);
}

.sch-subpage--aktuelles .sch-news-tabs a.is-active {
  background: var(--brand-blue);
}

.sch-news-card:hover,
.sch-news-card:focus-within {
  border-color: oklch(83% 0.032 35);
  box-shadow: 0 18px 38px oklch(34% 0.02 255 / 12%);
  transform: translateY(-3px);
}

.sch-news-card__image {
  display: block;
  overflow: hidden;
  background: var(--surface-soft);
}

.sch-news-card__image img {
  width: 100%;
  aspect-ratio: 1.86;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--ease-out-expo);
}

.sch-news-card:hover .sch-news-card__image img,
.sch-news-card:focus-within .sch-news-card__image img {
  transform: scale(1.025);
}

.sch-news-card__body {
  display: grid;
  gap: 12px;
  min-height: 245px;
  padding: clamp(20px, 2.2vw, 30px);
}

.sch-news-card__category {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.sch-news-card h3 {
  font-size: var(--text-card-title);
  line-height: 1.28;
}

.sch-news-card h3 a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
  text-decoration: none;
}

.sch-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.sch-news-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.sch-subpage-support {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brand-blue-soft);
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    border-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.sch-subpage-support:hover,
.sch-subpage-support:focus-within {
  border-color: oklch(83% 0.032 35);
  box-shadow: 0 16px 34px oklch(34% 0.02 255 / 10%);
  transform: translateY(-2px);
}

.sch-subpage-support__icon {
  width: 74px;
  height: 74px;
  color: var(--brand-blue);
  font-size: 3.1rem;
}

.sch-subpage-support h2 {
  font-size: var(--text-section);
}

.sch-subpage-support p {
  margin: 5px 0 0;
  color: var(--muted);
}

.sch-jobs-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.sch-jobs-list {
  display: grid;
  gap: 14px;
}

.sch-jobs-list h2,
.sch-job-benefits h2 {
  margin: 0 0 14px;
  color: var(--brand-amber-dark);
  font-size: var(--text-card-title);
  line-height: 1.2;
}

.sch-job-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  min-height: 104px;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    border-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.sch-job-row:hover,
.sch-job-row:focus-within {
  border-color: oklch(83% 0.032 35);
  box-shadow: 0 14px 30px oklch(34% 0.02 255 / 10%);
  transform: translateY(-2px);
}

.sch-job-row__icon {
  width: 42px;
  height: 42px;
  color: var(--brand-amber-dark);
  font-size: 2rem;
}

.sch-job-row h3 {
  font-size: var(--text-card-title);
  line-height: 1.25;
}

.sch-job-row p {
  margin: 5px 0 0;
  color: var(--muted);
}

.sch-job-benefits__list {
  display: grid;
  gap: 24px;
}

.sch-job-benefit {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  transition: transform var(--motion-medium) var(--ease-out-quint);
}

.sch-job-benefit:hover {
  transform: translateX(3px);
}

.sch-job-benefit span {
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--brand-amber-dark);
  background: var(--brand-amber-soft);
  font-size: 1.8rem;
  transition:
    color var(--motion-medium) var(--ease-out-quart),
    border-color var(--motion-medium) var(--ease-out-quart),
    background-color var(--motion-medium) var(--ease-out-quart);
}

.sch-job-benefit:hover span {
  color: var(--brand-red-dark);
  border-color: oklch(82% 0.055 72);
  background: oklch(97% 0.035 72);
}

.sch-job-benefit p {
  max-width: 24ch;
  margin: 0;
  color: var(--ink);
  line-height: 1.5;
}

.sch-job-application {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(360px, 1fr);
  align-items: start;
  gap: clamp(24px, 4vw, 56px);
  overflow: hidden;
  min-height: 270px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brand-amber-soft);
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    border-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.sch-job-application:hover,
.sch-job-application:focus-within {
  border-color: oklch(83% 0.032 35);
  box-shadow: 0 16px 34px oklch(34% 0.02 255 / 10%);
  transform: translateY(-2px);
}

.sch-job-application__intro,
.sch-job-application__form {
  position: relative;
  z-index: 2;
}

.sch-job-application__intro {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 42ch;
}

.sch-job-application__form {
  min-width: 0;
}

.sch-job-application h2 {
  font-size: var(--text-title);
}

.sch-job-application p {
  margin: 0;
  color: oklch(36% 0.016 255);
}

.sch-job-application > .ph {
  position: absolute;
  inset-inline-end: clamp(24px, 8vw, 120px);
  inset-block-end: -44px;
  z-index: 1;
  color: oklch(99% 0.01 72);
  font-size: 15rem;
  line-height: 1;
  transform: rotate(-12deg);
  text-shadow: 0 0 0 12px oklch(86% 0.06 72 / 40%);
}

.sch-subpage--jobs .sch-subpage__eyebrow {
  color: var(--brand-amber-dark);
}

.sch-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.sch-contact-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.86fr);
  gap: clamp(24px, 3.8vw, 56px);
}

.sch-contact-details h2,
.sch-contact-form h2 {
  margin-block-end: 18px;
  font-size: var(--text-section);
  line-height: 1.2;
}

.sch-contact-details ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sch-contact-details li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  max-width: none;
  color: var(--ink);
  font-size: var(--text-body);
  font-variant-numeric: tabular-nums;
  transition:
    color var(--motion-medium) var(--ease-out-quart),
    transform var(--motion-medium) var(--ease-out-quint);
}

.sch-contact-details li:hover {
  color: var(--brand-red);
  transform: translateX(3px);
}

.sch-contact-details li .ph {
  margin-block-start: 3px;
  color: var(--brand-steel);
}

.sch-contact-details a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
  text-decoration: none;
}

.sch-contact-hours {
  display: grid;
  gap: 14px;
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.sch-contact-hours > div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
}

.sch-contact-hours dt,
.sch-contact-hours dd {
  margin: 0;
}

.sch-contact-hours dt {
  color: var(--ink);
  font-weight: 750;
}

.sch-contact-map {
  position: relative;
  grid-column: 1 / -1;
  display: block;
  min-height: 285px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: oklch(96.5% 0.006 70);
  transition:
    transform var(--motion-medium) var(--ease-out-quint),
    border-color var(--motion-medium) var(--ease-out-quart),
    box-shadow var(--motion-medium) var(--ease-out-quart);
}

.sch-contact-map:hover,
.sch-contact-map:focus-within {
  border-color: oklch(83% 0.032 35);
  box-shadow: 0 16px 34px oklch(34% 0.02 255 / 10%);
  transform: translateY(-2px);
}

.sch-contact-map__iframe {
  display: block;
  width: 100%;
  min-height: 285px;
  height: 100%;
  border: 0;
  background: oklch(96.5% 0.006 70);
  filter: saturate(0.9) contrast(0.96);
}

.sch-contact-map__pin {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: var(--brand-red);
  background: oklch(96% 0.025 25);
  font-size: 1.55rem;
  line-height: 1;
  transition: transform var(--motion-medium) var(--ease-out-quint);
}

.sch-contact-map:hover .sch-contact-map__pin,
.sch-contact-map:focus-within .sch-contact-map__pin {
  transform: translateY(-4px);
}

.sch-contact-map__label {
  position: absolute;
  inset: auto auto 18px 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 4px 12px;
  width: min(360px, calc(100% - 36px));
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 28px oklch(34% 0.02 255 / 10%);
}

.sch-contact-map__label strong {
  display: block;
}

.sch-contact-map__label a {
  grid-column: 2;
  justify-self: start;
  gap: 6px;
  min-height: 32px;
  color: var(--brand-red);
  font-size: 0.9rem;
  font-weight: 800;
}

.sch-contact-form {
  padding-inline-start: clamp(24px, 4vw, 52px);
  border-inline-start: 1px solid var(--line);
}

.sch-contact-form form,
.sch-subpage--jobs form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sch-contact-form .form-item,
.sch-subpage--jobs form .form-item {
  display: grid;
  gap: 6px;
  margin: 0;
}

.sch-contact-form .form-item-message,
.sch-contact-form .form-item-service-context,
.sch-contact-form .form-item-privacy,
.sch-contact-form .form-actions,
.sch-contact-form input[type="hidden"],
.sch-subpage--jobs form .form-item-message,
.sch-subpage--jobs form .form-item-privacy,
.sch-subpage--jobs form .form-actions,
.sch-subpage--jobs form input[type="hidden"] {
  grid-column: 1 / -1;
}

.sch-contact-form label,
.sch-subpage--jobs form label {
  color: var(--brand-steel);
  font-size: 0.88rem;
  font-weight: 750;
}

.sch-contact-form input:not([type="checkbox"]):not([type="submit"]),
.sch-contact-form select,
.sch-contact-form textarea,
.sch-subpage--jobs form input:not([type="checkbox"]):not([type="submit"]),
.sch-subpage--jobs form select,
.sch-subpage--jobs form textarea {
  width: 100%;
  min-height: 58px;
  border-color: var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
}

.sch-contact-form input:not([type="checkbox"]):not([type="submit"]):focus-visible,
.sch-contact-form select:focus-visible,
.sch-contact-form textarea:focus-visible,
.sch-subpage--jobs form input:not([type="checkbox"]):not([type="submit"]):focus-visible,
.sch-subpage--jobs form select:focus-visible,
.sch-subpage--jobs form textarea:focus-visible {
  border-color: oklch(67% 0.08 240);
  box-shadow: 0 0 0 4px oklch(67% 0.08 240 / 16%);
}

.sch-contact-form textarea,
.sch-subpage--jobs form textarea {
  min-height: 168px;
}

.sch-contact-form .form-type-checkbox,
.sch-subpage--jobs form .form-type-checkbox {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  min-height: 44px;
}

.sch-contact-form .form-type-checkbox input,
.sch-subpage--jobs form .form-type-checkbox input {
  width: 22px;
  height: 22px;
  margin-block-start: 5px;
}

.site-footer {
  margin-block-start: clamp(48px, 8vw, 90px);
  padding-block: 42px 22px;
  color: oklch(95% 0.006 45);
  background: oklch(25% 0.018 255);
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: oklch(95% 0.006 45);
  text-decoration: none;
}

.site-footer a:hover {
  color: oklch(82% 0.12 35);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(140px, 1.3fr) repeat(4, minmax(140px, 1fr));
  gap: clamp(22px, 4vw, 46px);
}

.site-footer h2 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 12px;
  color: oklch(98% 0.006 45);
  font-size: 0.98rem;
}

.site-footer p {
  margin: 0;
  color: oklch(84% 0.01 255);
  font-size: 0.94rem;
}

.site-footer p .ph,
.site-footer a .ph {
  margin-inline-end: 0;
}

.site-footer ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.94rem;
}

.site-footer__brand img {
  padding: 12px;
  border-radius: var(--radius);
  background: oklch(98% 0.006 45);
}

  .site-footer__fineprint {
    margin-block-start: 34px;
    padding-block-start: 18px;
    border-top: 1px solid oklch(45% 0.018 255);
    color: oklch(76% 0.01 255);
    font-size: 0.86rem;
  }

@media (max-width: 980px) {
  .sch-hero__actions {
    flex-wrap: wrap;
  }

  .sch-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  :root {
    --mobile-menu-section: clamp(0.95rem, 3.8vw, 1.12rem);
    --mobile-menu-primary: clamp(1.72rem, 7vw, 2.18rem);
    --mobile-menu-child: clamp(1.2rem, 5.2vw, 1.58rem);
  }

  body.is-mobile-menu-open {
    overflow: hidden;
  }

  .masthead {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 18px;
    min-height: 78px;
    padding-block: 10px;
  }

  .brand {
    justify-self: start;
  }

  .masthead__cta {
    display: none;
  }

  .masthead__menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    width: auto;
    min-width: 0;
    padding: clamp(20px, 6vw, 38px) clamp(24px, 7vw, 48px);
    background: oklch(99% 0.004 45);
    box-shadow: 0 18px 48px oklch(34% 0.02 255 / 16%);
    opacity: 0;
    pointer-events: none;
    transform: translateX(16px);
    visibility: hidden;
    transition:
      opacity var(--motion-medium) var(--ease-out-quart),
      transform var(--motion-medium) var(--ease-out-quint),
      visibility var(--motion-medium) var(--ease-out-quart);
  }

  body.is-mobile-menu-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .primary-nav__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-block-end: clamp(30px, 8vw, 56px);
  }

  .primary-nav__brand {
    display: inline-flex;
    align-items: center;
  }

  .primary-nav__brand img {
    width: clamp(136px, 40vw, 166px);
    height: auto;
  }

  .primary-nav__close {
    display: inline-flex;
    border-color: transparent;
    background: transparent;
  }

  .primary-nav__close .ph {
    font-size: 2rem;
  }

  .primary-nav__mobile-scroll {
    overflow-y: auto;
    padding-block-end: 34px;
  }

  .primary-nav .primary-nav__mobile-cta {
    display: inline-flex;
    width: auto;
    margin-block-start: clamp(28px, 8vw, 46px);
  }

  .primary-nav .menu--level-0 {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: start;
    gap: clamp(24px, 7vw, 40px);
  }

  .primary-nav .menu__item--level-0 {
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  body.is-mobile-menu-open .primary-nav .menu__item--level-0 {
    animation: sch-fade-up 360ms var(--ease-out-quint) both;
  }

  body.is-mobile-menu-open .primary-nav .menu__item--level-0:nth-child(1) {
    animation-delay: 70ms;
  }

  body.is-mobile-menu-open .primary-nav .menu__item--level-0:nth-child(2) {
    animation-delay: 110ms;
  }

  body.is-mobile-menu-open .primary-nav .menu__item--level-0:nth-child(3) {
    animation-delay: 150ms;
  }

  body.is-mobile-menu-open .primary-nav .menu__item--level-0:nth-child(n + 4) {
    animation-delay: 190ms;
  }

  .primary-nav .menu__item--has-submenu::after {
    display: none;
  }

  .primary-nav .menu__link--level-0 {
    justify-content: flex-start;
    width: 100%;
    min-height: 2.75rem;
    padding: 0;
    color: var(--ink);
    font-size: var(--mobile-menu-primary);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .primary-nav .menu__item--has-submenu > .menu__link--level-0 {
    width: auto;
    min-height: 2.75rem;
    margin-block-end: clamp(12px, 3.5vw, 18px);
    color: oklch(51% 0.018 255);
    font-size: var(--mobile-menu-section);
    font-weight: 700;
    line-height: 1.2;
  }

  .primary-nav .menu__link--has-submenu .ph {
    display: none;
  }

  .primary-nav .menu--level-1 {
    position: static;
    display: grid;
    gap: clamp(11px, 3.4vw, 18px);
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .primary-nav .menu__item--has-submenu:hover > .menu--level-1,
  .primary-nav .menu__item--has-submenu:focus-within > .menu--level-1 {
    transform: none;
  }

  .primary-nav .menu--level-1 .menu__link {
    justify-content: flex-start;
    min-height: 2.75rem;
    padding: 0 0.04em;
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    font-size: var(--mobile-menu-child);
    font-weight: 780;
    line-height: 1.18;
    letter-spacing: 0;
    text-wrap: balance;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .primary-nav .menu--level-1 .menu__link:hover,
  .primary-nav .menu--level-1 .menu__link:focus-visible,
  .primary-nav .menu--level-1 .menu__item--active-trail > .menu__link {
    color: var(--brand-red);
    background: transparent;
  }
}

@media (max-width: 820px) {
  :root {
    --page-gutter: 22px;
    --section-gap: 34px;
    --component-gap: 18px;
    --text-hero: 3rem;
    --text-display: 2.55rem;
    --text-title: 1.9rem;
    --text-section: 1.35rem;
    --text-card-title: 1.08rem;
    --text-lead: 1.03rem;
  }

  .contact-strip__inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    min-height: 44px;
    padding-block: 0;
    text-align: center;
  }

  .contact-strip a {
    min-height: 44px;
  }

  .contact-strip__inner > span {
    display: none;
  }

  .content-wrap h1 {
    max-width: 100%;
    font-size: var(--text-display);
  }

  .content-wrap h2 {
    font-size: var(--text-title);
  }

  .breadcrumb-region {
    padding-block-start: 12px;
  }

  .sch-breadcrumb {
    display: flex;
    width: 100%;
    padding: 7px 10px;
  }

  .sch-breadcrumb__list {
    overflow-x: auto;
    padding-block: 2px;
    scrollbar-width: none;
  }

  .sch-breadcrumb__list::-webkit-scrollbar {
    display: none;
  }

  .sch-breadcrumb__item.is-current > span {
    max-width: 54vw;
  }

  .sch-node {
    gap: 28px;
  }

  .sch-node-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sch-node-hero__copy {
    order: 2;
    padding: clamp(22px, 7vw, 36px);
  }

  .content-wrap .sch-node-hero__title,
  .sch-node-hero__title {
    width: 100%;
    max-width: 100%;
    font-size: var(--text-hero);
  }

  .sch-node--article .sch-node-hero__title,
  .sch-node--job-posting .sch-node-hero__title {
    font-size: var(--text-display);
  }

  .sch-node-hero__media {
    order: 1;
    min-height: clamp(210px, 46vw, 320px);
  }

  .sch-node-hero__media::before {
    background: linear-gradient(180deg, oklch(99% 0.004 45 / 0%) 52%, oklch(99% 0.004 45 / 42%) 100%);
  }

  .sch-node__body {
    font-size: 1rem;
  }

  .sch-node-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .sch-node-cta .button {
    width: auto;
  }

  .sch-about {
    gap: 34px;
  }

  .sch-about-hero {
    align-content: start;
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .sch-about-hero__media {
    position: relative;
    order: 1;
    min-height: clamp(220px, 58vw, 330px);
  }

  .sch-about-hero__media img {
    object-position: right center;
  }

  .sch-about-hero__copy {
    order: 2;
    width: 100%;
    max-width: none;
    padding: clamp(24px, 7vw, 36px) clamp(22px, 7vw, 34px) 0;
  }

  .content-wrap .sch-about-hero__title,
  .sch-about-hero__title {
    max-width: 100%;
    font-size: var(--text-hero);
  }

  .sch-about-hero__proofs {
    order: 3;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 16px;
    margin-block-start: 0;
    padding: clamp(24px, 7vw, 34px);
  }

  .sch-about-values {
    gap: 28px;
    padding-inline: 0;
  }

  .sch-about-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .sch-about-team {
    grid-template-columns: 1fr;
  }

  .sch-about-team__media {
    min-height: clamp(230px, 58vw, 320px);
  }

  .sch-about-team__copy {
    padding: clamp(24px, 7vw, 36px);
  }

  .sch-about-team__copy h2 {
    max-width: 100%;
  }

  .sch-team-page {
    gap: 34px;
  }

  .sch-team-hero {
    grid-template-columns: 1fr;
  }

  .sch-team-hero__copy {
    order: 2;
    padding: clamp(24px, 7vw, 36px);
  }

  .content-wrap .sch-team-hero__title,
  .sch-team-hero__title {
    max-width: 100%;
    font-size: var(--text-hero);
  }

  .sch-team-hero__slideshow {
    order: 1;
    min-height: clamp(240px, 58vw, 340px);
  }

  .sch-team-members {
    padding-inline: 0;
  }

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

  .sch-team-card__overlay {
    min-height: 48%;
    opacity: 1;
    transform: none;
  }

  .sch-reference-folders {
    padding-inline: 0;
  }

  .sch-reference-folder-grid {
    grid-template-columns: 1fr;
  }

  .sch-reference-folder {
    min-height: 0;
    grid-template-rows: minmax(220px, 42vw) auto;
  }

  .sch-reference-lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: 14px;
  }

  .sch-reference-lightbox__stage {
    grid-column: 1;
    grid-row: 2;
  }

  .sch-reference-lightbox__stage img {
    max-height: calc(100vh - 190px);
  }

  .sch-reference-lightbox__arrow {
    position: static;
    grid-row: 3;
    width: 52px;
    height: 52px;
    align-self: end;
  }

  .sch-reference-lightbox__arrow--prev {
    grid-column: 1;
    justify-self: start;
  }

  .sch-reference-lightbox__arrow--next {
    grid-column: 1;
    justify-self: end;
  }

  .sch-front-sections > div {
    grid-template-columns: 1fr;
  }

  .sch-front-sections > div > div:has(.sch-paragraph--hero) {
    width: min(100vw - 22px, 1300px);
  }

  .sch-front-sections > div > div:has(.sch-paragraph--calculator-promo-heizungsrechner),
  .sch-front-sections > div > div:has(.sch-paragraph--calculator-promo-bad-budgetrechner),
  .sch-front-sections > div > div:has(.sch-paragraph--jobs-cta),
  .sch-front-sections > div > div:has(.sch-paragraph--testimonials) {
    grid-column: 1;
  }

  .sch-paragraph--hero .sch-paragraph__inner,
  .sch-paragraph--calculator-promo .sch-paragraph__inner,
  .sch-paragraph--jobs-cta .sch-paragraph__inner,
  .sch-calculator-embed {
    grid-template-columns: 1fr;
  }

  .sch-paragraph--calculator-promo .sch-promo__copy {
    padding: 24px;
  }

  .sch-paragraph--calculator-promo .sch-promo__image {
    height: 178px;
    min-height: 178px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .sch-paragraph--hero .sch-paragraph__inner,
  .sch-hero__slides {
    min-height: 590px;
  }

  .sch-hero__slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(200px, 1fr);
    min-height: 590px;
  }

  .sch-hero__copy {
    grid-column: 1;
    width: 100%;
    height: auto;
    gap: 12px;
    padding: 24px 22px 16px;
    background: oklch(98% 0.006 45);
  }

  .sch-hero__copy::after {
    display: none;
  }

  .sch-hero__actions {
    flex-wrap: wrap;
    gap: 10px;
    margin-block-start: 4px;
  }

  .sch-hero__actions .button {
    width: auto;
    flex: 1 1 calc(50% - 5px);
    padding-inline: 12px;
  }

  .sch-hero__actions .button--primary {
    flex-basis: 100%;
  }

  .sch-icon-card-grid,
  .sch-product-grid,
  .sch-testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sch-testimonial-carousel {
    --sch-testimonial-visible: 2;
  }

  .sch-testimonial-carousel .sch-testimonial {
    flex-basis: calc((100% - var(--sch-testimonial-gap)) / 2);
  }

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

  .sch-trust-badge {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: 0;
    padding: 10px 12px;
    text-align: left;
    border-inline-end: 1px solid var(--line);
    border-block-end: 1px solid var(--line);
  }

  .sch-trust-badge:nth-child(2n) {
    border-inline-end: 0;
  }

  .sch-trust-badge .ph {
    font-size: 1.1rem;
  }

  .sch-trust-badge strong {
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .sch-paragraph--faq .sch-paragraph__inner {
    grid-template-columns: 1fr;
  }

  .sch-technology-overview {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sch-process-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sch-faq__list {
    grid-template-columns: 1fr;
  }

  .sch-paragraph--emergency-banner .sch-paragraph__inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .sch-hero__heading,
  .content-wrap .sch-hero__heading,
  .sch-paragraph--hero .field--name-field-heading {
    max-width: 18ch;
    font-size: var(--text-title);
  }

  .sch-paragraph--calculator-promo .sch-paragraph__inner > div:has(img),
  .sch-paragraph--jobs-cta .sch-paragraph__inner > div:has(img) {
    grid-column: auto;
    grid-row: auto;
  }

  .sch-hero__media {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    min-height: 210px;
  }

  .sch-hero__media::before {
    display: block;
    inset: 0 0 auto;
    width: auto;
    height: 70px;
    background: linear-gradient(180deg, oklch(98% 0.006 45 / 45%), oklch(99% 0.004 45 / 0%));
  }

  .sch-hero__controls {
    inset-inline-start: 50%;
    inset-inline-end: auto;
    inset-block-end: 18px;
    transform: translateX(-50%);
  }

  .sch-hero__dot {
    width: 44px;
    height: 44px;
  }

  .sch-hero__dot::before {
    width: 9px;
    height: 9px;
  }

  .sch-hero__dot.is-active::before {
    width: 28px;
  }

  .sch-paragraph--contact-cta .sch-paragraph__inner {
    grid-template-columns: 1fr;
  }

  .sch-paragraph--contact-cta .sch-icon-badge,
  .sch-paragraph--contact-cta .field--name-field-text,
  .sch-paragraph--contact-cta .sch-contact-cta__actions {
    grid-column: auto;
    grid-row: auto;
  }

  .sch-subpage {
    gap: 24px;
  }

  .sch-subpage-hero {
    display: grid;
    min-height: 0;
  }

  .sch-subpage-hero__copy {
    order: 2;
    width: 100%;
    min-height: 0;
    padding: clamp(24px, 7vw, 38px);
    background: var(--panel);
  }

  .content-wrap .sch-subpage-hero__title,
  .sch-subpage-hero__title,
  .sch-subpage--aktuelles .sch-subpage-hero__title {
    max-width: 100%;
    font-size: var(--text-hero);
  }

  .sch-subpage-hero__media {
    position: relative;
    order: 1;
    min-height: clamp(210px, 50vw, 330px);
  }

  .sch-subpage-hero__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 64px;
    background: linear-gradient(180deg, oklch(99% 0.004 45 / 0%), var(--panel));
  }

  .sch-service-hub__grid,
  .sch-news-grid,
  .sch-jobs-overview,
  .sch-contact-layout,
  .sch-contact-details {
    grid-template-columns: 1fr;
  }

  .sch-service-hub__grid > .sch-subpage-card {
    grid-column: auto;
  }

  .sch-subpage-card__copy {
    width: min(70%, 380px);
  }

  .sch-subpage-card img {
    width: 58%;
  }

  .sch-subpage-emergency,
  .sch-subpage-support,
  .sch-job-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .sch-news-tabs {
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-block-end: 4px;
    scrollbar-width: none;
  }

  .sch-news-tabs::-webkit-scrollbar {
    display: none;
  }

  .sch-news-tabs a {
    flex: 0 0 auto;
    min-height: 46px;
    padding-inline: 14px;
  }

  .sch-job-row a {
    margin-block-start: 0;
  }

  .sch-job-benefit {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .sch-job-application > .ph {
    font-size: 10rem;
    opacity: 0.76;
  }

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

  .sch-contact-map {
    min-height: 165px;
  }

  .sch-contact-form {
    padding-inline-start: 0;
    border-inline-start: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer a {
    min-height: 44px;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 11px;
    --wrap: min(100vw - 22px, 1300px);
    --section-gap: 28px;
    --component-gap: 14px;
    --text-hero: 2.35rem;
    --text-display: 2.2rem;
    --text-title: 1.65rem;
    --text-section: 1.22rem;
    --text-card-title: 1rem;
    --text-lead: 1rem;
  }

  .button {
    width: 100%;
  }

  .sch-technology-overview {
    padding-block: 18px;
  }

  .sch-paragraph--product-cards-technology-overview .sch-technology-overview__item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .sch-technology-overview__icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .sch-process-timeline {
    padding-block: 18px;
  }

  .sch-paragraph--service-cards-process-timeline .sch-process-timeline__item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 14px;
  }

  .sch-paragraph--service-cards-process-timeline .sch-process-timeline__item::before {
    inset-inline-start: 35px;
  }

  .sch-process-timeline__marker {
    width: 42px;
    height: 42px;
    font-size: 0.78rem;
  }

  .masthead__cta {
    display: none;
  }

  .sch-icon-card-grid,
  .sch-product-grid,
  .sch-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .sch-testimonial-carousel {
    --sch-testimonial-visible: 1;
  }

  .sch-testimonial-carousel .sch-testimonial {
    flex-basis: 100%;
  }

  .sch-testimonial-carousel__button--prev {
    inset-inline-start: -12px;
  }

  .sch-testimonial-carousel__button--next {
    inset-inline-end: -12px;
  }

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

  .content-wrap h1 {
    font-size: var(--text-display);
  }

  .sch-breadcrumb__item + .sch-breadcrumb__item::before {
    margin-inline: 8px;
  }

  .sch-breadcrumb__item.is-current > span {
    max-width: 48vw;
  }

  .content-wrap .sch-node-hero__title,
  .sch-node-hero__title {
    font-size: var(--text-hero);
  }

  .sch-node--article .sch-node-hero__title,
  .sch-node--job-posting .sch-node-hero__title {
    font-size: var(--text-display);
  }

  .sch-node-hero__summary {
    font-size: 0.96rem;
  }

  .sch-node-hero__meta li {
    font-size: 0.8rem;
  }

  .sch-node-cta .button {
    width: 100%;
  }

  .sch-reference-page {
    gap: 30px;
  }

  .sch-reference-folders__intro {
    padding-inline: 13px;
  }

  .sch-reference-folder {
    grid-template-rows: 190px auto;
  }

  .sch-reference-folder__body {
    padding: 20px;
  }

  .sch-reference-folder__text {
    font-size: 0.96rem;
  }

  .sch-reference-lightbox__top {
    gap: 12px;
  }

  .sch-reference-lightbox__top h2 {
    font-size: 1.2rem;
  }

  .sch-reference-lightbox__close {
    width: 42px;
    height: 42px;
  }

  .sch-reference-lightbox__stage {
    gap: 10px;
  }

  .sch-reference-lightbox__stage img {
    max-height: calc(100vh - 200px);
  }

  .sch-reference-lightbox__stage figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
  }

  .sch-subpage-card {
    min-height: 0;
  }

  .sch-subpage-card::after {
    background: linear-gradient(180deg, var(--panel) 0%, oklch(99% 0.004 45 / 96%) 58%, oklch(99% 0.004 45 / 18%) 100%);
  }

  .sch-subpage-card__copy {
    width: 100%;
    min-height: 210px;
    padding: 22px;
  }

  .sch-subpage-card img {
    position: relative;
    width: 100%;
    height: 170px;
    object-position: center;
  }

  .sch-subpage-emergency,
  .sch-subpage-support,
  .sch-job-application {
    padding: 22px;
  }

  .sch-subpage-emergency .button,
  .sch-subpage-support .button,
  .sch-job-application .button {
    width: 100%;
  }

  .sch-news-card__body {
    min-height: 0;
    padding: 22px;
  }

  .sch-job-row {
    gap: 12px;
    padding: 18px;
  }

  .sch-job-benefits__list {
    gap: 16px;
  }

  .sch-contact-details li,
  .sch-contact-hours > div {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .sch-contact-hours dt {
    grid-column: 1 / -1;
  }

  .sch-contact-hours dd {
    grid-column: 1 / -1;
  }

  .sch-contact-form form,
  .sch-subpage--jobs form {
    grid-template-columns: 1fr;
  }

  .sch-about {
    gap: 30px;
  }

  .sch-about__eyebrow {
    font-size: 0.82rem;
  }

  .sch-about-hero__copy,
  .sch-about-hero__proofs,
  .sch-about-team__copy {
    padding-inline: 24px;
  }

  .sch-about-proof {
    gap: 12px;
  }

  .sch-about-proof > .ph {
    font-size: 1.75rem;
  }

  .sch-about-values__grid {
    grid-template-columns: 1fr;
  }

  .sch-about-value p {
    max-width: 30ch;
  }

  .sch-about-team__media {
    min-height: 230px;
  }

  .sch-team-hero__copy,
  .sch-team-members__intro {
    padding-inline: 13px;
  }

  .sch-team-hero__slideshow {
    min-height: 230px;
  }

  .sch-team-hero__controls {
    inset-inline: 12px;
    inset-block-end: 12px;
  }

  .sch-team-hero__arrow {
    width: 40px;
    height: 40px;
  }

  .sch-team-grid {
    grid-template-columns: 1fr;
  }

  .sch-team-card {
    aspect-ratio: 5 / 6;
  }

  .sch-team-card__overlay {
    min-height: 38%;
  }

  .sch-hero__heading,
  .content-wrap .sch-hero__heading,
  .sch-paragraph--hero .field--name-field-heading {
    font-size: var(--text-title);
  }

  .sch-hero__text {
    font-size: 0.95rem;
  }

  .sch-paragraph--hero .sch-paragraph__inner,
  .sch-hero__slides,
  .sch-hero__slide {
    min-height: 690px;
  }

  .sch-hero__actions .button {
    width: auto;
    min-height: 44px;
    padding-inline: 9px;
    gap: 6px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .sch-hero__actions .button:not(.button--primary) {
    flex-basis: calc(50% - 5px);
  }

  .sch-hero__arrow {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (hover: none) {
  .button:hover,
  .masthead__menu-toggle:hover,
  .primary-nav__close:hover,
  .sch-icon-card:hover,
  .sch-product-card:hover,
  .sch-testimonial:hover,
  .sch-paragraph--service-cards li:hover,
  .sch-paragraph--product-cards li:hover,
  .sch-paragraph--testimonials li:hover,
  .sch-paragraph--faq li:hover,
  .sch-calculator-embed__steps li:hover,
  .sch-subpage-card:hover,
  .sch-subpage-emergency:hover,
  .sch-news-tabs a:hover,
  .sch-news-card:hover,
  .sch-subpage-support:hover,
  .sch-job-row:hover,
  .sch-job-benefit:hover,
  .sch-job-application:hover,
  .sch-contact-details li:hover,
  .sch-contact-map:hover,
  .sch-reference-folder:hover {
    transform: none;
  }

  .sch-product-card:hover img,
  .sch-subpage-card:hover img,
  .sch-news-card:hover .sch-news-card__image img,
  .sch-contact-map:hover .sch-contact-map__pin,
  .sch-reference-folder:hover .sch-reference-folder__media img,
  .sch-team-card:hover,
  .sch-team-card:hover img {
    transform: none;
  }

  .sch-team-card__overlay {
    opacity: 1;
    transform: none;
  }
}

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

  .sch-animate-ready [data-sch-reveal],
  .sch-animate-ready [data-sch-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .sch-animate-ready .sch-node-hero,
  .sch-animate-ready .sch-about-hero,
  .sch-animate-ready .sch-subpage-hero,
  .sch-animate-ready .sch-paragraph--hero,
  .sch-animate-ready .sch-node-hero__copy > *,
  .sch-animate-ready .sch-about-hero__copy > *,
  .sch-animate-ready .sch-subpage-hero__copy > *,
  .sch-animate-ready .sch-hero__slide.is-active .sch-hero__copy > *,
  .sch-animate-ready .sch-node-hero__media img,
  .sch-animate-ready .sch-about-hero__media img,
  .sch-animate-ready .sch-subpage-hero__media img,
  .sch-animate-ready .sch-hero__slide.is-active .sch-hero__media img,
  body.is-mobile-menu-open .primary-nav .menu__item--level-0 {
    animation: none !important;
  }
}
