:root {
  --papier: #f4efe6;
  --tinte: #3f362e;
  --holz: #8a6844;
  --zoll: #e6b82a;
  --zoll-rand: #b88918;
  --muted: #6b5d50;
  --linie: #ddd2c2;
  --hell: #fbf7ef;
  --dunkel: #26241c;
  --dunkel-2: #322e24;
  --marke: #8fb43a;
  --marke-tief: #243016;
  --sans: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", system-ui,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  color: var(--tinte);
  font-family: "Palatino Linotype", Palatino, "Iowan Old Style", Georgia, serif;
  line-height: 1.55;
  background: var(--papier);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: calc(4.4rem + env(safe-area-inset-right, 0px));
  overflow-x: clip;
}

.wrap {
  width: min(1080px, calc(100% - clamp(1.5rem, 8vw, 5.5rem)));
  margin: 0 auto;
}

a,
button {
  -webkit-tap-highlight-color: rgb(143 180 58 / 0.28);
}

.sign {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--papier);
  border-bottom: 1px solid transparent;
  animation: fade-in 0.9s ease both;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.sign .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  transition: padding 0.35s ease;
}

.sign.is-scrolled {
  background: rgb(244 239 230 / 0.92);
  border-bottom-color: var(--linie);
  box-shadow: 0 10px 28px rgb(63 54 46 / 0.08);
  backdrop-filter: blur(12px);
}

.sign.is-scrolled .wrap {
  padding: 0.82rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--tinte);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo-mark {
  display: block;
  width: 3.85rem;
  height: auto;
  flex: 0 0 auto;
  overflow: visible;
  transition: width 0.35s ease;
}

.logo-mark path,
.logo-mark rect {
  fill: none;
  stroke: var(--marke);
  stroke-width: 10;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.sign.is-scrolled .logo-mark {
  width: 3.35rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  line-height: 1.05;
}

.logo-name {
  font-size: 1.48rem;
}

.logo-claim {
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--marke);
}

nav {
  display: flex;
  gap: 1.5rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

nav a,
.lead a,
p a,
.anfahrt a:not(.button),
.legal a {
  color: var(--holz);
  text-decoration: none;
  overflow-wrap: anywhere;
}

nav a {
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 100%;
  height: 1px;
  background: var(--marke);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

nav a:hover::after,
nav a.is-active::after,
nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

nav a.is-active,
nav a[aria-current="page"] {
  color: var(--tinte);
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: calc(100dvh - 3.4rem);
  padding: 5.5rem 0 5.5rem;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero-mark {
  position: absolute;
  right: 0;
  bottom: -0.18em;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(10rem, 36vw, 22rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.72;
  color: rgb(63 54 46 / 0.12);
  pointer-events: none;
  user-select: none;
  animation: mark-in 1.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    108deg,
    transparent 32%,
    rgb(255 248 230 / 0.42) 48%,
    transparent 64%
  );
  transform: translateX(-55%);
  animation: sheen 1.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero-title {
  overflow: hidden;
  margin: 0 0 0.85rem;
  font-size: clamp(1.72rem, 4.8vw, 3.25rem);
  line-height: 1.08;
}

.hero-title span {
  display: block;
  animation: title-up 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.hero-title span:nth-child(2) {
  animation-delay: 0.34s;
}

.hero-title span:nth-child(3) {
  animation-delay: 0.48s;
}

.hero-rule {
  display: block;
  width: 0;
  height: 2px;
  margin: 0 0 1.35rem;
  background: var(--marke);
  animation: rule-draw 0.85s ease 0.72s forwards;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--marke);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-family: var(--sans);
}

h1,
h2,
h3 {
  color: var(--tinte);
  font-family: var(--sans);
  line-height: 1.05;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.15rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h2 {
  margin: 0 0 1.6rem;
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 0.45rem;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.1rem;
  border: 0;
  border-radius: 2px;
  background: var(--marke);
  color: var(--marke-tief);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.button:hover {
  transform: none;
}

.button.ghost {
  background: transparent;
  color: var(--tinte);
  box-shadow: inset 0 0 0 1px var(--holz);
}

.band {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: min(42vh, 20rem);
  padding: 3.4rem 1.5rem;
  color: var(--hell);
  background: #1c1d14;
}

.band::before {
  content: "";
  position: absolute;
  inset: -14%;
  background:
    radial-gradient(55% 60% at 72% 42%, rgb(143 180 58 / 0.32) 0%, transparent 58%),
    radial-gradient(70% 70% at 28% 70%, #5a4634 0%, transparent 62%),
    linear-gradient(110deg, #24261a, #1c1d14 48%, #3a3d28);
  animation: glow-drift 18s ease-in-out infinite alternate;
}

.band-line {
  position: relative;
  margin: 0;
  max-width: none;
  font-family: var(--sans);
  font-size: clamp(1.9rem, 6.6vw, 4.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-align: center;
  text-wrap: balance;
  will-change: transform;
}

.band-line span {
  color: var(--marke);
}

.atelier {
  background: var(--dunkel);
  color: var(--hell);
  padding: 4.4rem 0;
}

.ueber {
  padding: 4.4rem 0 4rem;
}

.ueber h2 {
  max-width: 36rem;
}

.ueber h2::after,
.atelier h2::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 2px;
  margin-top: 0.75rem;
  background: var(--marke);
}

.ueber-prose {
  max-width: 40rem;
}

.ueber-prose p {
  margin: 0 0 1.05rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.ueber-prose p:last-child {
  margin-bottom: 0;
}

.ueber-prose .ueber-schluss {
  margin-top: 1.85rem;
  margin-bottom: 0;
  color: var(--tinte);
  font-family: var(--sans);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.atelier h2,
.atelier h3 {
  color: var(--hell);
}

.flaechen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr));
  gap: 0.9rem;
}

.flaeche {
  position: relative;
  overflow: hidden;
  min-height: 16.8rem;
  padding: 1.6rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--dunkel-2);
  isolation: isolate;
  --spot-x: 70%;
  --spot-y: 28%;
  transition: transform 0.45s ease;
}

.flaeche::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgb(251 247 239 / 0.05), rgb(20 16 12 / 0.5)),
    radial-gradient(80% 80% at 80% 0%, #6d7c38 0%, transparent 55%),
    linear-gradient(160deg, #3a3428, #241e16);
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.flaeche::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    14rem circle at var(--spot-x) var(--spot-y),
    rgb(143 180 58 / 0.34),
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.flaeche:nth-child(3n + 2)::before {
  background:
    linear-gradient(180deg, rgb(251 247 239 / 0.06), rgb(20 16 12 / 0.55)),
    radial-gradient(90% 70% at 20% 10%, #7a8a40 0%, transparent 58%),
    linear-gradient(165deg, #43392d, #1f1c16);
}

.flaeche:nth-child(3n)::before {
  background:
    linear-gradient(180deg, rgb(251 247 239 / 0.04), rgb(12 10 8 / 0.62)),
    radial-gradient(80% 80% at 70% 100%, #5a6a30 0%, transparent 55%),
    linear-gradient(150deg, #312821, #1a1512);
}

.flaeche:hover,
.flaeche:focus-within {
  transform: none;
}

.flaeche:hover::before,
.flaeche:focus-within::before {
  transform: scale(1.02);
}

.flaeche:hover::after,
.flaeche:focus-within::after {
  opacity: 0;
}

.flaeche .nr,
.flaeche h3,
.flaeche p {
  position: relative;
  z-index: 1;
}

.flaeche .nr {
  position: absolute;
  top: -0.35rem;
  right: 0.3rem;
  z-index: 1;
  font-family: var(--sans);
  font-size: clamp(5.5rem, 8vw, 8.2rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgb(143 180 58 / 0.28);
  pointer-events: none;
  transition: transform 0.6s ease, color 0.4s ease;
}

.flaeche:hover .nr,
.flaeche:focus-within .nr {
  transform: none;
}

.flaeche p {
  margin: 0;
  max-width: 22rem;
  color: rgb(251 247 239 / 0.82);
  opacity: 1;
}

#ablauf,
#werkstatt {
  padding: 4.2rem 0;
}

#ueber-uns,
#leistungen,
#ablauf,
#werkstatt,
#impressum,
#datenschutz,
#start {
  scroll-margin-top: 6.9rem;
}

.schiene {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.schiene::before,
.schiene::after {
  content: "";
  position: absolute;
  top: -0.7rem;
  left: 0;
  height: 2px;
}

.schiene::before {
  width: 100%;
  background: var(--linie);
}

.schiene::after {
  width: 0;
  background: var(--marke);
  transition: width 1.1s ease;
}

.schiene.is-run::after {
  width: 100%;
}

.schiene li {
  position: relative;
  padding: 0.6rem 1.5rem 0 0;
}

.schiene li::before {
  content: "";
  position: absolute;
  top: -0.95rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--papier);
  box-shadow: inset 0 0 0 2px var(--linie), 0 0 0 4px var(--papier);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.schiene.is-run li:nth-child(1)::before,
.schiene.is-run li:nth-child(2)::before,
.schiene.is-run li:nth-child(3)::before {
  background: var(--marke);
  box-shadow: inset 0 0 0 2px var(--marke), 0 0 0 4px var(--papier);
  transform: scale(1.08);
}

.schiene.is-run li:nth-child(1)::before {
  transition-delay: 0.12s;
}

.schiene.is-run li:nth-child(2)::before {
  transition-delay: 0.42s;
}

.schiene.is-run li:nth-child(3)::before {
  transition-delay: 0.72s;
}

.schiene strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.anfahrt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.adresse {
  font-size: 1.15rem;
}

.map-wrap {
  min-height: 220px;
  padding: 1.3rem;
  background: var(--hell);
  border: 1px solid var(--linie);
}

.map {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.note {
  margin: 0 0 1rem;
  color: var(--muted);
}

.legal {
  padding: 2.4rem 0 1.2rem;
}

.legal h3 {
  margin: 1.7rem 0 0.45rem;
  font-size: 1.08rem;
}

.legal p {
  max-width: 42rem;
  color: var(--muted);
}

.rechte {
  max-width: 42rem;
  margin: 0.4rem 0 1.1rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.rechte li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--linie);
}

.behoerde {
  display: block;
  max-width: 24rem;
  margin: 0.8rem 0 1.5rem;
  padding: 1.1rem 1.15rem;
  background: var(--hell);
  border: 1px solid var(--linie);
  font-style: normal;
  color: var(--muted);
}

.behoerde strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--tinte);
  font-family: var(--sans);
}

.page-legal .legal {
  padding: 3.4rem 0 3.2rem;
  min-height: 62vh;
}

.page-legal .legal h1 {
  margin-bottom: 1.2rem;
}

.page-legal .legal h2 {
  margin: 2rem 0 0.55rem;
  font-size: 1.15rem;
}

.page-refs .refs-page {
  padding: 3.4rem 0 3.6rem;
}

.page-refs .refs-page h1 {
  margin-bottom: 1.1rem;
}

.refs {
  display: grid;
  gap: 3.4rem;
  margin-top: 2.4rem;
}

.ref {
  max-width: 48rem;
}

.ref h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.ref figure {
  margin: 0;
}

.ref img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  background: var(--linie);
}

.ref figcaption {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.ref-invite {
  padding: 3.6rem 0;
  background: var(--hell);
  border-block: 1px solid var(--linie);
}

.ref-invite h2 {
  margin-bottom: 0.65rem;
}

.ref-invite .actions {
  margin-top: 1.4rem;
}

footer {
  background: var(--dunkel);
  color: rgb(251 247 239 / 0.62);
  padding: 1.5rem 0 calc(2.1rem + env(safe-area-inset-bottom, 0px));
  font-size: 0.95rem;
  border-top: 2px solid var(--marke);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.footer-links a {
  color: #e8d3b0;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--marke);
}

.zoll-scroll {
  position: fixed;
  top: 1.1rem;
  right: 0.7rem;
  bottom: 1.1rem;
  z-index: 20;
  width: 3.15rem;
  height: auto;
  cursor: pointer;
  user-select: none;
  touch-action: none;
  animation: zoll-in 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
  border-radius: 3px 2px 2px 3px;
  background:
    linear-gradient(
      90deg,
      #c49216 0%,
      #f0cc4a 16%,
      #e6b82a 48%,
      #d19f1c 82%,
      #b88918 100%
    );
  box-shadow:
    inset 1px 0 0 rgb(255 236 170 / 0.55),
    inset -2px 0 0 rgb(90 60 10 / 0.18),
    0 10px 28px rgb(40 28 12 / 0.2);
}

.zoll-face {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.zoll-thumb {
  position: absolute;
  left: -4px;
  width: calc(100% + 8px);
  height: 1.4rem;
  display: grid;
  place-items: center;
  pointer-events: none;
  border-radius: 2px;
  background:
    linear-gradient(180deg, #cbb896, #6e5840 48%, #3d3226);
  box-shadow:
    inset 0 1px 0 rgb(255 248 220 / 0.55),
    0 2px 6px rgb(20 14 8 / 0.28);
}

.zoll-read {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--hell);
}

.rise {
  animation: rise 1.05s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.js .reveal {
  opacity: 0;
}

.js .reveal.is-in {
  animation: fade-in 0.8s ease both;
}

.delay-1 {
  animation-delay: 0.18s;
}

.delay-2 {
  animation-delay: 0.72s;
}

.delay-3 {
  animation-delay: 0.92s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.4rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mark-in {
  from {
    opacity: 0;
    transform: translate3d(6%, 10%, 0) scale(1.12);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes title-up {
  from {
    transform: translateY(108%);
  }
  to {
    transform: none;
  }
}

@keyframes rule-draw {
  to {
    width: min(11.5rem, 42vw);
  }
}

@keyframes sheen {
  to {
    transform: translateX(55%);
    opacity: 0;
  }
}

@keyframes zoll-in {
  from {
    opacity: 0;
    transform: translateX(120%);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes glow-drift {
  to {
    transform: scale(1.16) translate3d(2%, -3%, 0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
    background: #7ea332;
  }

  .button.ghost:hover {
    background: transparent;
    color: var(--tinte);
  }

  .flaeche p {
    transform: translateY(0.6rem);
    opacity: 0.72;
    transition:
      transform 0.4s ease,
      opacity 0.4s ease;
  }

  .flaeche:hover,
  .flaeche:focus-within {
    transform: translateY(-8px);
  }

  .flaeche:hover::before,
  .flaeche:focus-within::before {
    transform: scale(1.12);
  }

  .flaeche:hover::after,
  .flaeche:focus-within::after {
    opacity: 1;
  }

  .flaeche:hover .nr,
  .flaeche:focus-within .nr {
    transform: translate(-0.3rem, 0.4rem) scale(1.06);
    color: rgb(143 180 58 / 0.42);
  }

  .flaeche:hover p,
  .flaeche:focus-within p {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 960px) {
  html {
    scrollbar-width: auto;
  }

  html::-webkit-scrollbar {
    display: block;
  }

  body {
    padding-right: env(safe-area-inset-right, 0px);
  }

  .zoll-scroll {
    display: none;
  }

  .hero {
    min-height: min(58dvh, 32rem);
    padding: 3rem 0 3rem;
  }

  .hero-mark {
    right: -4vw;
    font-size: clamp(6rem, 38vw, 12rem);
  }

  nav {
    gap: 1.1rem;
  }
}

@media (max-width: 860px) {
  .flaechen {
    grid-template-columns: 1fr 1fr;
  }

  .flaeche {
    min-height: 14.5rem;
  }

  .anfahrt,
  .schiene {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .schiene::before,
  .schiene::after {
    display: none;
  }

  .schiene li {
    border-bottom: 1px solid var(--linie);
    padding: 1rem 0 1rem 1.5rem;
  }

  .schiene li::before {
    top: 1.2rem;
    left: 0;
  }

  .ueber,
  .atelier,
  #ablauf,
  #werkstatt {
    padding: 3rem 0;
  }

  .band {
    min-height: 9rem;
    padding: 2.4rem 1.2rem;
  }
}

@media (max-width: 640px) {
  .sign .wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.9rem 0 0.75rem;
  }

  .logo-mark {
    width: 3.55rem;
  }

  .sign.is-scrolled .logo-mark {
    width: 3.2rem;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.1rem;
    font-size: 0.7rem;
    letter-spacing: 0.02em;
  }

  nav a {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0.2rem 0.15rem;
  }

  .hero {
    min-height: 0;
    padding: 1.5rem 0 2.1rem;
  }

  .hero-mark {
    right: -8vw;
    bottom: -0.08em;
    font-size: clamp(5.2rem, 46vw, 9rem);
  }

  .lead {
    font-size: 1.05rem;
  }

  .flaechen {
    grid-template-columns: 1fr;
  }

  .button {
    min-height: 2.75rem;
    padding: 0.8rem 1rem;
  }

  .actions .button {
    flex: 1 1 9.5rem;
    text-align: center;
  }

  .map {
    height: 220px;
  }

  #ueber-uns,
  #leistungen,
  #ablauf,
  #werkstatt,
  #impressum,
  #datenschutz,
  #start {
    scroll-margin-top: 8.8rem;
  }

  .page-legal .legal,
  .page-refs .refs-page {
    padding: 2.2rem 0 2.4rem;
  }

  .refs {
    gap: 2.4rem;
    margin-top: 1.8rem;
  }

  .ref-invite {
    padding: 2.6rem 0;
  }

  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .rise,
  .hero-mark,
  .hero-sheen,
  .hero-title span,
  .hero-rule,
  .zoll-scroll,
  .js .reveal,
  .js .reveal.is-in {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-rule {
    width: min(11.5rem, 42vw);
  }

  .band::before,
  .button,
  .flaeche,
  .flaeche::before,
  .flaeche::after,
  .flaeche .nr,
  .flaeche p,
  .sign,
  .sign .wrap,
  nav a::after,
  .schiene::after,
  .schiene li::before {
    animation: none;
    transition: none;
  }

  .schiene.is-run::after {
    width: 100%;
  }
}
