/*!***********************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/styles.scss ***!
  \***********************************************************************************************************************************************************/
@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: 400;
}

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

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  font: inherit;
  color: inherit;
  line-height: 1;
  cursor: pointer;
}

fieldset {
  border: none;
}

input {
  background-color: transparent;
}

:root {
  --container-max: 1320px;
  --container-pad: 24px;
  --transition-duration: 0.3s;
  /** em: tracks .headline-2 font size — space before following content */
  --headline-2-mb: 0.8em;
}

@media screen and (min-width: 769px) {
  :root {
    --container-pad: 32px;
  }
}
:root {
  --color-main: #381e13;
  --color-accent: #bed01d;
  --color-accent-hover: #a8b81a;
  --section-bg-gray: rgba(208, 211, 206, 0.25);
  --section-bg-gray-on-white: color-mix(in srgb, rgb(208, 211, 206) 25%, #fff);
  --section-bg-white: #fff;
}

.text-main {
  color: var(--color-main);
}

.bg-main {
  background-color: var(--color-main);
}

.text-accent {
  color: var(--color-accent);
}

.bg-accent {
  background-color: var(--color-accent);
}

.text-accent-hover {
  color: var(--color-accent-hover);
}

.bg-accent-hover {
  background-color: var(--color-accent-hover);
}

.text-white {
  color: #fff;
}

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

.headline-3, .headline-2 {
  font-family: "montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-main);
}

.headline-2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .headline-2 {
    hyphens: auto;
  }
}

.headline-3 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.text-label {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-main);
}

.bodytext p:not(:last-child),
.bodytext ul:not(:last-child) {
  margin-bottom: 1.3em;
}
.bodytext li {
  position: relative;
  list-style: none;
  padding-inline-start: 2.03125rem;
}
.bodytext li:not(:last-child) {
  margin-bottom: 0.5em;
}
.bodytext li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.42em;
  width: 0.8125rem;
  height: 0.8125rem;
  background-color: var(--color-accent);
}

@media screen and (min-width: 769px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
}

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

html {
  min-height: 100%;
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  font-family: "avenir-lt-pro", sans-serif;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

main {
  flex-grow: 1;
}

a {
  text-underline-offset: 1px;
  text-decoration-thickness: 1px;
  transition: all var(--transition-duration) ease;
}

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

:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  color: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 32px;
  text-transform: uppercase;
  color: var(--color-main);
  font-weight: 700;
  background-color: var(--color-accent);
}
.button:hover {
  background-color: var(--color-accent-hover);
}

.button--compact {
  padding-inline: 24px;
}

.button--has-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-left: 16px;
  text-align: start;
}

.button__icon {
  display: block;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
}

.button-group {
  display: flex;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  gap: 8px;
}
.button-group .button {
  justify-content: flex-start;
}
@media screen and (max-width: 1200px) {
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  .button-group .button {
    position: relative;
    width: 100%;
    max-width: 450px;
    padding-left: 48px;
  }
  .button-group .button__icon {
    position: absolute;
    left: 16px;
  }
}

:root {
  --form-gap: clamp(8px, 2vw, 24px);
}

.form__row:not(:last-child) {
  margin-bottom: var(--form-gap);
}
@media screen and (min-width: 769px) {
  .form__row--mb-half:not(:last-child) {
    margin-bottom: calc(var(--form-gap) / 2);
  }
}

.form__row {
  display: flex;
  gap: var(--form-gap);
}
@media screen and (max-width: 580px) {
  .form__row {
    flex-direction: column;
  }
}
.form__row > * {
  flex: 1;
}

.form__control--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.8rem;
}

@media screen and (max-width: 768px) {
  .form__control--submit {
    margin-top: 24px;
  }
}

.form__input,
.form__textarea {
  width: 100%;
  border: 1px solid var(--color-main);
  padding: 12px 10px;
  color: var(--color-main);
  font: inherit;
}
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.35);
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.form__textarea {
  resize: none;
}

.form__checkbox {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-top: -1px;
  border: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-color: #d0d3ce;
  border-radius: 0;
}
.form__checkbox::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  background-image: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 9px;
  opacity: 0;
}
.form__checkbox:checked::before {
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 12 10%27%3E%3Cpath fill=%27none%27 stroke=%27%23fff%27 stroke-width=%271.75%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 d=%27M1 5.25 4.2 8.55 11 1.45%27/%3E%3C/svg%3E");
}

.wpcf7-list-item {
  margin: 0;
}
.wpcf7-list-item label {
  display: flex;
  gap: 16px;
}

.wpcf7-not-valid-tip {
  font-size: 0.9rem;
  margin-top: 4px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0 0;
  padding: 12px 16px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background-color: #ffb900;
}

.wpcf7 form.sent .wpcf7-response-output {
  background-color: #46b450;
  color: #fff;
}

.page-logo {
  position: absolute;
  top: 24px;
  z-index: 50;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 175px;
}
@media screen and (min-width: 769px) {
  .page-logo {
    top: 40px;
  }
}

.page-logo__image {
  width: 100%;
  height: auto;
}

.page-section {
  width: 100%;
  padding: clamp(64px, 9vw, 120px) 0;
  box-sizing: border-box;
  --bg-left: var(--section-bg-gray);
  --bg-right: var(--section-bg-white);
  --split-col: 10;
  background: transparent;
}

.page-section--compact {
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-section--bg-split {
  background: var(--section-bg-gray);
}
@media screen and (max-width: 768px) {
  .page-section--bg-split.page-section--bg-split-image {
    position: relative;
    z-index: 0;
    background: var(--bg-left);
  }
  .page-section--bg-split.page-section--bg-split-image::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 65%;
    background-image: var(--section-bg-split-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
  }
  .page-section--bg-split.page-section--bg-split-image > * {
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 769px) {
  .page-section--bg-split {
    --_cw: min(var(--container-max), 100%);
    --_inner: calc(var(--_cw) - 2 * var(--container-pad));
    --_col: calc(var(--_inner) / 10);
    --_margin: calc((100% - var(--_cw)) / 2);
    --_split: calc(
      var(--_margin) + var(--container-pad) + var(--split-col) * var(--_col)
    );
    background: linear-gradient(to right, var(--bg-left) var(--_split), var(--bg-right) var(--_split));
  }
  .page-section--bg-split.page-section--bg-split-image {
    position: relative;
    z-index: 0;
    background-color: var(--section-bg-white);
    background-image: linear-gradient(to right, var(--section-bg-gray-on-white) var(--_split), transparent var(--_split));
  }
  .page-section--bg-split.page-section--bg-split-image::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: var(--_split);
    background-image: var(--section-bg-split-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
  }
  .page-section--bg-split.page-section--bg-split-image > * {
    position: relative;
    z-index: 1;
  }
  .page-section--bg-split.page-section--bg-split-image.page-section--bg-flip {
    background-image: linear-gradient(to right, var(--section-bg-white) var(--_split), transparent var(--_split));
  }
}

.page-section--bg-flip {
  --bg-left: var(--section-bg-white);
  --bg-right: var(--section-bg-gray);
}

@media screen and (max-width: 768px) {
  .page-section--bg-transparent-sm {
    background: transparent;
  }
}

.page-section--bg-solid {
  background: var(--section-bg-white);
}

.page-footer {
  padding-top: clamp(48px, 8vw, 72px);
  padding-bottom: clamp(56px, 10vw, 88px);
}

.page-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(48px, 8vw, 72px);
  border-top: 1.5px solid var(--color-main);
  text-align: center;
}

.page-footer__logo {
  width: clamp(100px, 10vw, 135px);
  height: auto;
  margin-bottom: clamp(48px, 8vw, 64px);
}

.page-footer__menu {
  display: flex;
  max-width: 1155px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 64px;
  justify-content: space-between;
}
@media screen and (max-width: 980px) {
  .page-footer__menu {
    flex-direction: column;
    gap: 16px;
  }
}

.page-footer__text {
  margin-bottom: 56px;
}

.page-footer__images {
  display: flex;
  justify-content: space-between;
  max-width: 570px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-footer__images {
    flex-direction: column;
    max-width: 230px;
    gap: 32px;
  }
}

.page-footer__image {
  height: 48px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .page-footer__image {
    width: 100%;
    height: auto;
  }
}

.container {
  width: 100%;
  max-width: var(--container-max);
  box-sizing: border-box;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--md {
  max-width: var(--container-max-md);
}

.wipe {
  --wipe-width-scale: 1;
  --wipe-duration: 4s;
  --wipe-easing: ease-in-out;
  --wipe-exit-x: -1;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: auto;
  display: flex;
  width: calc(100% * var(--wipe-width-scale, 1));
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .wipe--variant-2,
  .wipe--variant-3,
  .wipe--variant-4 {
    left: auto;
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  .wipe {
    --wipe-width-scale: 1.25;
  }
}
.wipe__stripe {
  position: relative;
  z-index: 1;
  height: 100%;
  transition-property: transform;
  transition-duration: var(--wipe-duration, 4s);
  transition-timing-function: var(--wipe-easing, ease-in-out);
}
@media (prefers-reduced-motion: reduce) {
  .wipe__stripe {
    transition-duration: max(1ms, calc(var(--wipe-duration, 4s) * 0.004));
    transition-timing-function: linear;
  }
}

.wipe--variant-1 .wipe__stripe:nth-child(1) {
  flex: 0 0 27%;
  background-color: #575e28;
}
.wipe--variant-1 .wipe__stripe:nth-child(2) {
  flex: 0 0 12%;
  margin-left: -9.2593%;
  background-color: var(--color-accent);
  opacity: 0.7;
}
.wipe--variant-1 .wipe__stripe:nth-child(3) {
  flex: 0 0 12%;
  background-color: #9cbab0;
}
.wipe--variant-1 .wipe__stripe:nth-child(4) {
  flex: 0 0 22%;
  background-color: rgba(208, 211, 206, 0.8);
  border-right: 1.5vw solid #fff;
}

.wipe--variant-2 {
  --wipe-exit-x: 1;
  justify-content: flex-end;
}

.wipe--variant-2 .wipe__stripe:nth-child(1) {
  flex: 0 0 31.085%;
  background-color: rgba(255, 255, 255, 0.9);
  border-left: 1.5vw solid #9cbab0;
}
.wipe--variant-2 .wipe__stripe:nth-child(2) {
  z-index: 2;
  flex: 0 0 17.857%;
  margin-left: -4.63%;
  background-color: rgba(190, 208, 29, 0.7);
}
.wipe--variant-2 .wipe__stripe:nth-child(3) {
  flex: 0 0 19.841%;
  margin-left: -6.614%;
  background-color: #575e28;
}

.wipe--variant-3 {
  --wipe-exit-x: 1;
  justify-content: flex-end;
}

.wipe--variant-3 .wipe__stripe:nth-child(1) {
  flex: 0 0 6.614%;
  background-color: rgba(190, 208, 29, 0.85);
}
.wipe--variant-3 .wipe__stripe:nth-child(2) {
  flex: 0 0 2.976%;
  background-color: #9cbab0;
}
.wipe--variant-3 .wipe__stripe:nth-child(3) {
  z-index: 3;
  flex: 0 0 30.754%;
  background-color: rgba(255, 255, 255, 0.45);
}
.wipe--variant-3 .wipe__stripe:nth-child(4) {
  flex: 0 0 29.431%;
  margin-left: -9.259%;
  background-color: #575e28;
}

.wipe--variant-4 {
  --wipe-exit-x: 1;
  justify-content: flex-end;
}

.wipe--variant-4 .wipe__stripe:nth-child(1) {
  flex: 0 0 1.654%;
  background-color: #bed01d;
}
.wipe--variant-4 .wipe__stripe:nth-child(2) {
  flex: 0 0 12.234%;
  background-color: rgba(255, 255, 255, 0.55);
}
.wipe--variant-4 .wipe__stripe:nth-child(3) {
  flex: 0 0 8.598%;
  background-color: #9cbab0;
}
.wipe--variant-4 .wipe__stripe:nth-child(4) {
  flex: 0 0 7.937%;
  background-color: rgba(87, 94, 40, 0.65);
}
.wipe--variant-4 .wipe__stripe:nth-child(5) {
  flex: 0 0 11.905%;
  background-color: #fff;
}
.wipe--variant-4 .wipe__stripe:nth-child(6) {
  flex: 0 0 19.841%;
  background-color: #bed01d;
}

.wipe--variant-5 .wipe__stripe:nth-child(1) {
  --wipe-exit-x: 1;
  flex: 0 0 9.921%;
  background-color: #9cbab0;
}
.wipe--variant-5 .wipe__stripe:nth-child(2) {
  --wipe-exit-x: 1;
  flex: 0 0 19.18%;
  background-color: rgba(208, 211, 206, 0.8);
}
.wipe--variant-5 .wipe__stripe:nth-child(3) {
  --wipe-exit-x: 1;
  flex: 0 0 3.307%;
  background-color: #fff;
}
.wipe--variant-5 .wipe__stripe:nth-child(4) {
  --wipe-exit-x: -1;
  flex: 0 0 27.446%;
  background-color: #575e28;
}
.wipe--variant-5 .wipe__stripe:nth-child(5) {
  --wipe-exit-x: -1;
  z-index: 2;
  flex: 0 0 16.534%;
  margin-left: -5.952%;
  background-color: rgba(190, 208, 29, 0.7);
}

.wipe--variant-6 .wipe__stripe:nth-child(1) {
  --wipe-exit-x: 1;
  flex: 0 0 19.841%;
  background-color: rgba(190, 208, 29, 0.7);
}
.wipe--variant-6 .wipe__stripe:nth-child(2) {
  --wipe-exit-x: -1;
  flex: 0 0 2.646%;
  background-color: #9cbab0;
}
.wipe--variant-6 .wipe__stripe:nth-child(3) {
  --wipe-exit-x: -1;
  flex: 0 0 15.212%;
  background-color: #d0d3ce;
}
.wipe--variant-6 .wipe__stripe:nth-child(4) {
  --wipe-exit-x: -1;
  flex: 0 0 1.323%;
  background-color: #fff;
}
.wipe--variant-6 .wipe__stripe:nth-child(5) {
  --wipe-exit-x: 1;
  flex: 0 0 18.189%;
  background-color: #575e28;
}

.wipe--variant-7 .wipe__stripe:nth-child(1) {
  --wipe-exit-x: 1;
  flex: 0 0 16.534%;
  background-color: rgba(156, 186, 176, 0.7);
}
.wipe--variant-7 .wipe__stripe:nth-child(2) {
  --wipe-exit-x: 1;
  flex: 0 0 23.148%;
  background-color: #575e28;
}
.wipe--variant-7 .wipe__stripe:nth-child(3) {
  --wipe-exit-x: -1;
  flex: 0 0 1.653%;
  background-color: rgba(208, 211, 206, 0.9);
}
.wipe--variant-7 .wipe__stripe:nth-child(4) {
  --wipe-exit-x: 1;
  flex: 0 0 10.582%;
  background-color: #fff;
}
.wipe--variant-7 .wipe__stripe:nth-child(5) {
  --wipe-exit-x: -1;
  flex: 0 0 6.944%;
  background-color: #bed01d;
}

.wipe.wipe--revealed .wipe__stripe {
  transform: translate3d(calc((100% + 100vw) * var(--wipe-exit-x, -1)), 0, 0);
}

.page-nav__toggle {
  position: fixed;
  z-index: 50;
  top: 24px;
  right: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--color-main);
}
@media screen and (min-width: 769px) {
  .page-nav__toggle {
    top: 40px;
    right: 40px;
  }
}

.page-nav__toggle-icon {
  display: block;
  width: 28px;
}

.page-nav {
  position: fixed;
  z-index: 100;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 250px;
  height: 100%;
  padding: 40px;
  background-color: #fff;
  color: var(--color-main);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .page-nav {
    padding-top: 24px;
  }
}
.page-nav.page-nav--open {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.page-nav__close {
  width: 21px;
}

.page-nav__menu {
  margin-top: 20vh;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
}
.page-nav__menu li:not(:last-child) {
  margin-bottom: 0.6em;
}
.page-nav__menu li.current-menu-item a, .page-nav__menu li.current-page-ancestor a {
  font-weight: bold;
}
.page-nav__menu li.distance {
  margin-bottom: 1.7em;
}

body.single-flat .flat-menu-item a {
  font-weight: bold;
}

.hero {
  position: relative;
  height: 100vh;
  flex-shrink: 0;
  overflow: hidden;
}

.hero__poster,
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__poster {
  z-index: 1;
}

.hero__poster-image,
.hero__video {
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__poster-image {
  width: 100%;
  height: 100%;
}

.hero__video {
  z-index: 2;
}

.hero--has-poster .hero__video {
  opacity: 0;
  transition: opacity 200ms ease;
}

.hero--video-ready .hero__video {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .hero--has-poster .hero__video {
    opacity: 1;
    transition: none;
  }
  .hero > .wipe {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.intro__headline {
  margin-bottom: var(--headline-2-mb);
}
@media screen and (max-width: 768px) {
  .intro__headline {
    order: -2;
  }
}

.intro__image-wrapper {
  overflow: hidden;
  width: 100%;
}
.intro__image-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .intro__image-wrapper {
    order: -1;
    aspect-ratio: 16/9;
  }
}

.intro__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.intro__content {
  grid-row: 1;
  grid-column: 1/7;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .intro__content {
    display: contents;
  }
}
@media screen and (min-width: 1201px) {
  .intro__content {
    grid-column: 2/7;
  }
}

.intro__body {
  background-color: #fff;
  padding-block: clamp(24px, 3.5vw, 32px);
  padding-inline: clamp(24px, 3.5vw, 48px);
}

.intro__button {
  margin-top: 32px;
}

.intro__image-wrapper {
  position: relative;
  grid-row: 1;
  grid-column: 6/11;
}

.intro__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.intro__logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: auto;
  padding: 0 0 2% 2%;
  background-color: #fff;
}
@media screen and (min-width: 581px) and (max-width: 768px) {
  .intro__logo {
    width: 15%;
  }
}

@media screen and (max-width: 768px) {
  .image-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.image-text__content {
  grid-row: 1;
  grid-column: 1/5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .image-text__content {
    display: contents;
  }
}
@media screen and (min-width: 769px) {
  .image-text__content {
    margin-right: clamp(24px, 3.5vw, 56px);
  }
}

.image-text--image-sm .image-text__content {
  grid-column: 1/6;
}

.image-text--reverse .image-text__content {
  grid-column: 7/10;
}

@media screen and (max-width: 768px) {
  .image-text__headline {
    order: -2;
  }
}
@media screen and (min-width: 769px) {
  .image-text__headline {
    margin-bottom: var(--headline-2-mb);
  }
}

.image-text__subtitle {
  color: var(--color-main);
}

.image-text__button {
  margin-top: 8px;
}
@media screen and (min-width: 769px) {
  .image-text__button {
    margin-top: 48px;
  }
}

.image-text__image-wrapper {
  grid-row: 1;
  grid-column: 5/11;
}
@media screen and (max-width: 768px) {
  .image-text__image-wrapper {
    order: -1;
  }
}

.image-text--image-sm .image-text__image-wrapper {
  grid-column: 6/11;
}

.image-text--reverse .image-text__image-wrapper {
  grid-column: 1/6;
}

.image-text__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner {
  position: relative;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media screen and (min-width: 981px) {
  .banner {
    min-height: 100vh;
    min-height: 100dvh;
  }
}

.banner__container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
@media screen and (max-width: 768px) {
  .banner__container {
    padding-inline: 0;
  }
}

.banner__inner {
  flex: 1 1 auto;
}
@media screen and (max-width: 768px) {
  .banner__inner {
    display: flex;
    flex-direction: column;
  }
}

.banner__content {
  grid-column: 6/11;
  display: grid;
  grid-template-columns: subgrid;
  background-color: rgba(255, 255, 255, 0.8);
  margin-right: -100vw;
  padding-inline-end: 100vw;
}
@media screen and (max-width: 768px) {
  .banner__content {
    flex-grow: 1;
  }
}

.banner--content-slim .banner__content {
  grid-column: 7/11;
}

.banner:has(> .wipe) .banner__content {
  opacity: 0;
  transition: opacity 2s ease-out;
}

.banner:has(> .wipe.wipe--revealed) .banner__content {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .banner:has(> .wipe) .banner__content {
    opacity: 1;
    transition: none;
  }
}
.banner__stack {
  grid-column: 1/6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: clamp(64px, 10vw, 80px);
}
@media screen and (max-width: 768px) {
  .banner__stack {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .banner__stack {
    padding-left: 48px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 1201px) {
  .banner__stack {
    grid-column: 2/5;
  }
}

@media screen and (min-width: 1201px) {
  .banner--stack-padded .banner__stack {
    grid-column: 1/5;
    padding-left: 80px;
  }
}

@media screen and (max-width: 980px) {
  .banner--hero .banner__stack {
    padding-top: 160px;
  }
}

.banner__headline {
  margin-bottom: var(--headline-2-mb);
}

@media screen and (min-width: 769px) {
  .banner--hero .banner__body {
    max-width: 340px;
  }
}

.banner__button {
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .location {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.location__content {
  grid-column: 1/7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: clamp(24px, 4vw, 56px);
}
@media screen and (max-width: 768px) {
  .location__content {
    display: contents;
  }
}

.location__headline {
  margin-bottom: var(--headline-2-mb);
}
@media screen and (max-width: 768px) {
  .location__headline {
    order: -2;
    margin-bottom: 1.5em;
  }
}

.location__intro {
  margin-bottom: 1.5em;
}

.location__map {
  grid-column: 7/11;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .location__map {
    order: -1;
    margin-bottom: 40px;
    max-width: 80vw;
  }
}
@media screen and (min-width: 581px) and (max-width: 768px) {
  .location__map {
    max-width: 70vw;
  }
}
@media screen and (min-width: 1201px) {
  .location__map {
    grid-column: 7/11;
  }
}

.location__map-image {
  width: 100%;
  height: auto;
}

.location__lists {
  display: flex;
  gap: 48px;
  margin-bottom: 2.5em;
}
@media screen and (max-width: 580px) {
  .location__lists {
    flex-direction: column;
    gap: 32px;
  }
}

.location__list-headline {
  margin-bottom: 1.5em;
}

.contact-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-person__headline {
  margin-bottom: 1.5em;
}

.contact-person__image-wrapper {
  max-width: 220px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 40px;
}

.contact-person__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-person__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-main);
}

.contact-person__details {
  margin-bottom: 1.2em;
}

.contact-person__info-list li:last-child {
  margin-top: 1.2em;
}

.contact-person__label {
  margin-right: 4px;
}

.text-section {
  text-align: center;
}

.text-section__headline {
  margin-bottom: var(--headline-2-mb);
}

.text-section__body {
  max-width: 720px;
  margin-inline: auto;
}

.anchor-tooltip {
  --anchor-tooltip-bg: #fff;
  --anchor-tooltip-shadow: 0 3px 6px rgb(0 0 0 / 0.3);
  position: fixed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 0;
  width: min(330px, 100vw - 1rem);
  min-width: 46px;
  padding: 0;
  font: inherit;
  line-height: 0;
  color: inherit;
  background: none;
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 3px, 0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.anchor-tooltip.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .anchor-tooltip {
    transform: none;
    transition: opacity 0.12s ease;
  }
  .anchor-tooltip.is-open {
    transform: none;
  }
}
.anchor-tooltip__body {
  width: 100%;
  border-radius: 6px;
  padding: 12px;
  overflow: hidden;
  line-height: 1.4;
  background: var(--anchor-tooltip-bg);
  box-shadow: var(--anchor-tooltip-shadow);
}
.anchor-tooltip__arrow {
  align-self: center;
  flex-shrink: 0;
  line-height: 0;
  margin-top: -1px;
}
.anchor-tooltip__arrow-img {
  display: block;
  width: 46px;
  height: 28px;
}
.anchor-tooltip__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 8px;
}
.anchor-tooltip__inner--no-padding {
  padding-bottom: 0;
}
.anchor-tooltip__media {
  overflow: hidden;
}
.anchor-tooltip__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.anchor-tooltip__label {
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  font-family: "montserrat", sans-serif;
  text-transform: uppercase;
  color: var(--color-main);
}
.anchor-tooltip__inner:has(.anchor-tooltip__transit) .anchor-tooltip__label {
  text-align: center;
}
.anchor-tooltip__transit {
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 0;
}
.anchor-tooltip__transit-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.map {
  position: relative;
  --anchor-tooltip-gap-to-marker: 8px;
  /* tip → bottom of arrow <img> (invisible art box below the point); needed so “gap” is to the point */
  --anchor-tooltip-arrow-tip-offset: 7px;
}

.map__stack {
  position: relative;
}

.map__stack--mobile,
.map__legend {
  display: none;
}

@media screen and (max-width: 768px) {
  .map__stack--desktop {
    display: none;
  }
  .map__stack--mobile,
  .map__legend {
    display: block;
  }
}
.map__image {
  display: block;
  width: 100%;
  height: auto;
}

.map__markers {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.map__stack--mobile .map__markers {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  pointer-events: none;
}

.map-marker {
  cursor: pointer;
}

.map__legend {
  padding: 32px 0 56px 0;
}

.map__legend-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map__legend-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.icon-section {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
}

.icon-section__content {
  grid-row: 1;
  grid-column: 1/5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .icon-section__content {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 980px) {
  .icon-section__content {
    margin-right: 40px;
  }
}
@media screen and (min-width: 981px) {
  .icon-section__content {
    grid-column: 1/4;
  }
}

.icon-section__headline {
  margin-bottom: var(--headline-2-mb);
}

@media screen and (min-width: 769px) {
  .icon-section__body {
    max-width: 340px;
  }
}

.icon-section__main {
  grid-row: 1;
  grid-column: 5/11;
  background-color: #fff;
  padding-block: clamp(64px, 8vw, 112px);
  padding-inline: 32px;
}
@media screen and (min-width: 981px) {
  .icon-section__main {
    grid-column: 4/11;
    margin-left: 32px;
  }
}

.icon-section__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: clamp(40px, 6vw, 80px);
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (min-width: 581px) {
  .icon-section__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1201px) {
  .icon-section__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1201px) {
  .icon-section__items {
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}

.icon-section__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: clamp(8px, 2.5vw, 32px);
}

.icon-section__icon-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-grow: 1;
}

.icon-section__icon {
  transform: scale(0.7);
}
@media screen and (min-width: 1201px) {
  .icon-section__icon {
    transform: scale(1);
  }
}

.house-plan__inner {
  grid-column: 1/11;
}
@media screen and (min-width: 1201px) {
  .house-plan__inner {
    grid-column: 2/10;
  }
}

.house-plan__headline {
  margin-bottom: 2em;
  text-align: center;
}

.house-plan__image-wrapper {
  --anchor-tooltip-gap-to-marker: 8px;
  --anchor-tooltip-arrow-tip-offset: 7px;
  /* Below sm: marker sits near viewport right edge; JS keeps arrow tip on the circle —
     shift panel left and move arrow right so the tooltip body stays on screen (MVP, single marker). */
  --house-plan-tooltip-shift: 42px;
  position: relative;
}
@media screen and (max-width: 980px) {
  .house-plan__image-wrapper {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .house-plan__image-wrapper {
    margin-top: 150px;
  }
}

.house-plan__image {
  display: block;
  width: 100%;
  height: auto;
}

.house-plan__markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.house-plan__marker {
  cursor: default;
  pointer-events: none;
}

.house-plan-tooltip__inner {
  gap: 0;
  align-items: center;
  text-align: center;
  padding-top: 4px;
}
.house-plan-tooltip__inner .anchor-tooltip__label {
  margin-bottom: 0.1em;
}
.house-plan-tooltip__inner p {
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .house-plan {
    margin-top: 24px;
  }
  #house-plan-tooltip.anchor-tooltip {
    width: min(280px, 100vw - 1rem);
  }
  /* Fixed panel: margin shifts the whole anchored box left without overwriting JS `left`. */
  #house-plan-tooltip.anchor-tooltip.is-open {
    margin-left: calc(-1 * var(--house-plan-tooltip-shift, 42px));
  }
  /* Keep arrow graphic under the marker after the panel shifts. */
  #house-plan-tooltip.anchor-tooltip.is-open .anchor-tooltip__arrow {
    transform: translateX(var(--house-plan-tooltip-shift, 42px));
  }
}
.house-map {
  scroll-margin-top: 32px;
}

.house-map__wrapper {
  position: relative;
  --anchor-tooltip-gap-to-marker: 8px;
  --anchor-tooltip-arrow-tip-offset: 7px;
  --house-map-tooltip-shift: 42px;
}
.house-map__wrapper .house-map__picture {
  display: block;
  width: 100%;
}

.house-map__image {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  vertical-align: top;
}

/* SVG overlays the façade; raster cannot block hit-testing underneath. */
.house-map__markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.house-map__frame {
  pointer-events: none;
}

.house-map__unit {
  pointer-events: auto;
}

.house-map__hit {
  cursor: pointer;
  outline: none;
}

.house-map__canvas {
  fill: #c2cd48;
  opacity: 0;
  isolation: isolate;
  transition: opacity 0.15s ease;
}

@media screen and (min-width: 769px) {
  .house-map__hit:focus-visible .house-map__canvas {
    opacity: 0.55;
  }
}
/* Hover highlight only above SM where primary input hovers (`hover: none` touch devices excluded). */
@media screen and (min-width: 769px) and (hover: hover) {
  .house-map__unit:hover .house-map__canvas {
    opacity: 0.5;
  }
}
/* Compact copy under map headline label (reuse .anchor-tooltip__label typography). */
.house-map-tooltip__inner {
  align-items: center;
  gap: 0;
  text-align: center;
}
.house-map-tooltip__inner .anchor-tooltip__label {
  margin-bottom: 0;
}

#house-map-tooltip.anchor-tooltip {
  width: min(270px, 100vw - 1rem);
}

@media screen and (max-width: 768px) {
  /* Same idea as Haus page: arrow stays under hotspot when viewport is tight. */
  #house-map-tooltip.anchor-tooltip.is-open {
    margin-left: calc(-1 * var(--house-map-tooltip-shift, 42px));
  }
  #house-map-tooltip.anchor-tooltip.is-open .anchor-tooltip__arrow {
    transform: translateX(var(--house-map-tooltip-shift, 42px));
  }
}
.apartment-list {
  width: 100%;
  border-collapse: collapse;
}
.apartment-list th,
.apartment-list td {
  padding: 12px;
}
@media screen and (min-width: 1201px) {
  .apartment-list th:first-child,
  .apartment-list td:first-child {
    padding-left: 64px;
  }
  .apartment-list th:last-child,
  .apartment-list td:last-child {
    padding-right: 64px;
  }
}
.apartment-list th {
  background-color: var(--color-main);
  color: #fff;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 980px) {
  .apartment-list th {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .apartment-list td {
    display: flex;
    flex-direction: column;
  }
  .apartment-list td:not(.apartment-list__cell--unit) {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.apartment-list tr:not(:last-child) td {
  border-bottom: 1px solid var(--color-main);
}
.apartment-list th:nth-child(1) {
  width: 23%;
}
.apartment-list th:nth-child(2) {
  width: 17%;
}
.apartment-list th:nth-child(3) {
  width: 18%;
}
.apartment-list th:nth-child(4) {
  width: 13%;
}
.apartment-list th:nth-child(5) {
  width: 15%;
}
.apartment-list th:nth-child(6) {
  width: 10%;
}
.apartment-list .apartment-list__row--highlighted td {
  background-color: #dce38c;
}
.apartment-list tr[data-href] {
  cursor: pointer;
}
.apartment-list tr[data-href]:hover td {
  background-color: color-mix(in srgb, var(--color-main) 8%, #fff);
}
.apartment-list tr.apartment-list__row--highlighted[data-href]:hover td {
  background-color: color-mix(in srgb, var(--color-main) 8%, #dce38c);
}
.apartment-list tr[data-href]:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}
.apartment-list .apartment-list__unit-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
}
.apartment-list .apartment-list__unit-text {
  flex: 1;
  min-width: 0;
}
.apartment-list .apartment-list__unit-chevron {
  flex-shrink: 0;
}
@media screen and (min-width: 981px) {
  .apartment-list .apartment-list__unit-chevron {
    display: none;
  }
}

@media screen and (max-width: 980px) {
  .apartment-list__cell--unit {
    background-color: var(--color-main) !important;
    color: #fff !important;
    font-weight: bold;
    border-bottom: none !important;
  }
  .apartment-list__cell--price {
    display: none !important;
  }
}
.flat {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  flex-grow: 1;
  padding-block: 0;
}

.flat__content {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .flat__content {
    display: flex;
    flex-direction: column;
  }
}

.flat__floor-plan {
  grid-column: 1/7;
  display: flex;
  padding: 40px 24px;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .flat__floor-plan {
    height: 100vh;
    padding: 40px;
    align-items: center;
  }
}

.flat__floor-plan-main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 0;
  align-items: center;
}

.flat__actions {
  display: flex;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .flat__actions {
    flex-direction: column;
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 769px) {
  .flat__actions {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    margin-bottom: 72px;
  }
}

.flat__back-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

@media screen and (max-width: 768px) {
  .flat__back-link--above-main {
    display: none;
  }
}

.flat__back-link--below-main {
  margin-top: 48px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .flat__back-link--below-main {
    display: none;
  }
}

.flat__back-link-icon {
  margin-top: -1px;
  transition: transform var(--transition-duration) ease;
}

.flat__back-link:hover .flat__back-link-icon {
  transform: translateX(-3px);
}

.flat__floor-plan-image {
  display: block;
  width: 100%;
  max-width: 80%;
  height: auto;
}
@media screen and (min-width: 1201px) {
  .flat__floor-plan-image {
    max-width: 50%;
    align-self: center;
    width: auto;
    max-width: 90%;
    flex: 1 1 0;
    min-height: 0;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (min-width: 1401px) {
  .flat__floor-plan-image {
    max-width: 60%;
  }
}

.flat__contact-button {
  margin-top: 48px;
}

.flat__details {
  grid-column: 7/11;
  padding: 40px 24px;
  background-color: var(--section-bg-gray);
}
@media screen and (max-width: 768px) {
  .flat__details {
    order: -1;
  }
}
@media screen and (min-width: 1401px) {
  .flat__details {
    padding: 40px;
  }
}

.flat__details-inner {
  max-width: 460px;
  margin: 0 auto;
}

.flat__logo {
  display: block;
  width: 185px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 48px;
}

.flat__logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.flat__headline {
  text-align: center;
  margin-bottom: 32px;
}

.flat__plans-block {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 100%;
  max-width: 700px;
}

.flat__plans {
  display: flex;
  width: 100%;
  gap: 12px;
}
@media screen and (min-width: 769px) {
  .flat__plans {
    gap: 32px;
  }
}

.flat__plan-compass-wrapper {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
  margin-bottom: 24px;
}

.flat__plan-compass {
  width: 55px;
  height: auto;
}
@media screen and (max-width: 980px) {
  .flat__plan-compass {
    transform: translateY(16px);
  }
}
@media screen and (min-width: 769px) {
  .flat__plan-compass {
    width: 80px;
  }
}

.flat__plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-style: italic;
  font-size: 0.8rem;
  min-width: 0;
}
.flat__plan.flat__plan-top {
  flex: 45 1 0;
}
.flat__plan.flat__plan-front {
  flex: 60 1 0;
}

.flat__plan-image-title {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  margin-bottom: 8px;
  bottom: 100%;
}

.flat__plan-image-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.flat__plan-image {
  display: block;
  width: 100%;
  height: auto;
}

.flat__plan-image-caption-subtitle {
  margin-bottom: 0.5em;
  font-size: 0.7rem;
  font-style: normal;
}

.flat__table {
  width: 100%;
  border-collapse: collapse;
}
.flat__table th,
.flat__table td {
  padding: 8px;
}
@media screen and (min-width: 769px) {
  .flat__table th,
  .flat__table td {
    padding: 8px 0;
  }
  .flat__table th:first-child,
  .flat__table td:first-child {
    padding-left: 16px;
  }
  .flat__table th:last-child,
  .flat__table td:last-child {
    padding-right: 16px;
  }
}
.flat__table tr:not(:last-child) th,
.flat__table tr:not(:last-child) td {
  border-bottom: 1px solid var(--color-main);
}
.flat__table tbody tr:has(+ .flat__table-price-row) th,
.flat__table tbody tr:has(+ .flat__table-price-row) td {
  border-bottom: none;
}
.flat__table th {
  font-weight: inherit;
  text-align: left;
  vertical-align: top;
}
.flat__table th.flat__table-th--total {
  font-weight: bold;
}
.flat__table td {
  font-weight: bold;
  color: var(--color-main);
  text-align: right;
}
.flat__table .flat__area-multi {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.flat__table .flat__area-multi-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -moz-column-gap: 0.4em;
       column-gap: 0.4em;
  row-gap: 0;
}
@media screen and (max-width: 1200px) {
  .flat__table .flat__area-multi-line {
    flex-direction: column;
  }
}
.flat__table .flat__area-multi-label {
  font-weight: normal;
}
.flat__table .flat__table-price-row th,
.flat__table .flat__table-price-row td {
  background-color: #beccba;
}

.about-section {
  margin-block: clamp(0px, 8vw, 80px);
}

.about-section__header {
  grid-row: 1;
  grid-column: 1/6;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .about-section__header {
    padding-right: 32px;
  }
}

.about-section__content {
  grid-row: 1;
  grid-column: 6/11;
}

@media screen and (max-width: 768px) {
  .about-section__headline {
    margin-bottom: 32px;
  }
  .about-section__headline br {
    display: none;
  }
}

.about-section__logo-wrapper {
  max-width: clamp(340px, 35vw, 460px);
  margin: 0 auto;
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  .about-section__logo-wrapper {
    margin-top: -80px;
    margin-bottom: 40px;
  }
}

.about-section__logo {
  display: block;
  width: 100%;
  height: auto;
}

.about-section__body {
  background-color: #fff;
  padding: clamp(24px, 3.5vw, 32px);
}
@media screen and (min-width: 769px) {
  .about-section__body {
    padding-right: 0;
  }
}

.reference-item {
  background-color: #f4f4f3;
}

.reference-item__image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
}

.reference-item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reference-item__content {
  padding: clamp(16px, 2.5vw, 24px);
}

.reference-item__headline {
  margin-bottom: 1em;
  font-weight: bold;
  text-transform: uppercase;
}

.reference-item__meta {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.reference-item__meta strong {
  text-transform: uppercase;
}

.references__headline {
  text-align: center;
  margin-bottom: 1.5em;
}

.references__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
@media screen and (min-width: 581px) {
  .references__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 769px) {
  .references__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1201px) {
  .references__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-page {
  display: flex;
  flex-direction: column;
  padding-top: 180px;
  padding-bottom: 100px;
  flex-grow: 1;
}
@media screen and (min-width: 769px) {
  .contact-page {
    min-height: 100vh;
    padding-top: 200px;
  }
}
.contact-page .container {
  margin-top: auto;
  margin-bottom: auto;
}

.contact-page__aside {
  grid-column: 1/6;
}
@media screen and (min-width: 769px) {
  .contact-page__aside {
    padding-right: 56px;
  }
}
@media screen and (min-width: 1201px) {
  .contact-page__aside {
    grid-column: 2/6;
  }
}

.contact-page__main {
  grid-column: 6/11;
}
@media screen and (min-width: 1201px) {
  .contact-page__main {
    grid-column: 6/10;
    max-width: 530px;
  }
}

.contact-page__headline {
  margin-bottom: 0.2em;
}

.contact-page__items {
  display: flex;
  margin-top: 32px;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .contact-page__items {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 769px) {
  .contact-page__items {
    margin-top: 56px;
  }
}

.contact-page__item {
  display: flex;
  gap: 24px;
}
.contact-page__item a {
  text-decoration-line: underline;
}
.contact-page__item a:hover {
  text-decoration: none;
}
@media screen and (min-width: 981px) {
  .contact-page__item {
    gap: 40px;
  }
}

.contact-page__icon {
  color: var(--color-accent);
}

.page-template-contact .page-footer {
  padding-top: 0;
}

.legal-page {
  margin-top: clamp(180px, 17vw, 220px);
}

.legal-page__section:not(:last-child) {
  margin-bottom: 32px;
}

.legal-page__headline {
  grid-column: 2/10;
  margin-bottom: 1.2em;
}

.legal-page__section-headline {
  grid-column: 2/4;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .legal-page__section-headline {
    margin-bottom: 1em;
  }
}

.legal-page__section-body {
  grid-column: 4/11;
  flex: 1;
}
@media screen and (min-width: 769px) {
  .legal-page__section-body {
    padding-left: 56px;
  }
}
@media screen and (min-width: 1201px) {
  .legal-page__section-body {
    grid-column: 4/10;
  }
}
.legal-page__section-body a {
  text-decoration-line: underline;
}
.legal-page__section-body a:hover {
  text-decoration: none;
}
.legal-page__section-body h3 {
  font-weight: bold;
}

.page-404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50vh;
}
@media screen and (min-width: 769px) {
  .page-404 {
    min-height: 30vh;
  }
}

.page-404__headline {
  margin-bottom: 56px;
}

.page-404__content a {
  text-decoration-line: underline;
}
.page-404__content a:hover {
  color: var(--color-accent);
}

/*# sourceMappingURL=bundle-v1.css.map*/