@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  width: 100%;
  height: auto;
}

figure {
  line-height: 0;
}

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Kirby Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: calc(var(--unit) * 1);
}

.grid > .column {
  grid-column: span var(--span);
}

.top-default {
  padding-top: calc(var(--unit));
}

.top-medium {
  padding-top: calc(var(--unit) * 3 - 8px);
}

.top-large {
  padding-top: calc(var(--unit) * 5 - 8px);
}

.top-huge {
  padding-top: clamp(300px, 50vh, 700px);
}

@media screen and (min-width: 65rem) {
  .grid {
    --gutter: calc(var(--unit) * 2);
    grid-template-columns: repeat(12, 1fr);
    grid-gap: var(--unit);
  }
}
/* Animations */
.is-inX {
  animation: wordIn var(--dur) ease-out both;
}

.is-outX {
  animation: wordOut var(--dur) ease-in both;
}

@keyframes wordIn {
  from {
    opacity: 0;
    transform: translateY(0.5em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes wordOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-0.5em);
  }
}
@keyframes klick {
  0% {
    margin-left: 0;
  }
  5% {
    margin-left: 10px;
  }
  10% {
    margin-left: 0;
  }
  15% {
    margin-left: 6px;
  }
  20% {
    margin-left: 0;
  }
  100% {
    margin-left: 0;
  }
}
/* Nav Controls */
.nav-controls {
  --toggle-width: 145px;
  --toggle-height: 72px;
  --nav-gap: calc(var(--unit) * 0.5);
  position: fixed;
  bottom: calc(var(--unit) * 2);
  right: calc(var(--unit) * 2);
  transform: none;
  display: flex;
  gap: var(--nav-gap);
  align-items: stretch;
  z-index: 30;
}

/* Menu Button bleibt so lang wie vorher */
.menu-button {
  position: static;
  width: calc(100vw - var(--unit) * 4);
  max-width: var(--box-width);
  flex: 0 0 auto;
  padding: var(--unit);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--b-radius);
  background: var(--c-neon);
  color: var(--c-black);
  line-height: 1.1;
  cursor: pointer;
}

.menu-button .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.menu-button.open .arrow {
  transform: rotate(180deg);
}

/* BW Toggle */
.bw-toggle {
  width: var(--toggle-width);
  height: var(--toggle-height);
  flex: 0 0 var(--toggle-width);
  display: block;
  position: relative;
  cursor: pointer;
}
.bw-toggle::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 18px);
  transform: translateX(-50%);
  background: var(--c-blue);
  color: #fff;
  padding: calc(var(--unit) * 0.7) calc(var(--unit) * 1.2);
  border-radius: var(--b-radius);
  font-size: calc(var(--font-size-base) * 0.75);
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 60;
}
.bw-toggle::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) rotate(45deg);
  width: 22px;
  height: 22px;
  background: var(--c-blue);
  opacity: 0;
  pointer-events: none;
  z-index: 59;
  border-radius: 4px;
}
.bw-toggle:hover::after, .bw-toggle:hover::before {
  opacity: 1;
}

.bw-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.bw-toggle__slider {
  position: absolute;
  inset: 0;
  background: #2b5756;
  border-radius: 999px;
  transition: background 0.25s ease;
}

.bw-toggle__slider::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  left: 8px;
  top: 8px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.bw-toggle input:checked + .bw-toggle__slider::before {
  transform: translateX(73px);
}

body.bw .bw-toggle__slider {
  filter: none;
  background: #111;
}

/* Menu */
.menu {
  --toggle-width: 145px;
  --nav-gap: calc(var(--unit) * 0.5);
  position: fixed;
  bottom: calc(var(--unit) * 2);
  /* wichtig: Menü endet vor Toggle */
  right: calc(var(--unit) * 2);
  width: calc(100vw - var(--unit) * 4);
  max-width: var(--box-width);
  padding: var(--unit);
  padding-bottom: calc(var(--unit) * 7);
  color: var(--c-black);
  pointer-events: none;
  z-index: 20;
}

/* nur die Fläche animiert */
.menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-neon);
  border-radius: var(--b-radius);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

/* Inhalt */
.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.08s ease, transform 0.08s ease;
}

.menu li {
  margin: 0;
}

.menu a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.menu a:hover {
  opacity: 0.5;
}

.menu p {
  margin: 0;
  font-size: calc(var(--font-size-base) * 2.7);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Open State */
.menu.open {
  pointer-events: auto;
}

.menu.open::before {
  transform: scaleY(1);
}

.menu.open ul {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
  transition-delay: 0.16s;
}

/* Mobile */
@media (max-width: 65rem) {
  .nav-controls {
    --toggle-width: 96px;
    --toggle-height: 50px;
    --nav-gap: calc(var(--unit) * 0.4);
    left: var(--unit);
    right: var(--unit);
    bottom: var(--unit);
    width: auto;
    max-width: none;
    justify-content: center;
    align-items: stretch;
  }
  .menu-button {
    width: auto;
    max-width: none;
    flex: 1 1 auto;
    min-height: var(--toggle-height);
    padding: calc(var(--unit) * 0.6) var(--unit);
    box-sizing: border-box;
  }
  .bw-toggle {
    width: var(--toggle-width);
    height: var(--toggle-height);
    flex: 0 0 var(--toggle-width);
  }
  .bw-toggle__slider::before {
    width: 38px;
    height: 38px;
    left: 6px;
    top: 6px;
  }
  .bw-toggle input:checked + .bw-toggle__slider::before {
    transform: translateX(46px);
  }
  .menu {
    left: var(--unit);
    right: var(--unit);
    bottom: var(--unit);
    width: auto;
    max-width: none;
    padding: var(--unit);
    box-sizing: border-box;
    margin-left: calc(96px + var(--unit) * 0.4);
  }
  .menu.open ul {
    padding-bottom: calc(var(--unit) * 8);
  }
  .menu p {
    font-size: clamp(2rem, 8vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.035em;
  }
}
body.bw .nav-controls {
  filter: none;
}
body.bw .nav-controls .menu-button {
  background: var(--c-black);
  color: var(--c-main);
}

.bw .menu::before {
  background: black !important;
}

.bw .menu {
  color: #fff !important;
}

body.bw .bw-toggle::after {
  display: none;
}

body.bw .bw-toggle::before {
  display: none;
}

.stat-carousel .splide__slide {
  width: 35rem;
}

.stat-card {
  width: 35rem;
  height: 26rem;
  border-radius: 6px;
  padding: var(--unit);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden;
}

.stat-card__number {
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.1;
  font-family: var(--font-headline);
  cursor: default;
}

.stat-card__bottom {
  display: flex;
  flex-direction: column;
}

.stat-card__line {
  width: 100%;
  border-top: 2px dotted currentColor;
  opacity: 0.75;
  margin-bottom: 1.1rem;
}

.stat-card__text {
  margin: 0;
  line-height: 1.3;
}

.stat-card__source {
  opacity: 0.35;
  line-height: 1.3;
}

.stat-card--grey {
  background: #d8d8d8;
  color: #000;
}

.stat-card--white {
  background: #fff;
  color: #000;
}

.stat-card--turquoise {
  background: var(--c-green);
  color: #fff;
}

.stat-card--pink {
  background: var(--c-pink);
  color: #fff;
}

@media (max-width: 65rem) {
  .stat-carousel .splide__slide {
    width: 23rem;
  }
  .stat-card {
    width: 23rem;
    height: 20rem;
  }
  .stat-card__number {
    font-size: clamp(4.5rem, 22vw, 7rem);
  }
}
@font-face {
  font-family: "Matter-Medium";
  src: url(../fonts/Matter-Medium.woff2) format("woff2");
}
@font-face {
  font-family: "Matter-Regular";
  src: url(../fonts/Matter-Regular.woff2) format("woff2");
}
:root {
  --unit: 20px;
  --font-size-base: 18px;
  --font: 'Matter-Medium', Arial, Helvetica, sans-serif;
  --font-headline: 'Matter-Regular', Arial, Helvetica, sans-serif;
  --c-main: #ffffff;
  --c-black: #000000;
  --c-green: #215251;
  --c-blue: #23326d;
  --c-neon: #e9fc8b;
  --c-pink: #ee4f92;
  --c-lightgrey: #F1F1F1;
  --b-radius: 8px;
  --dur: 450ms;
  --box-width: 450px;
}

body {
  font-family: var(--font);
  font-size: var(--font-size-base);
  line-height: 1;
  color: var(--c-main);
  background-color: var(--c-lightgrey);
}

@media screen and (max-width: 65rem) {
  :root {
    --font-size-base: 16px;
  }
}
/* BW Mode */
body.bw {
  --c-green: #555555;
  --c-blue: #333333;
  --c-pink: #777777;
  --c-neon: #e6e6e6;
}

body.bw.modal-open {
  filter: none;
}

/* Wichtig: Kein filter auf main.
   Sonst wird position: fixed vom Modal an main gekoppelt. */
body.bw {
  min-height: 100vh;
  position: relative;
}
body.bw .btn a,
body.bw .btn button {
  background-color: var(--c-black);
  color: var(--c-main);
}
body.bw .headline {
  display: none;
}
body.bw .m-headline {
  display: block;
  font-size: clamp(3rem, 13vw, 100rem);
}
body.bw .slider::before {
  animation: klick 4s ease-in-out infinite;
}
body.bw img,
body.bw video,
body.bw picture,
body.bw canvas,
body.bw svg {
  filter: grayscale(1);
}
body.bw .modal,
body.bw .modal * {
  filter: none;
}

body.bw .modal {
  filter: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  max-height: none;
  -webkit-backdrop-filter: grayscale(100%) blur(15px);
  backdrop-filter: grayscale(100%) blur(15px);
}

.site-title {
  line-height: 1;
  position: absolute;
  top: calc(var(--unit) * 2);
  left: calc(var(--unit) * 2);
  z-index: 10;
}

@media screen and (max-width: 65rem) {
  .site-title {
    top: calc(var(--unit) * 1);
    left: calc(var(--unit) * 1);
    z-index: 10;
  }
}
.welcome {
  padding: calc(var(--unit) * 2);
  min-height: 100vh;
  min-width: 100vw;
  position: relative;
}
.welcome .fullscreen-video-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.welcome .fullscreen-video-container video {
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}

.box {
  position: absolute;
  top: calc(var(--unit) * 2);
  right: calc(var(--unit) * 2);
  display: block;
  width: 100%;
  max-width: var(--box-width);
  padding: var(--unit);
  background-color: var(--c-main);
  color: var(--c-green);
  border-radius: var(--b-radius);
  z-index: 10;
}
.box .about {
  margin-bottom: 1em;
}
.box .bb {
  border-bottom: 2px dotted var(--c-green);
}
.box .btn {
  margin-top: 0;
  margin-bottom: 0;
}
.box .btn span:after {
  content: "→";
  margin-left: 0.35em;
  transition: margin-left 0.3s ease;
}
.box .btn span:hover {
  background-color: var(--c-black);
  color: var(--c-main);
}
.box .btn span:hover:after {
  margin-left: 0.85em;
}

.wrapper-true {
  padding: 0 var(--unit);
}

.top-default {
  padding-top: calc(var(--unit) * 1);
}

.top-medium {
  padding-top: calc(var(--unit) * 3);
}

.top-large {
  padding-top: calc(var(--unit) * 6);
}

.top-huge {
  padding-top: calc(var(--unit) * 12);
}

.bb {
  padding-bottom: 1em;
}

.pt {
  padding-top: 1em;
}

.bb {
  border-bottom: 2px dotted var(--c-green);
}

.legal {
  display: flex;
  gap: 10px;
  font-family: var(--font);
  font-size: var(--font-size-base);
}

/* Typo */
h1, h2, h3, h4, h5 {
  padding-bottom: 1em;
}

p {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}

.s-default {
  font-size: calc(var(--font-size-base) * 2.7);
}

.s-small {
  font-size: var(--font-size-base);
}

.s-medium {
  font-size: calc(var(--font-size-base) * 1.85);
}

figcaption {
  display: none;
}

@media screen and (max-width: 65rem) {
  .top-huge {
    padding-top: calc(var(--unit) * 8);
  }
  .s-default {
    font-size: calc(var(--font-size-base) * 1.8);
  }
  .s-medium {
    font-size: calc(var(--font-size-base) * 1.5);
  }
  figcaption {
    display: none;
  }
}
/* Switch */
.logo-ani {
  display: flex;
  align-items: center;
  position: absolute;
  left: calc(var(--unit) * 2);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-family: var(--font-headline);
}
.logo-ani .words {
  padding-left: 5px;
}

@media screen and (max-width: 65rem) {
  .logo-ani {
    margin-top: 70px;
  }
}
.switch {
  --switch-width: clamp(3rem, 20vw, 100rem);
  --switch-height: calc(var(--switch-width) / 2);
  position: relative;
  display: inline-block;
  width: var(--switch-width);
  height: var(--switch-height);
}
.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: 0.3s;
  border-radius: 999px;
}

.slider::before {
  content: "";
  position: absolute;
  height: calc(var(--switch-height) - 22%);
  width: calc(var(--switch-height) - 11%);
  left: 6%;
  bottom: 11%;
  background: white;
  transition: transform 0.3s;
  border-radius: 50%;
}

input:checked + .slider::before {
  transform: translateX(calc(var(--switch-width) - var(--switch-height) - 1%));
}

.headline {
  font-size: clamp(3rem, 13vw, 100rem);
  letter-spacing: -0.02em;
}

.m-headline {
  display: none;
}

.swap {
  display: inline-flex;
  align-items: center;
  height: var(--switch-height);
  overflow: hidden;
  margin-left: -5px;
}

.swap > span {
  display: inline-block;
  will-change: transform, opacity;
}

@media screen and (max-width: 65rem) {
  body.bw {
    min-height: 100dvh;
  }
  body.bw .m-headline {
    font-size: clamp(3rem, 43vw, 100rem);
  }
  .f-large {
    font-size: calc(var(--font-size-base) * 1.2);
    line-height: 1.2;
  }
  .welcome {
    padding: var(--unit);
    min-height: 100dvh;
    min-width: 100dvw;
  }
  .welcome .fullscreen-video-container {
    height: calc(100dvh + 100px);
    width: 100dvw;
  }
  .box {
    top: auto;
    right: auto;
    bottom: calc(var(--unit) * 4.6);
    width: calc(100vw - var(--unit) * 2);
    max-width: 100%;
  }
  .switch {
    --switch-width: 62vw;
    --switch-height: calc(var(--switch-width) / 2);
  }
  .logo-ani {
    display: flex;
    align-items: center;
    left: var(--unit);
    top: var(--unit);
    transform: translateY(0);
  }
  .headline {
    display: none;
  }
  .m-headline {
    display: block;
    font-size: clamp(3rem, 43vw, 100rem);
  }
}
/* UI */
.link {
  display: flex;
  justify-content: center;
}

.btn {
  margin-top: 2em;
  margin-bottom: 2em;
}
.btn a,
.btn .open-modal {
  display: inline-block;
  min-width: 290px;
  background-color: var(--c-neon);
  color: var(--c-black);
  font-size: var(--font-size-base);
  text-align: center;
  padding: 33px var(--unit);
  border-radius: var(--b-radius);
  transition: all 0.3s ease;
  border: none;
}
.btn a span,
.btn .open-modal span {
  font-family: var(--font);
}
.btn a span:after,
.btn .open-modal span:after {
  content: "→";
  margin-left: 0.35em;
  transition: margin-left 0.3s ease;
}
.btn a:hover,
.btn .open-modal:hover {
  background-color: var(--c-black);
  color: var(--c-main);
  cursor: pointer;
}
.btn a:hover span:after,
.btn .open-modal:hover span:after {
  margin-left: 0.85em;
}

.c-green {
  color: var(--c-green);
}

.c-blue {
  color: var(--c-blue);
}

.c-pink {
  color: var(--c-pink);
}

.t-left {
  text-align: left;
}

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

/* Cards */
.card .styleone,
.card .styletwo {
  transition: transform 0.25s ease;
  transform-origin: center;
  will-change: transform;
}
.card .styleone:hover,
.card .styletwo:hover {
  transform: scale(0.99);
  z-index: 2;
}
.card .styleone {
  background-color: white;
  padding: var(--unit);
  border-radius: var(--b-radius);
  min-height: 25em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card .styleone .textcontent hr {
  border: none;
  border-bottom-width: 2px;
  border-bottom-style: dotted;
  margin: 0 0 0.5em 0;
  padding: 0.5em 0 0 0;
}
.card .styleone p {
  min-height: 3em;
}
.card .styleone .btn {
  margin-top: 0;
  margin-bottom: 0;
}
.card .styletwo {
  display: block;
  background-color: var(--c-main);
  padding: var(--unit);
  border-radius: var(--b-radius);
  cursor: pointer;
}
.card .styletwo .card-header {
  display: flex;
  justify-content: space-between;
}
.card .styletwo h3 {
  padding-bottom: 0;
  min-height: 2em;
}
.card .styletwo .textcontent hr {
  border: none;
  border-bottom-width: 2px;
  border-bottom-style: dotted;
  margin: 0 0 1em 0;
  padding: 1em 0 0 0;
}
.card p {
  margin-bottom: 0;
}

.card-header span::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

.c-green .card-header span::after {
  background-image: url("../img/plus-green.svg");
}

.c-blue .card-header span::after {
  background-image: url("../img/plus-blue.svg");
}

.c-green hr {
  border-bottom-color: var(--c-green) !important;
}

.c-blue hr {
  border-bottom-color: var(--c-blue) !important;
}

@media screen and (max-width: 65rem) {
  .card .styleone .textcontent hr {
    margin: 0 0 1em 0;
    padding: 0.5em 0 0 0;
  }
  .card-header span::after {
    width: 1.5em;
    height: 1.5em;
  }
}
/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  max-height: none;
  overflow: hidden;
}
.modal.is-open {
  display: flex;
}
.modal .modal-content {
  max-width: 800px;
  max-height: 90vh;
  width: 90%;
  position: relative;
  top: 25px;
}
.modal .close-modal {
  position: absolute;
  top: -50px;
  right: 0;
  height: 50px;
  padding: 0 1.5rem;
  font-family: var(--font);
  font-size: var(--font-size-base);
  line-height: 50px;
  letter-spacing: 0;
  background: var(--c-neon);
  color: var(--c-black);
  border-radius: var(--b-radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal .modal-textcontent {
  background: var(--c-main);
  padding: calc(var(--unit) * 1.5) calc(var(--unit) * 1.6) calc(var(--unit) * 3);
  border-radius: var(--b-radius);
  max-height: calc(90dvh - 50px);
  line-height: 1.2;
  overflow: auto;
}
.modal .modal-textcontent p {
  padding-bottom: 1em;
}
.modal .modal-textcontent p:last-child {
  padding-bottom: 0;
}
.modal .modal-textcontent p strong {
  font-size: calc(var(--font-size-base) * 2.7);
  line-height: 1;
}
.modal .modal-textcontent ul {
  list-style: disc;
  padding-left: 1em;
}

.modal.c-green {
  background: color-mix(in srgb, var(--c-green) 40%, transparent);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.modal.c-blue {
  background: color-mix(in srgb, var(--c-blue) 40%, transparent);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.modal.c-pink {
  background: color-mix(in srgb, var(--c-pink) 40%, transparent);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.modal.c-black {
  background: color-mix(in srgb, #000000 40%, transparent);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

@media (max-width: 65rem) {
  .modal .modal-textcontent p strong {
    font-size: calc(var(--font-size-base) * 2);
    line-height: 1;
  }
}
.page-headline {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #fff;
  font-family: var(--font-headline);
  font-size: clamp(2rem, 15vw, 30rem);
  line-height: 1;
  text-align: center;
  letter-spacing: -0.02em;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 65rem) {
  .page-headline {
    font-size: clamp(3rem, 18vw, 35rem);
    top: 40%;
  }
}
.site-footer {
  background: linear-gradient(180deg, rgba(247, 247, 242, 0) 0%, #eeffa1 100%);
  font-family: var(--font);
  font-size: var(--font-size-base);
  line-height: 1.2;
  color: black;
  padding: calc(var(--unit) * 8) var(--unit) var(--unit) var(--unit);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .site-footer {
    padding-bottom: calc(var(--unit) * 5);
  }
}
.site-footer .footer-main {
  border: none;
  border-top-width: 2px;
  border-top-style: dotted;
  padding: 1.5em 0 0 0;
  margin-bottom: calc(var(--unit) * 8);
  margin-top: calc(var(--unit) * 10);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--unit);
  width: 100%;
  align-items: start;
}
@media (max-width: 900px) {
  .site-footer .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    margin-top: calc(var(--unit) * 5);
  }
  .site-footer .footer-main .footer-card {
    margin-bottom: calc(var(--unit) * 2);
  }
  .site-footer .footer-main .footer-logo {
    margin-bottom: calc(var(--unit) * 4);
  }
}
.site-footer .footer-card {
  background-color: #ffffff;
  padding: var(--unit);
  padding-bottom: 0;
  border-radius: var(--b-radius);
  width: 330px;
}
.site-footer .footer-card .text {
  margin-bottom: calc(var(--unit) * 2);
}
.site-footer .footer-card .btn {
  margin-bottom: var(--unit);
}
.site-footer .footer-socials .socials {
  margin-bottom: var(--unit);
}
.site-footer .footer-contact {
  margin-bottom: calc(var(--unit) * 2);
}
.site-footer .footer-logo {
  border: none;
  border-top-width: 2px;
  border-top-style: dotted;
  padding: 1.5em 0 0 0;
}
.site-footer .footer-logo .logo {
  max-width: 25rem;
}

body.bw .site-footer {
  background: linear-gradient(180deg, rgba(247, 247, 242, 0) 0%, #717171 100%);
}
body.bw .site-footer .footer-card .btn a {
  background-color: #000000;
  color: #ffffff;
}

[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

[data-animate].is-visible {
  opacity: 1;
}

/*# sourceMappingURL=base.css.map */
