@font-face {
  font-family: "Overload";
  src: url("assets/fonts/overload.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --black: #0d1112;
  --paper: #efefe8;
  --white: #fff;
  --cyan: #4cdbe6;
  --violet: #7554e9;
  --lime: #a6ee72;
  --pink: #ff65b3;
  --yellow: #ffd84d;
  --muted: #b9c2c2;
  --line: #30383a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  width: 100%;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  padding: 0.75rem 1rem;
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-head {
  position: sticky;
  z-index: 20;
  top: 0;
}

.site-head.is-compact .status-ticker {
  display: none;
}

.site-head.is-compact .main-nav {
  box-shadow: 0 2px 0 var(--pink);
}

.main-nav {
  display: flex;
  min-height: 50px;
  justify-content: space-between;
  align-items: stretch;
  border-bottom: 1px solid #6f7b7e;
  background: var(--cyan);
  color: var(--black);
}

.main-nav a {
  display: grid;
  place-items: center;
  padding: 0 1.2rem;
  border-right: 1px solid rgba(13, 17, 18, 0.34);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
}

.main-nav__brand {
  position: relative;
  min-width: 225px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.main-nav__brand img {
  position: absolute;
  top: -26px;
  left: 18px;
  width: 180px;
  max-width: none;
  height: auto;
}

.main-nav__links {
  display: flex;
}

.main-nav__tools {
  display: flex;
}

.language-switch {
  display: flex;
  border-left: 1px solid rgba(13, 17, 18, 0.34);
}

.language-switch button {
  width: 34px;
  padding: 0;
  border: 0;
  border-right: 1px solid rgba(13, 17, 18, 0.34);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font: 700 9px/1 monospace;
}

.language-switch button[aria-pressed="true"] {
  background: var(--black);
  color: var(--lime);
}

.language-switch button:hover,
.language-switch button:focus-visible {
  background: var(--pink);
  color: var(--black);
  outline: 0;
}

.main-nav .cv-link {
  border-right: 0;
  background: var(--yellow);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--pink);
  color: var(--black);
  outline: 0;
}

.status-ticker {
  height: 28px;
  overflow: hidden;
  border-bottom: 1px solid var(--black);
  background: var(--violet);
  color: var(--white);
  font: 10px/28px monospace;
  white-space: nowrap;
}

.status-ticker p {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.status-ticker span {
  padding-right: 3rem;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.profile-console {
  display: grid;
  height: calc(100svh - 140px);
  min-height: calc(100svh - 140px);
  grid-template-columns: minmax(300px, 34%) 1fr;
  border-bottom: 1px solid var(--cyan);
}

.identity-panel {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: minmax(240px, 1fr) auto auto;
  border-right: 1px solid var(--cyan);
  background: #141a1c;
}

.identity-panel__photo {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.identity-panel__photo img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  filter: saturate(0.78) contrast(1.08);
}

.identity-panel__copy {
  padding: 1.2rem 1.35rem;
  border-top: 1px solid var(--cyan);
  background: var(--violet);
}

.identity-panel__copy h1 {
  margin-bottom: 0.5rem;
  font: 400 30px/0.95 "Overload", Arial, Helvetica, sans-serif;
}

.identity-panel__copy > p:last-child {
  font-size: 10px;
}

.identity-panel__facts div {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 0.55rem 1.35rem;
  border-top: 1px solid var(--line);
  line-height: 1.35;
}

.identity-panel__facts dt {
  color: var(--cyan);
  font: 9px/1.35 monospace;
  text-transform: uppercase;
}

.identity-panel__facts dd {
  font-size: 10px;
}

.casting-panel {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: auto 1fr auto;
}

.network-note {
  display: flex;
  min-height: 78px;
  align-items: center;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--cyan);
  background: var(--paper);
  color: var(--black);
}

.network-note p {
  font: 400 23px/1 "Overload", Arial, Helvetica, sans-serif;
}

.instant-demos {
  display: grid;
  min-height: 0;
  grid-template-rows: auto 1fr;
}

.instant-demos > header {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  border-bottom: 1px solid var(--cyan);
  background: #172124;
}

.instant-demos h2 {
  color: var(--cyan);
  font: 400 18px/1 "Overload", Arial, Helvetica, sans-serif;
}

.instant-demos header p {
  color: var(--muted);
  font: 9px/1 monospace;
}

.instant-list {
  display: grid;
  grid-template-rows: repeat(4, minmax(54px, 1fr));
}

.instant-track {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 58px 38px minmax(100px, 1fr) 54px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.instant-track:last-child {
  border-bottom: 0;
}

.instant-track:nth-child(2) {
  background: #17132a;
}

.instant-track:nth-child(3) {
  background: #11231e;
}

.instant-track:nth-child(4) {
  background: #151c2b;
}

.instant-track.is-playing {
  background: var(--violet);
}

.instant-track button {
  display: grid;
  width: 58px;
  height: 100%;
  place-items: center;
  padding: 0;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.instant-track button span {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--cyan);
}

.instant-track.is-playing button span {
  width: 10px;
  height: 13px;
  border: 0;
  border-right: 3px solid var(--white);
  border-left: 3px solid var(--white);
}

.instant-track button:focus-visible {
  background: var(--yellow);
  outline: 0;
}

.instant-track h3 {
  padding: 0 0.8rem;
  font: 400 19px/1 "Overload", Arial, Helvetica, sans-serif;
}

.instant-track > p,
.instant-track time {
  padding: 0 0.6rem;
  color: var(--muted);
  font: 9px/1.2 monospace;
  text-transform: uppercase;
}

.instant-track time {
  justify-self: end;
  color: var(--paper);
}

.instant-track__progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 58px;
  height: 3px;
  pointer-events: none;
}

.instant-track__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--pink);
}

.instant-track__scrubber {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -6px;
  left: 58px;
  width: calc(100% - 58px);
  height: 15px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: ew-resize;
}

.instant-track__scrubber::-webkit-slider-runnable-track {
  height: 10px;
  background: transparent;
}

.instant-track__scrubber::-webkit-slider-thumb {
  width: 8px;
  height: 13px;
  margin-top: -1.5px;
  border: 0;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  background: var(--pink);
}

.instant-track__scrubber::-moz-range-track {
  height: 10px;
  border: 0;
  background: transparent;
}

.instant-track__scrubber::-moz-range-thumb {
  width: 8px;
  height: 13px;
  border: 0;
  border-radius: 0;
  background: var(--pink);
}

.instant-track__scrubber:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: -2px;
}

.fast-contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.75fr;
  border-top: 1px solid var(--cyan);
}

.fast-contact > a {
  display: flex;
  min-width: 0;
  min-height: 70px;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  border-right: 1px solid var(--black);
  background: var(--cyan);
  color: var(--black);
  text-decoration: none;
  overflow-wrap: anywhere;
  font-size: 9px;
}

.fast-contact > a:nth-child(2) {
  background: var(--lime);
}

.fast-contact > a:nth-child(3) {
  background: var(--yellow);
}

.fast-contact > a > span:first-child {
  font-size: 10px;
  font-weight: 700;
}

.fast-contact__filename {
  font-size: 9px;
  font-weight: 400;
}

.fast-contact > a:hover,
.fast-contact > a:focus-visible {
  background: var(--pink);
  outline: 0;
}

.agency-mark {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 2px solid currentColor;
  font: 700 8px/1 monospace;
}

.credits {
  display: grid;
  grid-template-columns: minmax(300px, 34%) 1fr;
  border-bottom: 1px solid var(--violet);
}

.credits__side {
  min-height: 450px;
  padding: 2.2rem 1.5rem;
  border-right: 1px solid var(--black);
  background: var(--violet);
}

.eyebrow {
  font: 9px/1.2 monospace;
  text-transform: uppercase;
}

.credits__side h2,
.services h2,
.message h2 {
  margin-top: 0;
  font: 400 32px/0.95 "Overload", Arial, Helvetica, sans-serif;
}

.credit-posts {
  background: var(--paper);
  color: var(--black);
}

.credit-posts article {
  display: grid;
  min-height: 150px;
  grid-template-columns: 140px minmax(180px, 1fr) minmax(180px, 1.2fr);
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--black);
}

.credit-posts article:last-child {
  border-bottom: 0;
}

.credit-posts article > div {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font: 9px/1.2 monospace;
  text-transform: uppercase;
}

.credit-posts h3 {
  font: 400 17px/1.2 Arial, Helvetica, sans-serif;
}

.credit-posts article > p {
  color: #444;
  font: 10px/1.4 monospace;
}

.services {
  padding: 2.2rem 1.5rem 2.5rem;
  border-bottom: 1px solid var(--cyan);
  background: #121719;
}

.services header {
  margin-bottom: 1.8rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
}

.services__grid div {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.8rem;
  border-right: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
}

.services__grid div:nth-child(2) {
  background: var(--violet);
}

.services__grid div:nth-child(4) {
  background: var(--lime);
  color: var(--black);
}

.services__grid div:nth-child(5) {
  background: var(--pink);
  color: var(--black);
}

.services__grid span {
  font: 9px/1 monospace;
}

.services__grid p {
  font-size: 10px;
  line-height: 1.35;
}

.message {
  display: grid;
  min-height: 560px;
  grid-template-columns: 42% 1fr;
}

.message__photo {
  min-height: 0;
  overflow: hidden;
}

.message__photo img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0.8);
}

.message__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3rem 2.5rem 2rem;
  background: var(--cyan);
  color: var(--black);
}

.message__copy h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.message__direct {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 3.5rem;
}

.message__direct a {
  margin-top: 1rem;
  font: 13px/1.3 monospace;
  text-underline-offset: 0.35rem;
}

.message__profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.message__profiles a {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--black);
  color: var(--black);
  text-decoration: none;
  font: 10px/1.2 monospace;
}

.message__profiles a:hover,
.message__profiles a:focus-visible {
  background: var(--pink);
  outline: 0;
}

.message__profiles img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.message__copy > p:last-child {
  margin-top: auto;
  font: 9px/1.2 monospace;
  text-transform: uppercase;
}

.site-foot {
  display: grid;
  min-height: 82px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  background: var(--black);
  font: 9px/1 monospace;
}

.human-badges {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.human-badges img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.human-badges img:last-child {
  width: 38px;
  height: 38px;
}

.site-foot__links {
  display: flex;
  justify-self: end;
  gap: 1rem;
}

.imprint-page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.imprint-nav {
  display: flex;
  min-height: 64px;
  align-items: stretch;
  justify-content: space-between;
  border-bottom: 1px solid var(--pink);
  background: var(--cyan);
  color: var(--black);
}

.imprint-nav__brand {
  position: relative;
  width: 225px;
  overflow: hidden;
  background: var(--black);
}

.imprint-nav__brand img {
  position: absolute;
  top: -20px;
  left: 18px;
  width: 180px;
  max-width: none;
}

.imprint-nav__back {
  display: grid;
  place-items: center;
  padding: 0 1.5rem;
  border-left: 1px solid var(--black);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
}

.imprint-nav__back:hover,
.imprint-nav__back:focus-visible {
  background: var(--pink);
  outline: 0;
}

.imprint-main {
  display: grid;
  width: min(100%, 980px);
  align-content: center;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.imprint-main > h1 {
  margin: 0.85rem 0 3rem;
  color: var(--paper);
  font: 400 64px/0.9 "Overload", Arial, Helvetica, sans-serif;
}

.imprint-main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
}

.imprint-main__grid section {
  min-height: 230px;
  padding: 1.5rem;
  border-right: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
}

.imprint-main__grid section:nth-child(2) {
  background: var(--violet);
}

.imprint-main__ids {
  grid-column: 1 / -1;
  min-height: 150px !important;
  background: var(--pink);
  color: var(--black);
}

.imprint-main h2 {
  margin: 0 0 2rem;
  font: 400 23px/1 "Overload", Arial, Helvetica, sans-serif;
}

.imprint-main address,
.imprint-main__contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: var(--paper);
  font: normal 12px/1.55 monospace;
}

.imprint-main__tax {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0;
}

.imprint-main__tax div {
  min-width: 0;
}

.imprint-main__tax dt {
  margin-bottom: 0.5rem;
  font: 9px/1.4 monospace;
  text-transform: uppercase;
}

.imprint-main__tax dd {
  margin: 0;
  font: 700 14px/1.3 monospace;
}

.imprint-main__contact a {
  width: fit-content;
  text-underline-offset: 0.3rem;
}

.imprint-page .site-foot__links {
  justify-self: end;
}

@media (min-width: 761px) and (max-width: 940px) {
  .credit-posts article {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .credit-posts article > p {
    grid-column: 2;
  }
}

.privacy-page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.privacy-main {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.privacy-main > h1 {
  margin: 0.85rem 0 1.2rem;
  color: var(--paper);
  font: 400 64px/0.9 "Overload", Arial, Helvetica, sans-serif;
}

.privacy-main__intro {
  max-width: 650px;
  margin-bottom: 3rem;
  color: var(--muted);
  font: 11px/1.65 monospace;
}

.privacy-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
}

.privacy-sections section {
  min-width: 0;
  padding: 1.5rem;
  border-right: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
}

.privacy-sections section:nth-child(3n + 2) {
  background: var(--violet);
}

.privacy-sections section:nth-child(3n) {
  background: var(--paper);
  color: var(--black);
}

.privacy-sections .wide {
  grid-column: 1 / -1;
}

.privacy-sections h2 {
  margin: 0 0 1.25rem;
  font: 400 22px/1 "Overload", Arial, Helvetica, sans-serif;
}

.privacy-sections p,
.privacy-sections ul,
.privacy-sections address {
  margin: 0;
  color: inherit;
  font: normal 11px/1.65 monospace;
}

.privacy-sections p + p,
.privacy-sections p + ul,
.privacy-sections ul + p {
  margin-top: 1rem;
}

.privacy-sections ul {
  padding-left: 1.15rem;
}

.privacy-sections a {
  overflow-wrap: anywhere;
  text-underline-offset: 0.25rem;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 54px;
  }

  .main-nav {
    min-height: 54px;
  }

  .main-nav__brand {
    min-width: 92px;
    padding: 0 0.75rem !important;
  }

  .main-nav__brand img {
    top: 0;
    left: 4px;
    width: 88px;
  }

  .main-nav__links a {
    padding: 0 0.55rem;
    font-size: 8px;
  }

  .language-switch button {
    width: 27px;
    font-size: 8px;
  }

  .main-nav__links .cv-link {
    display: none;
  }

  .status-ticker {
    height: 24px;
    font-size: 9px;
    line-height: 24px;
  }

  .profile-console {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
  }

  .identity-panel {
    display: grid;
    grid-template-columns: 104px 1fr;
    grid-template-rows: 104px auto;
    border-right: 0;
    border-bottom: 1px solid var(--cyan);
  }

  .identity-panel__photo {
    grid-column: 1;
    grid-row: 1;
  }

  .identity-panel__copy {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-top: 0;
  }

  .identity-panel__copy h1 {
    font-size: 23px;
  }

  .identity-panel__facts {
    grid-column: 1 / 3;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .identity-panel__facts div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.65rem 0.55rem;
    border-right: 1px solid var(--line);
  }

  .identity-panel__facts div:nth-child(even) {
    border-right: 0;
  }

  .identity-panel__facts dt {
    font-size: 8px;
  }

  .identity-panel__facts dd {
    overflow-wrap: anywhere;
    font-size: 9px;
  }

  .network-note {
    min-height: 64px;
    padding: 0.8rem 1rem;
  }

  .network-note p {
    font-size: 17px;
  }

  .instant-demos > header {
    min-height: 42px;
    padding: 0 1rem;
  }

  .instant-track {
    min-height: 58px;
    grid-template-columns: 48px 30px 1fr 46px;
  }

  .instant-track button {
    width: 48px;
  }

  .instant-track h3 {
    padding: 0 0.55rem;
    font-size: 17px;
  }

  .instant-track > p,
  .instant-track time {
    padding: 0 0.45rem;
  }

  .instant-track__progress {
    left: 48px;
  }

  .instant-track__scrubber {
    left: 48px;
    width: calc(100% - 48px);
  }

  .fast-contact {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 66px;
  }

  .fast-contact > a {
    min-height: 64px;
    padding: 0.6rem 0.7rem;
  }

  .fast-contact > a:nth-child(3) {
    overflow-wrap: normal;
    font-size: 0;
  }

  .fast-contact > a:nth-child(3) > span:first-child {
    font-size: 9px;
  }

  .fast-contact__filename {
    display: none;
  }

  .credits {
    display: block;
  }

  .credits__side {
    min-height: 112px;
    padding: 1.25rem 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--black);
  }

  .credits__side h2,
  .services h2,
  .message h2 {
    font-size: 27px;
  }

  .credit-posts article {
    min-height: 140px;
    grid-template-columns: 74px 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }

  .credit-posts article > p {
    grid-column: 2;
  }

  .services {
    padding: 1.5rem 1rem 1.8rem;
  }

  .services__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .services__grid div {
    grid-column: span 2;
    min-height: 108px;
    padding: 0.65rem;
  }

  .services__grid div:nth-child(n + 4) {
    grid-column: span 3;
  }

  .message {
    min-height: 660px;
    grid-template-columns: 1fr;
    grid-template-rows: 270px 1fr;
  }

  .message__copy {
    padding: 1.8rem 1rem 1.4rem;
  }

  .message__direct a {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 11px;
  }

  .message__profiles {
    margin-top: 1.5rem;
  }

  .message__profiles a {
    min-height: 36px;
    padding: 0.45rem 0.6rem;
    font-size: 9px;
  }

  .site-foot {
    min-height: 104px;
    grid-template-columns: 1fr auto;
    gap: 0.7rem 1rem;
    padding: 0.8rem 1rem;
  }

  .human-badges {
    grid-column: 1;
  }

  .site-foot__links {
    grid-row: 1 / span 2;
    grid-column: 2;
    flex-direction: column;
    align-items: flex-end;
  }

  .imprint-nav {
    min-height: 54px;
  }

  .imprint-nav__brand {
    width: 130px;
  }

  .imprint-nav__brand img {
    top: -7px;
    left: 8px;
    width: 118px;
  }

  .imprint-nav__back {
    padding: 0 1rem;
    font-size: 9px;
  }

  .imprint-main {
    align-content: start;
    padding: 3rem 1rem;
  }

  .imprint-main > h1 {
    margin-bottom: 2rem;
    font-size: 48px;
  }

  .imprint-main__grid {
    grid-template-columns: 1fr;
  }

  .imprint-main__grid section {
    min-height: 190px;
    padding: 1.25rem 1rem;
  }

  .imprint-main__ids {
    grid-column: 1;
  }

  .imprint-main__tax {
    grid-template-columns: 1fr;
  }

  .privacy-main {
    padding: 3rem 1rem;
  }

  .privacy-main > h1 {
    font-size: 48px;
  }

  .privacy-sections {
    grid-template-columns: 1fr;
  }

  .privacy-sections .wide {
    grid-column: 1;
  }

  .privacy-sections section {
    padding: 1.25rem 1rem;
  }
}

@media (min-width: 560px) and (max-width: 760px) {
  .main-nav__brand {
    min-width: 150px;
  }

  .main-nav__brand img {
    top: -11px;
    left: 8px;
    width: 138px;
  }
}

@media (max-width: 430px) {
  .main-nav__brand {
    min-width: 110px;
  }

  .main-nav__brand img {
    top: 0;
    left: 5px;
    width: 100px;
  }

  .main-nav__links a {
    padding: 0 0.35rem;
  }

  .language-switch button {
    width: 24px;
  }
}

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

  .status-ticker p {
    animation: none;
  }
}
