@font-face {
  font-family: "Arimo";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/arimo-600.ttf") format("truetype");
}

@font-face {
  font-family: "Arimo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/arimo-700.ttf") format("truetype");
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/jost-800.ttf") format("truetype");
}

:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255, 255, 255, 0.66);
  --line: rgba(255, 255, 255, 0.18);
  --footer-height: 132px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-bottom: var(--footer-height);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Arimo", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.32;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.section {
  min-height: 100svh;
  padding: 8vw 8vw calc(var(--footer-height) + 8vw);
  position: relative;
}

.hero {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero__mark {
  width: min(76vw, 820px);
}

.hero__mark img {
  display: block;
  height: auto;
  max-height: 150px;
  width: 100%;
}

.hero__claim {
  font-family: "Jost", Futura, sans-serif;
  font-size: clamp(1.0rem, 3.75vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  margin: clamp(0.9rem, 2.4vw, 1.7rem) 0 0;
  max-width: min(85vw, 820px);
  padding: 0 5px;
  text-transform: uppercase;
  width: 100%;
}

.section--content {
  align-items: center;
  display: flex;
}

.section__inner {
  margin-inline: auto;
  max-width: 680px;
  width: 100%;
}

.section__inner--wide {
  max-width: 960px;
}

.section__eyebrow,
.section__subline,
.copy__final,
.button-link {
  font-family: "Jost", Futura, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section__eyebrow {
  color: var(--muted);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  margin: 0 0 1.2rem;
}

h1 {
  font-family: "Arimo", Arial, sans-serif;
  font-size: clamp(3rem, 9vw, 7.4rem);
  font-weight: 700;
  line-height: 0.9;
  margin: 0 0 clamp(2rem, 5vw, 3.4rem);
  max-width: 11ch;
}

.section__inner--wide h1 {
  max-width: 12ch;
}

.section__subline {
  font-size: clamp(1.3rem, 3vw, 2.8rem);
  line-height: 1;
  margin: -1rem 0 clamp(2rem, 5vw, 3.4rem);
  max-width: 760px;
}

.copy {
  font-size: clamp(1.03rem, 2vw, 1.55rem);
}

.copy p {
  margin: 0 0 1.75rem;
}

#datenschutz .copy {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  line-height: 1.5;
}

.privacy-details summary {
  cursor: pointer;
  width: fit-content;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.privacy-details summary:hover {
  color: var(--muted);
}

.privacy-details summary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.copy span,
.copy__final {
  color: var(--fg);
}

.copy--columns {
  columns: 2 320px;
  column-gap: clamp(2rem, 6vw, 5rem);
}

.copy--columns p,
.copy--columns .button-link {
  break-inside: avoid;
}

.copy__final {
  font-size: 1.12em;
  line-height: 1.05;
  margin-top: 2rem;
}

.button-link {
  align-items: center;
  border: 2px solid var(--fg);
  display: inline-flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 0.6rem;
  min-height: 48px;
  padding: 0.72rem 1.05rem;
  text-decoration: none;
}

.button-link:hover {
  background: var(--fg);
  color: var(--bg);
}

.button-link:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 5px;
}

.podcast-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.podcast-links .button-link {
  flex: 1 1 240px;
  margin-top: 0;
}

.site-footer {
  align-items: center;
  background: linear-gradient(to top, #000 78%, rgba(0, 0, 0, 0));
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  left: 0;
  padding: 2.2rem 1rem 1.2rem;
  position: fixed;
  right: 0;
  z-index: 10;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 4vw, 3.8rem);
  justify-content: center;
}

.site-nav a {
  font-family: "Jost", Futura, sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a.is-active,
.site-nav a:hover,
.instagram:hover {
  opacity: 0.58;
}

.instagram {
  display: grid;
  height: 30px;
  place-items: center;
  transition: opacity 160ms ease;
  width: 30px;
}

.instagram svg {
  display: block;
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 100%;
}

@media (max-width: 680px) {
  :root {
    --footer-height: 152px;
  }

  .section {
    padding: 10vw 6vw calc(var(--footer-height) + 10vw);
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4.8rem);
  }

  .hero__mark,
  .hero__claim {
    width: min(86vw, 520px);
  }

  .hero__claim {
    font-size: clamp(1.0rem, 4vw, 2.5rem);
    max-width: none;
    text-align: justify;
    text-align-last: justify;
  }

  .site-footer {
    padding-inline: 0.5rem;
  }

  .site-nav {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    max-width: none;
    width: 100%;
    padding: 0 20px
  }

  .site-nav a {
    font-size: clamp(0.65rem, 2.8vw, 0.9rem);
    padding: 6px 0px;
  }
}
