:root{
  --bg: #dfdfdf;
  --line: #000000;
  --hub: #000000;
  --hubText: #fbf8f1;
}

*{ box-sizing: border-box; }

html, body{
  min-height: 100%;
  margin: 0;
}

body{
  background: var(--bg);
}

body.home,
body.front-page{
  overflow-x: hidden; /*"overflow: hidden": scrollen unterbinden*/
}

.site{
  height: 100svh;
}

body.home .site,
body.front-page .site{
  height: auto;
  overflow: visible;
}

.stage{
  min-height: 100svh;
  width: 100%;
}

.stage .svg-desktop,
.stage .svg-mobile{
  width: 100%;
  height: auto;
}

.stage .svg-desktop{
  display: block !important;
}

.stage .svg-mobile{
  display: none !important;
}

@media (max-width: 768px){
  .stage .svg-desktop{
    display: none !important;
  }

  .stage .svg-mobile{
    display: block !important;
  }
}

.header{
  position: fixed;
  top: 18px;
  left: 22px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

body:not(.home):not(.front-page) .header{
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg);
  padding: 18px 22px;
  transition: padding .2s ease;
}

.logo{
  display: block;
  width: 120px;
  height: auto;
}

.contact-fab{
  position: fixed;
  right: 22px;
	top: 18px;
  bottom: auto;
  z-index: 10;
  padding: 12px 16px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  text-decoration: none;
  transition: transform .15s ease;
}

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

.hub-circle{
  fill: var(--hub);
  animation: breathe 3s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes breathe{
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.hub-label{
  fill: var(--hubText);
  font-size: 14px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  text-anchor: middle;
  dominant-baseline: middle;
}

svg a .hub{
  cursor: pointer;
}

.legal{
  position: fixed;
  right: 22px;
	top: 60px;
  bottom: auto;
  z-index: 10;
  font-size: 8px;
  text-align: right;
}

.legal a{
  color: #888;
  text-decoration: none;
  border-bottom: 0 solid rgba(0,0,0,.25);
}

.legal a:hover{
  border-bottom-color: rgba(0,0,0,.55);
}

.legal .sep{
  margin: 0 5px;
  color: #888;
}

.page-wrap{
  min-height: 100svh;
  padding: 110px 22px 90px;
  background: var(--bg);
}

.page-article{
  max-width: 900px;
  margin: 0 auto;
}

.page-title{
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: -0.02em;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
}

.page-content{
  font-size: 16px;
  line-height: 1.7;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
}

.page-content a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}