*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--font-medium);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.grid,
.container {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), minmax(0, 1fr));
  column-gap: var(--grid-gutter);
  align-items: start;
  width: 100%;
  padding-inline: var(--grid-margin);
}

.site-content,
.site-menu__inner,
.site-footer > .grid {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}

article.container > * {
  grid-column: 1 / -1;
}

.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-12,
.span-all {
  grid-column: 1 / -1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  font-weight: var(--font-medium);
}

.eyebrow::before {
  content: "";
  width: var(--dot);
  height: var(--dot);
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.eyebrow--semibold {
  font-weight: var(--font-semibold);
}

.skip-link {
  position: absolute;
  left: var(--grid-margin);
  top: 8px;
  z-index: calc(var(--z-menu) + 2);
  padding: 8px 16px;
  background: var(--color-white);
  color: var(--color-black);
  border: var(--border) solid currentColor;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border: var(--border) solid currentColor;
  border-radius: var(--radius-pill);
  font-weight: var(--font-medium);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.btn--semibold {
  font-weight: var(--font-semibold);
}

.link-line {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 2px;
}

.link-line--rest {
  background-size: 100% 1px;
  transition:
    background-size 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0s linear 0.35s;
}

.link-line--rest:hover,
a:hover > .link-line--rest {
  background-size: 0 1px;
  background-position: 100% 100%;
  transition: background-size 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-position 0s;
}

.link-line--in {
  background-size: 0 1px;
  transition: background-size 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.link-line--in:hover {
  background-size: 100% 1px;
}

.angebot-card span,
.home-refs__card span,
.refs-featured__caption span,
.refs-list__title span {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition:
    background-size 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0s linear 0.35s;
}

.site-footer .is-underline,
.contact-hero__links a {
  width: fit-content;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 2px;
  transition:
    background-size 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0s linear 0.35s;
}

.angebot-card:hover span,
.home-refs__card:hover span,
.refs-featured__card:hover .refs-featured__caption span,
.refs-list__row:hover .refs-list__title span,
.site-footer .is-underline:hover,
.contact-hero__links a:hover {
  background-size: 0 1px;
  background-position: 100% 100%;
  transition: background-size 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-position 0s;
}

.site-footer a:not(.btn):not(.is-underline),
.site-menu__contact a,
.back-link {
  width: fit-content;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  padding-bottom: 2px;
  transition: background-size 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer a:not(.btn):not(.is-underline):hover,
.site-menu__contact a:hover,
.site-menu__contact a:active,
.back-link:hover {
  background-size: 100% 1px;
}

@media (prefers-reduced-motion: reduce) {
  .angebot-card span,
  .home-refs__card span,
  .refs-featured__caption span,
  .refs-list__title span,
  .site-footer a,
  .site-menu,
  .site-menu-toggle span,
  .site-menu__nav a,
  .site-menu__portfolio a,
  .site-menu__contact a,
  .back-link,
  .contact-hero__links a,
  .legal__body a {
    transition: none;
  }
}

.has-motion .site-header,
.has-motion .home-hero__title span,
.has-motion .home-hero__text,
.has-motion .home-hero__image,
.has-motion .hero > .back-link,
.has-motion .hero > .eyebrow,
.has-motion .hero > .hero-title,
.has-motion .hero > .hero__text,
.has-motion .refs-overview__intro > *,
.has-motion .about-hero .eyebrow,
.has-motion .about-hero__text,
.has-motion .contact-hero .eyebrow,
.has-motion .contact-hero__links a,
.has-motion .legal__title,
.has-motion .legal__body > *,
.has-motion .ref-hero > * {
  opacity: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 36px;
  padding-inline: var(--grid-margin);
}

body.is-menu-open .site-header {
  z-index: calc(var(--z-menu) + 1);
  pointer-events: none;
}

body.is-menu-open .site-logo,
body.is-menu-open .site-menu-toggle {
  pointer-events: auto;
}

.site-logo img {
  width: 220px;
  height: auto;
}

.site-menu-toggle {
  --toggle-w: 60px;
  --toggle-h: 15px;
  position: relative;
  width: var(--toggle-w);
  height: var(--toggle-h);
  pointer-events: auto;
}

.site-menu-toggle::before {
  content: "";
  position: absolute;
  inset: -18px -10px;
}

.site-menu-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-menu-toggle span:first-child {
  top: 0;
}

.site-menu-toggle span:last-child {
  bottom: 0;
}

body.is-menu-open .site-menu-toggle span:first-child {
  transform: translateY(calc((var(--toggle-h) - 1.5px) / 2)) rotate(14.04deg);
}

body.is-menu-open .site-menu-toggle span:last-child {
  transform: translateY(calc((var(--toggle-h) - 1.5px) / -2)) rotate(-14.04deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  display: flex;
  flex-direction: column;
  background: var(--color-brand);
  color: var(--color-black);
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-menu__inner {
  flex-shrink: 0;
  margin-block: auto;
  padding-top: 140px;
  padding-bottom: 140px;
}

.site-menu__label {
  grid-column: 1 / 7;
  grid-row: 1;
  margin: 0 0 20px;
  font-size: var(--text-label);
  line-height: var(--leading-label);
}

.site-menu__label--portfolio {
  grid-column: 7 / 13;
  grid-row: 1;
}

.site-menu__label-mobile {
  display: none;
}

.site-menu__nav {
  grid-column: 1 / 7;
  grid-row: 2;
}

.site-menu__nav a {
  display: block;
  font-size: var(--text-display);
  font-weight: var(--font-semibold);
  line-height: 1.25;
}

.site-menu__nav a:hover,
.site-menu__nav a:active,
.site-menu__nav a[aria-current="page"] {
  font-weight: var(--font-extrabold);
}

.site-menu__aside {
  grid-column: 7 / 13;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 0;
}

.site-menu__portfolio {
  font-size: var(--text-lede);
  line-height: var(--leading-lede);
}

.site-menu__portfolio a {
  display: block;
  font-weight: var(--font-medium);
}

.site-menu__portfolio a:hover,
.site-menu__portfolio a:active,
.site-menu__portfolio a[aria-current="page"] {
  font-weight: var(--font-bold);
}

.site-menu__contact {
  display: flex;
  gap: 52px;
  margin: auto 0 0;
  font-size: var(--text-label);
  line-height: var(--leading-label);
}

.hero {
  min-height: 0;
  padding-top: 280px;
  padding-bottom: 80px;
}

.hero--brand {
  position: relative;
  background: var(--color-brand);
}

.hero .eyebrow,
.hero .back-link,
.hero-title {
  grid-column: 1 / 7;
}

.hero-title {
  margin: 0.35em 0 0.4em;
  font-size: var(--text-display);
  font-weight: var(--font-semibold);
  line-height: var(--leading-display);
}

.hero__text {
  grid-column: 7 / 13;
  margin: 0;
}

.hero--stacked {
  padding-top: 288px;
  padding-bottom: 0;
}

.hero--stacked .eyebrow,
.hero--stacked .hero-title,
.hero--stacked .hero__text {
  grid-column: 2 / 8;
}

.hero--stacked .hero-title {
  margin: 20px 0;
  line-height: 1.25;
}

.hero--stacked + .home-angebot {
  padding-top: 200px;
}

.legal {
  padding-top: 280px;
  padding-bottom: 160px;
  align-items: start;
}

.legal__title {
  grid-column: 1 / -1;
  margin: 0 0 40px;
  font-size: var(--text-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-heading);
}

.legal__body {
  grid-column: 1 / -1;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.legal__body > *:first-child {
  margin-top: 0;
}

.legal__body h2,
.legal__body h3 {
  margin: 2em 0 0.5em;
  font-size: var(--text-lede);
  font-weight: var(--font-semibold);
  line-height: var(--leading-lede);
}

.legal__body p,
.legal__body ul,
.legal__body ol {
  margin: 0 0 1em;
}

.legal__body ul,
.legal__body ol {
  padding-left: 1.25em;
}

.legal__body li + li {
  margin-top: 0.35em;
}

.legal__body a {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  padding-bottom: 2px;
  transition: background-size 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.legal__body a:hover {
  background-size: 100% 1px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-label);
  margin: 0 0 50px;
}

.ref-hero {
  padding-top: 280px;
  padding-bottom: 24px;
  align-items: start;
}

.ref-hero .back-link {
  grid-column: 1 / -1;
  margin: 0 0 50px;
}

.ref-hero__title {
  grid-column: 1 / -1;
  margin: 0 0 60px;
  color: var(--color-brand);
  font-size: var(--text-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-heading);
}

.ref-hero__intro {
  grid-column: 1 / 9;
  margin: 0;
  font-size: var(--text-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-heading);
}

.ref-hero__services {
  grid-column: 10 / 13;
  margin: 24px 0 0;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.ref-hero__services-label {
  margin: 0 0 24px;
}

.ref-hero__services ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ref-gallery {
  padding-top: 24px;
  padding-bottom: 96px;
  row-gap: 24px;
}

.ref-gallery__item {
  margin: 0;
}

.ref-gallery__item img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.ref-gallery__item:nth-child(7n + 1),
.ref-gallery__item:nth-child(7n) {
  grid-column: 1 / -1;
}

.ref-gallery__item:nth-child(7n + 1) img,
.ref-gallery__item:nth-child(7n) img {
  aspect-ratio: 1440 / 734;
}

.ref-gallery__item:nth-child(7n + 2) {
  grid-column: 1 / 5;
}

.ref-gallery__item:nth-child(7n + 3) {
  grid-column: 5 / 9;
}

.ref-gallery__item:nth-child(7n + 4),
.ref-gallery__item:nth-child(7n + 6) {
  grid-column: 9 / 13;
}

.ref-gallery__item:nth-child(7n + 5) {
  grid-column: 1 / 9;
}

.ref-gallery__item:nth-child(7n + 2) img,
.ref-gallery__item:nth-child(7n + 3) img,
.ref-gallery__item:nth-child(7n + 4) img,
.ref-gallery__item:nth-child(7n + 6) img {
  aspect-ratio: 464 / 579;
}

.ref-gallery__item:nth-child(7n + 5) img {
  aspect-ratio: 952 / 579;
}

.gallery {
  padding-top: 200px;
  padding-bottom: 96px;
}

.gallery__item {
  width: 100%;
  min-width: 0;
  align-self: start;
  object-fit: cover;
}

.gallery__item--1 {
  grid-column: 1 / 4;
  grid-row: 1;
  aspect-ratio: 342 / 591;
}

.gallery__item--2 {
  grid-column: 7 / 13;
  grid-row: 1;
  aspect-ratio: 708 / 416;
}

.gallery__item--3 {
  grid-column: 4 / 7;
  grid-row: 1;
  margin-top: calc(100% * 285 / 342);
  aspect-ratio: 342 / 591;
}

.highlights {
  padding-top: 48px;
  padding-bottom: 96px;
}

.highlights .eyebrow {
  grid-column: 1 / -1;
}

.highlights__list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.highlights__item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  padding: 30px 0;
  border-top: var(--border) solid var(--color-black);
}

.highlights__item:last-child {
  border-bottom: var(--border) solid var(--color-black);
}

.highlights__head {
  grid-column: 1 / 7;
  display: grid;
  grid-template-columns: subgrid;
  align-items: start;
  text-align: left;
  pointer-events: none;
}

.highlights__num {
  grid-column: 1 / 4;
}

.highlights__title {
  grid-column: 4 / 7;
  font-weight: var(--font-medium);
}

.highlights__icon {
  display: none;
  width: 13px;
  height: 13px;
  margin-top: 5px;
  justify-self: end;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.highlights__item.is-open .highlights__icon {
  transform: rotate(45deg);
}

.highlights__body {
  grid-column: 7 / 13;
  margin: 0;
}

.refs-overview {
  padding-top: 288px;
  padding-bottom: 200px;
  align-items: start;
}

.refs-overview__intro {
  grid-column: 2 / 8;
  grid-row: 1;
  padding-bottom: 80px;
}

.refs-overview .eyebrow {
  margin-bottom: 0;
}

.refs-overview .hero-title {
  margin: 20px 0;
  line-height: 1.25;
}

.refs-overview .hero__text {
  max-width: 36.625rem;
}

.refs-featured__card {
  display: block;
}

.refs-featured__caption {
  display: block;
}

.refs-featured__card img,
.refs-featured__placeholder {
  display: block;
  width: 100%;
  object-fit: cover;
  background: var(--color-muted);
  margin-bottom: 20px;
}

.refs-featured__card--1 img,
.refs-featured__card--1 .refs-featured__placeholder,
.refs-featured__card--4 img,
.refs-featured__card--4 .refs-featured__placeholder {
  aspect-ratio: 464 / 570;
}

.refs-featured__card--2 img,
.refs-featured__card--2 .refs-featured__placeholder,
.refs-featured__card--3 img,
.refs-featured__card--3 .refs-featured__placeholder {
  aspect-ratio: 586 / 410;
}

.refs-featured__card--1 {
  position: relative;
  grid-column: 8 / 12;
  grid-row: 1;
}

.refs-featured__card--1 img,
.refs-featured__card--1 .refs-featured__placeholder {
  margin-bottom: 0;
}

.refs-featured__card--1 .refs-featured__caption {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 20px;
}

.refs-featured__card--2 {
  grid-column: 1 / 6;
  grid-row: 2;
}

.refs-featured__card--3 {
  grid-column: 8 / 13;
  grid-row: 2;
  margin-top: calc(100% * 410 / 586 / 2);
}

.refs-featured__card--4 {
  grid-column: 3 / 7;
  grid-row: 2;
  margin-top: calc(100% * 410 / 464 * 1.5);
}

.refs-list {
  padding-top: 0;
  padding-bottom: 0;
}

.refs-list__heading {
  grid-column: 1 / 8;
  margin: 0 0 30px;
  font-size: var(--text-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-heading);
}

.refs-list__row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--grid-gutter);
  align-items: start;
  padding: 30px 0;
  border-top: var(--border) solid var(--color-black);
}

.refs-list__row:last-child {
  border-bottom: var(--border) solid var(--color-black);
}

.refs-list__title {
  grid-column: 1 / 4;
}

.refs-list__meta {
  grid-column: 4 / 9;
}

.refs-list__arrow {
  grid-column: 9 / 10;
  width: 18px;
  height: auto;
  margin-top: 5px;
  justify-self: start;
}

.refs-list + .cta {
  padding-top: 200px;
  padding-bottom: 200px;
}

.cta {
  padding-top: 80px;
  padding-bottom: 96px;
}

body.home .cta {
  padding-top: 200px;
  padding-bottom: 200px;
}

.cta__title {
  grid-column: 4 / 10;
  margin: 0 0 32px;
  font-size: var(--text-heading);
  font-weight: var(--font-bold);
  line-height: var(--leading-heading);
}

.cta__title p {
  margin: 0;
}

.cta__title p:last-child {
  font-weight: var(--font-medium);
}

.cta__actions {
  grid-column: 4 / 10;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--color-brand);
  padding-top: 100px;
  padding-bottom: 36px;
}

.site-footer h2 {
  margin: 0 0 30px;
  font-size: var(--text-body);
  font-weight: var(--font-bold);
}

.site-footer p,
.site-footer a,
.site-footer li {
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.site-footer p {
  margin: 0;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__col {
  grid-column: span 3;
}

.site-footer__col .btn {
  margin-top: 30px;
}

.site-footer .site-footer__note {
  margin-top: 30px;
}

.site-footer__bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  margin-top: 120px;
  font-size: var(--text-caption);
  line-height: var(--leading-caption);
}

.site-footer__bottom span {
  grid-column: 1 / 4;
}

.site-footer__bottom a:nth-of-type(1) {
  grid-column: 7 / 9;
}

.site-footer__bottom a:nth-of-type(2) {
  grid-column: 9 / 11;
}

.home-hero {
  padding-top: 324px;
  padding-bottom: 0;
}

.home-hero__title {
  grid-column: 2 / 5;
  margin: 0;
  font-size: var(--text-display);
  line-height: var(--leading-display);
}

.home-hero__title span {
  display: block;
}

.home-hero__title .is-light {
  font-weight: var(--font-light);
}

.home-hero__title .is-medium {
  font-weight: var(--font-medium);
}

.home-hero__title .is-bold {
  font-weight: var(--font-bold);
}

.home-hero__text {
  grid-column: 6 / 12;
  align-self: end;
  margin: 0;
}

.home-hero__image {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 1440 / 734;
  object-fit: cover;
  margin-top: 36px;
}

.home-intro {
  padding-top: 36px;
}

.home-intro .eyebrow {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: 26px;
}

.home-intro__left {
  grid-column: 1 / 6;
  grid-row: 2;
  margin: 0;
  font-size: var(--text-lede);
  line-height: var(--leading-lede);
  text-align: justify;
}

.home-intro__right {
  grid-column: 7 / 13;
  grid-row: 2;
  margin: 306px 0 0;
  font-size: var(--text-lede);
  line-height: var(--leading-lede);
  text-align: justify;
}

.home-angebot {
  padding-top: 48px;
  padding-bottom: 80px;
}

body.home .home-angebot {
  padding-top: 242px;
  padding-bottom: 0;
}

.home-angebot .eyebrow {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: 36px;
}

.angebot-slider,
.home-refs-slider {
  display: contents;
}

.angebot-card {
  grid-row: 2;
}

.angebot-card img,
.angebot-card__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--color-muted);
  margin-bottom: 10px;
}

.angebot-card--1 {
  grid-column: 1 / 4;
}

.angebot-card--2 {
  grid-column: 7 / 10;
}

.angebot-card--3 {
  grid-column: 10 / 13;
}

.angebot-card--4 {
  grid-column: 4 / 7;
  margin-top: calc(100% + 72px);
}

.angebot-card--5 {
  grid-column: 10 / 13;
  margin-top: calc(100% + 72px);
}

.angebot-card--6 {
  grid-column: 1 / 4;
  margin-top: calc(200% + 144px);
}

.home-about {
  padding-top: 226px;
  align-items: center;
}

.home-about__copy {
  grid-column: 1 / 6;
}

.home-about__heading {
  margin: 0 0 30px;
  font-size: var(--text-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-heading);
}

.home-about__text {
  margin: 0 0 30px;
}

.home-about__figure {
  grid-column: 7 / 13;
  margin: 0;
}

.home-about__figure img {
  width: 100%;
  aspect-ratio: 708 / 490;
  object-fit: cover;
}

.home-about__figure figcaption {
  margin-top: 10px;
  font-size: var(--text-label);
  line-height: 1.25rem;
}

.home-refs {
  padding-top: 48px;
  padding-bottom: 80px;
}

body.home .home-refs {
  padding-top: 220px;
  padding-bottom: 0;
}

.home-refs .eyebrow {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: 36px;
}

.home-refs__card {
  grid-row: 2;
}

.home-refs__card img,
.home-refs__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 342 / 550;
  object-fit: cover;
  background: var(--color-muted);
  margin-bottom: 10px;
}

.home-refs__card--1 {
  grid-column: 1 / 4;
}

.home-refs__card--2 {
  grid-column: 4 / 7;
  margin-top: 250px;
}

.home-refs__card--3 {
  grid-column: 7 / 10;
}

.home-refs__card--4 {
  grid-column: 10 / 13;
  margin-top: 250px;
}

.hero--brand::before,
.about-hero::before,
.about-history::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--color-brand);
  pointer-events: none;
}

.hero--brand > *,
.about-hero > *,
.about-history > * {
  position: relative;
}

.about-hero,
.about-history {
  position: relative;
  background: var(--color-brand);
}

.about-hero {
  padding-top: 368px;
  padding-bottom: 50px;
}

.about-hero .eyebrow,
.about-hero__text {
  grid-column: 1 / 12;
}

.about-hero__text {
  margin: 20px 0 0;
  font-size: var(--text-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-heading);
}

.about-hero-image {
  padding-top: 36px;
}

.about-hero-image img {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 1440 / 734;
  object-fit: cover;
}

.about-philosophy {
  padding-top: 36px;
}

.about-philosophy .eyebrow {
  grid-column: 1 / -1;
}

.about-philosophy__left,
.about-philosophy__right {
  margin: 0;
  font-size: var(--text-lede);
  line-height: var(--leading-lede);
  text-align: justify;
}

.about-philosophy__left {
  grid-column: 1 / 6;
  margin-top: 36px;
}

.about-philosophy__right {
  grid-column: 7 / 13;
  margin-top: calc(36px + 100% * 306 / 708);
}

.about-gallery {
  padding-top: 168px;
}

.about-gallery__item {
  width: 100%;
  min-width: 0;
  align-self: start;
  object-fit: cover;
}

.about-gallery__item--1 {
  grid-column: 1 / 4;
  grid-row: 1;
  aspect-ratio: 342 / 591;
}

.about-gallery__item--2 {
  grid-column: 7 / 13;
  grid-row: 1;
  aspect-ratio: 708 / 416;
}

.about-gallery__item--3 {
  grid-column: 4 / 7;
  grid-row: 1;
  margin-top: calc(100% * 285 / 342);
  aspect-ratio: 342 / 591;
}

.about-family {
  padding-top: 200px;
  padding-bottom: 150px;
}

.about-family .eyebrow {
  grid-column: 1 / 4;
}

.about-family__text {
  grid-column: 4 / 13;
  margin: 0;
  font-size: var(--text-lede);
  line-height: var(--leading-lede);
  text-align: justify;
}

.about-person {
  margin-top: 68px;
}

.about-person--1 {
  grid-column: 4 / 7;
}

.about-person--2 {
  grid-column: 7 / 10;
}

.about-person--3 {
  grid-column: 10 / 13;
}

.about-person img {
  width: 100%;
  aspect-ratio: 342 / 426;
  object-fit: cover;
}

.about-person__name {
  margin: 20px 0 0;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.about-person__contact {
  margin: 15px 0 0;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.about-person__contact a {
  display: block;
}

.about-history {
  padding-top: 150px;
  padding-bottom: 109px;
}

.about-history .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 30px;
}

.about-history__item {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: start;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: var(--border) solid var(--color-black);
}

.about-history__item:last-child {
  border-bottom: var(--border) solid var(--color-black);
}

.about-history__head {
  grid-column: 1 / 7;
  display: grid;
  grid-template-columns: subgrid;
  align-items: start;
  text-align: left;
  pointer-events: none;
}

.about-history__year {
  grid-column: 1 / 4;
}

.about-history__title {
  grid-column: 4 / 7;
}

.about-history__icon {
  display: none;
  width: 13px;
  height: 13px;
  margin-top: 6px;
  justify-self: end;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-history__item.is-open .about-history__icon {
  transform: rotate(45deg);
}

.about-history__body {
  grid-column: 7 / 13;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

body.page-ueber-uns .site-footer {
  padding-top: 125px;
}

body.single-angebot,
body.page-ueber-uns {
  overflow-x: clip;
}

body.page-kontakt {
  background: var(--color-brand);
  overflow-x: clip;
}

.contact-hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 80vh;
}

.contact-hero .eyebrow,
.contact-hero__links {
  grid-column: 1 / 12;
}

.contact-hero__links {
  margin: 20px 0 0;
}

.contact-hero__links a {
  display: block;
  font-size: var(--text-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-heading);
}

body.page-kontakt .about-family {
  padding-top: 200px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  a,
  button {
    -webkit-user-select: none;
    user-select: none;
  }

  .site-logo img {
    width: 163px;
  }

  .site-menu-toggle {
    --toggle-w: 40px;
    --toggle-h: 10px;
  }

  .site-header {
    padding-top: 24px;
  }

  .site-menu__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .site-menu__label-desktop {
    display: none;
  }

  .site-menu__label-mobile {
    display: inline;
  }

  .site-menu__label,
  .site-menu__label--portfolio,
  .site-menu__nav,
  .site-menu__aside,
  .site-menu__portfolio,
  .site-menu__contact,
  .cta__title,
  .cta__actions,
  .site-footer__col,
  .site-footer__bottom,
  .site-footer__bottom span,
  .site-footer__bottom a,
  .home-hero__title,
  .home-hero__text,
  .home-intro__left,
  .home-intro__right,
  .home-about__copy,
  .home-about__figure,
  .hero .eyebrow,
  .hero .back-link,
  .hero-title,
  .hero__text,
  .legal__title,
  .legal__body {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 0;
  }

  .site-menu__nav a {
    font-size: 2.5rem;
  }

  .site-menu__label--portfolio {
    margin-top: 50px;
    margin-bottom: 10px;
  }

  .site-menu__contact {
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
  }

  .home-hero {
    padding-top: 262px;
  }

  .home-hero__text {
    margin: 50px 0 35px;
  }

  .home-hero__image {
    width: calc(100% + var(--grid-margin) * 2);
    max-width: none;
    margin-inline: calc(var(--grid-margin) * -1);
    margin-top: 0;
    aspect-ratio: 390 / 233;
  }

  .home-intro {
    padding-top: 30px;
  }

  .home-intro .eyebrow {
    margin-bottom: 20px;
  }

  .home-intro__right {
    margin-top: 30px;
  }

  .home-angebot {
    padding-top: 48px;
    padding-bottom: 0;
    row-gap: 30px;
  }

  body.home .home-angebot {
    padding-top: 104px;
    padding-bottom: 0;
  }

  .home-angebot .eyebrow {
    margin-bottom: 0;
  }

  .angebot-slider,
  .home-refs-slider {
    display: flex;
    grid-column: 1 / -1;
    gap: var(--grid-gutter);
    width: calc(100% + var(--grid-margin));
    margin-right: calc(var(--grid-margin) * -1);
    padding-right: var(--grid-margin);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .angebot-slider::-webkit-scrollbar,
  .home-refs-slider::-webkit-scrollbar {
    display: none;
  }

  .angebot-slider .angebot-card,
  .home-refs-slider .home-refs__card {
    flex: 0 0 calc(
      (((100vw - (var(--grid-margin) * 2) - (var(--grid-gutter) * 5)) / 6) * 5)
      + (var(--grid-gutter) * 4)
    );
    width: auto;
    min-width: 0;
    max-width: none;
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
    scroll-snap-align: start;
  }

  .angebot-slider .angebot-card img,
  .angebot-slider .angebot-card__placeholder,
  .home-refs-slider .home-refs__card img,
  .home-refs-slider .home-refs__placeholder {
    width: 100%;
    max-width: 100%;
  }

  .angebot-card {
    grid-row: auto;
  }

  .angebot-card--1,
  .angebot-card--3,
  .angebot-card--5 {
    grid-column: 1 / 4;
    margin-top: 0;
  }

  .angebot-card--2,
  .angebot-card--4,
  .angebot-card--6 {
    grid-column: 4 / 7;
    margin-top: 0;
  }

  .home-about {
    padding-top: 80px;
  }

  .home-about__heading {
    margin-bottom: 20px;
  }

  .home-about__text {
    margin-bottom: 20px;
  }

  .home-about__figure {
    margin-top: 30px;
  }

  .home-about__figure img {
    aspect-ratio: 342 / 237;
  }

  .refs-overview {
    padding-top: 258px;
    padding-bottom: 80px;
    row-gap: 0;
  }

  .refs-overview .eyebrow,
  .refs-overview .hero-title,
  .refs-overview .hero__text,
  .refs-overview__intro,
  .refs-featured__card {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 0;
  }

  .refs-overview__intro {
    padding-bottom: 0;
  }

  .refs-overview .hero__text {
    max-width: none;
  }

  .refs-overview .hero-title {
    margin: 10px 0;
  }

  .refs-featured__card {
    margin-top: 60px;
  }

  .refs-featured__card--1 {
    position: static;
  }

  .refs-featured__card--1 .refs-featured__caption {
    position: static;
    right: auto;
    margin-top: 0;
  }

  .refs-featured__card--1 img,
  .refs-featured__card--1 .refs-featured__placeholder {
    margin-bottom: 20px;
  }

  .refs-featured__card--1 img,
  .refs-featured__card--1 .refs-featured__placeholder,
  .refs-featured__card--4 img,
  .refs-featured__card--4 .refs-featured__placeholder {
    aspect-ratio: 342 / 421;
  }

  .refs-featured__card--2 img,
  .refs-featured__card--2 .refs-featured__placeholder,
  .refs-featured__card--3 img,
  .refs-featured__card--3 .refs-featured__placeholder {
    aspect-ratio: 342 / 239;
  }

  .refs-list__heading {
    grid-column: 1 / -1;
    margin-bottom: 50px;
  }

  .refs-list__row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding: 20px var(--grid-margin);
    margin-inline: calc(var(--grid-margin) * -1);
    width: calc(100% + var(--grid-margin) * 2);
    align-items: start;
  }

  .refs-list__title {
    grid-column: 1 / 4;
  }

  .refs-list__meta {
    grid-column: 4 / 6;
  }

  .refs-list__arrow {
    grid-column: 6 / 7;
    width: 12px;
    margin-top: 6px;
    justify-self: end;
  }

  .refs-list + .cta,
  body.home .cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .home-refs {
    padding-top: 48px;
    padding-bottom: 0;
    row-gap: 20px;
  }

  body.home .home-refs {
    padding-top: 80px;
    padding-bottom: 0;
  }

  .home-refs .eyebrow {
    margin-bottom: 0;
  }

  .home-refs__card {
    grid-row: auto;
  }

  .home-refs__card--1,
  .home-refs__card--3 {
    grid-column: 1 / 4;
    margin-top: 0;
  }

  .home-refs__card--2,
  .home-refs__card--4 {
    grid-column: 4 / 7;
    margin-top: 0;
  }

  .home-refs__card img,
  .home-refs__placeholder {
    aspect-ratio: 282 / 454;
  }

  .cta,
  body.home .cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cta__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-footer {
    padding-top: 30px;
    padding-bottom: 22px;
  }

  .site-footer h2 {
    margin-bottom: 10px;
  }

  .site-footer__col {
    margin-bottom: 30px;
  }

  .site-footer__col:nth-child(4) {
    margin-bottom: 0;
  }

  .site-footer__col .btn {
    margin-top: 10px;
  }

  .site-footer .site-footer__note {
    margin-top: 10px;
  }

  .site-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 80px;
    font-size: var(--text-body);
    line-height: var(--leading-body);
  }

  .hero {
    padding-top: 180px;
    padding-bottom: 64px;
  }

  .hero--brand {
    padding-top: 258px;
    padding-bottom: 30px;
  }

  .hero--brand .back-link {
    margin-bottom: 60px;
  }

  .hero--brand .hero-title {
    margin: 20px 0;
    font-size: var(--text-heading);
    line-height: 1.75rem;
  }

  .hero--stacked {
    padding-top: 258px;
    padding-bottom: 0;
  }

  .hero--stacked .eyebrow,
  .hero--stacked .hero-title,
  .hero--stacked .hero__text {
    grid-column: 1 / -1;
  }

  .hero--stacked .hero-title {
    margin: 10px 0;
    line-height: 1.25;
  }

  .hero--stacked + .home-angebot {
    padding-top: 100px;
  }

  .legal {
    padding-top: 180px;
    padding-bottom: 80px;
  }

  .legal__title {
    margin-bottom: 24px;
  }

  .ref-hero {
    padding-top: 258px;
    padding-bottom: 0;
  }

  .ref-hero .back-link {
    margin-bottom: 60px;
  }

  .ref-hero__title,
  .ref-hero__intro,
  .ref-hero__services {
    grid-column: 1 / -1;
  }

  .ref-hero__title {
    margin-bottom: 16px;
  }

  .ref-hero__intro {
    margin-bottom: 30px;
    font-size: var(--text-body);
    font-weight: var(--font-medium);
    line-height: var(--leading-body);
  }

  .ref-hero__services {
    margin: 0 0 30px;
  }

  .ref-hero__services-label {
    margin-bottom: 10px;
  }

  .ref-gallery {
    padding-top: 0;
    padding-bottom: 80px;
    row-gap: 16px;
  }

  .ref-gallery__item:nth-child(7n + 1),
  .ref-gallery__item:nth-child(7n + 4),
  .ref-gallery__item:nth-child(7n + 5),
  .ref-gallery__item:nth-child(7n + 6),
  .ref-gallery__item:nth-child(7n) {
    grid-column: 1 / -1;
  }

  .ref-gallery__item:nth-child(7n + 2) {
    grid-column: 1 / 4;
  }

  .ref-gallery__item:nth-child(7n + 3) {
    grid-column: 4 / 7;
  }

  .ref-gallery__item:nth-child(7n + 1) img,
  .ref-gallery__item:nth-child(7n) img {
    aspect-ratio: 342 / 174;
  }

  .ref-gallery__item:nth-child(7n + 2) img,
  .ref-gallery__item:nth-child(7n + 3) img {
    aspect-ratio: 163 / 204;
  }

  .ref-gallery__item:nth-child(7n + 4) img,
  .ref-gallery__item:nth-child(7n + 5) img,
  .ref-gallery__item:nth-child(7n + 6) img {
    aspect-ratio: 342 / 428;
  }

  .gallery {
    padding-top: 30px;
    padding-bottom: 100px;
  }

  .gallery__item--1 {
    grid-column: 1 / 4;
    grid-row: 1;
    aspect-ratio: 163 / 244;
  }

  .gallery__item--3 {
    grid-column: 4 / 7;
    grid-row: 1;
    margin-top: calc(100% * 48 / 163);
    aspect-ratio: 163 / 244;
  }

  .gallery__item--2 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 16px;
    aspect-ratio: 708 / 416;
  }

  .hero--brand + .highlights {
    padding-top: 100px;
  }

  .highlights {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .highlights .eyebrow {
    margin-bottom: 20px;
  }

  .highlights__list {
    margin-top: 0;
  }

  .highlights__item {
    padding: 20px var(--grid-margin);
    margin-inline: calc(var(--grid-margin) * -1);
    width: calc(100% + var(--grid-margin) * 2);
  }

  .highlights__head {
    grid-column: 1 / -1;
    pointer-events: auto;
    cursor: pointer;
  }

  .highlights__num {
    grid-column: 1 / 2;
  }

  .highlights__title {
    grid-column: 2 / 6;
  }

  .highlights__icon {
    display: block;
    grid-column: 6 / 7;
  }

  .highlights__body {
    grid-column: 1 / -1;
    overflow: hidden;
  }

  .highlights__copy {
    padding-top: 16px;
  }

  .has-motion .highlights__item:not(.is-open) .highlights__body {
    height: 0;
    opacity: 0;
  }

  html:not(.has-motion) .highlights__item:not(.is-open) .highlights__body {
    display: none;
  }

  .about-hero {
    padding-top: 258px;
    padding-bottom: 30px;
  }

  .about-hero .eyebrow,
  .about-hero__text {
    grid-column: 1 / -1;
  }

  .about-hero__text {
    margin-top: 26px;
    line-height: 1.75rem;
  }

  .about-hero-image {
    padding-top: 30px;
  }

  .about-hero-image img {
    aspect-ratio: 342 / 174;
  }

  .about-philosophy {
    padding-top: 30px;
  }

  .about-philosophy__left,
  .about-philosophy__right {
    grid-column: 1 / -1;
    margin-top: 20px;
  }

  .about-philosophy__right {
    margin-top: 30px;
  }

  .about-gallery {
    padding-top: 25px;
  }

  .about-gallery__item--1 {
    grid-column: 1 / 4;
    grid-row: 1;
    aspect-ratio: 163 / 244;
  }

  .about-gallery__item--3 {
    grid-column: 4 / 7;
    grid-row: 1;
    margin-top: calc(100% * 48 / 163);
    aspect-ratio: 163 / 244;
  }

  .about-gallery__item--2 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 16px;
    aspect-ratio: 708 / 416;
  }

  .about-family {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about-family .eyebrow,
  .about-family__text,
  .about-person {
    grid-column: 1 / -1;
  }

  .about-family__text {
    margin-top: 20px;
  }

  .about-person {
    display: grid;
    grid-template-columns: subgrid;
    margin-top: 48px;
  }

  .about-person--1 {
    margin-top: 48px;
  }

  .about-person img {
    grid-column: 1 / -1;
  }

  .about-person__meta {
    display: contents;
  }

  .about-person__name {
    grid-column: 1 / 3;
    margin-top: 20px;
  }

  .about-person__contact {
    grid-column: 3 / 7;
    margin-top: 20px;
  }

  .about-history {
    padding-top: 90px;
    padding-bottom: 48px;
  }

  .about-history > .grid {
    padding-inline: 0;
  }

  .about-history .eyebrow {
    margin-bottom: 24px;
    padding-inline: var(--grid-margin);
  }

  .about-history__item {
    padding: 20px var(--grid-margin);
  }

  .about-history__head {
    grid-column: 1 / -1;
    pointer-events: auto;
    cursor: pointer;
  }

  .about-history__year {
    grid-column: 1 / 2;
  }

  .about-history__title {
    grid-column: 2 / 6;
  }

  .about-history__icon {
    display: block;
    grid-column: 6 / 7;
  }

  .about-history__body {
    grid-column: 1 / -1;
    overflow: hidden;
  }

  .about-history__copy {
    padding-top: 16px;
  }

  .has-motion .about-history__item:not(.is-open) .about-history__body {
    height: 0;
    opacity: 0;
  }

  html:not(.has-motion) .about-history__item:not(.is-open) .about-history__body {
    display: none;
  }

  body.page-ueber-uns .site-footer {
    padding-top: 48px;
  }

  .contact-hero {
    display: block;
    min-height: 0;
    padding-top: 258px;
  }

  .contact-hero .eyebrow,
  .contact-hero__links {
    grid-column: 1 / -1;
  }

  .contact-hero__links {
    margin-top: 26px;
  }

  .contact-hero__links a {
    line-height: 1.75rem;
  }

  body.page-kontakt .about-family {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
