@font-face {
  font-family: "Figtree Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 300 900;
  src: url("figtree-latin-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Figtree Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 300 900;
  src: url("figtree-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --blue: #084080;
  --blue-bright: #1f77b4;
  --blue-soft: #b5d8ef;
  --green: #94bf5a;
  --paper: #efe9e5;
  --white: #fbfaf8;
  --ink: #172536;
  --rule: rgba(8, 64, 128, 0.2);
  --page: min(1180px, calc(100vw - 96px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Figtree Variable", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 420;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 5px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--page);
  align-items: center;
  justify-content: space-between;
  padding: 34px 0;
  transform: translateX(-50%);
}

.brand {
  display: block;
  line-height: 0;
}

.brand img {
  width: clamp(165px, 18vw, 230px);
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 560;
  letter-spacing: 0.01em;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

.language-switch {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-left: 2px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.language-switch > span:not([aria-hidden="true"]) {
  color: var(--ink);
}

.language-switch > span[aria-hidden="true"] {
  color: rgba(8, 64, 128, 0.42);
  font-weight: 400;
}

.language-switch a {
  color: var(--blue);
}

.nav-contact {
  border: 1px solid var(--blue);
  border-radius: 999px;
  padding: 8px 16px;
}

.nav-contact:hover {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
}

.hero::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--blue) 0 75%, var(--green) 75% 82%, transparent 82%);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: var(--page);
  padding: 180px 0 110px;
}

.eyebrow {
  margin: 0 0 38px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 930px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(60px, 7.6vw, 112px);
  font-weight: 440;
  letter-spacing: -0.052em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
  max-width: 760px;
  margin-top: 0.18em;
  font-size: 0.58em;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero-intro {
  max-width: 550px;
  margin: 40px 0 48px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
}

.text-link {
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
}

.sound-rings {
  position: absolute;
  right: -17vw;
  bottom: -22vw;
  width: min(68vw, 920px);
  aspect-ratio: 1;
  opacity: 0.34;
}

.sound-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--blue-bright);
  border-radius: 50%;
}

.sound-rings span:nth-child(2) {
  inset: 16%;
}

.sound-rings span:nth-child(3) {
  inset: 32%;
  border-color: var(--green);
}

.content-section,
.contrast-inner {
  display: grid;
  width: var(--page);
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 58px;
  margin: 0 auto;
  padding: 150px 0;
}

.section-number {
  margin: 4px 0 0;
  color: var(--blue);
  font-size: clamp(23px, 2.3vw, 31px);
  font-weight: 560;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.section-copy > h2,
.contact h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 470;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.section-copy > h2 {
  max-width: 900px;
  color: var(--blue);
}

.body-copy {
  max-width: 760px;
  margin-top: 54px;
}

.body-copy p {
  margin: 0 0 1.35em;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.opening-copy > p:first-child {
  color: var(--blue);
  font-size: clamp(23px, 2.3vw, 31px);
  font-weight: 490;
  line-height: 1.35;
}

.closing-line {
  color: var(--blue);
  font-size: clamp(23px, 2.3vw, 31px);
  font-weight: 490;
  line-height: 1.35;
}

.contrast {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.contrast::after {
  position: absolute;
  right: -120px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(181, 216, 239, 0.32);
  border-radius: 50%;
  content: "";
}

.contrast .section-number {
  color: var(--blue-soft);
}

.contrast .section-copy > h2 {
  color: var(--white);
}

.contrast .body-copy {
  max-width: 850px;
}

.pull-quote {
  margin-top: 42px !important;
  padding-top: 0;
  border-top: 0;
  color: var(--blue-soft);
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 450;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.topics {
  border-bottom: 1px solid var(--rule);
}

.topic-list {
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.topic-list li {
  position: relative;
  padding: 16px 58px 16px 0;
  border-top: 1px solid var(--rule);
  color: var(--blue);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.22;
}

.topic-list li:last-child {
  border-bottom: 1px solid var(--rule);
}

.topic-list li::after {
  position: absolute;
  top: 16px;
  right: 0;
  color: var(--green);
  content: "·";
  font-size: 42px;
  line-height: 0.7;
}

.topic-outro {
  margin-top: 52px;
  font-size: 20px;
}

.topic-outro p {
  margin: 0 0 5px;
}

.topic-outro p:last-child {
  color: var(--blue);
  font-weight: 650;
}

.about {
  background: var(--white);
}

.about-body-copy {
  max-width: 820px;
}

.about-finale {
  position: relative;
  height: clamp(460px, 52vw, 610px);
  margin-top: 58px;
  overflow: hidden;
  background: #f4f4f2;
}

.about-photo {
  position: absolute;
  inset: 0;
  margin: 0;
}

.about-photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
}

.photo-credit {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  padding: 0;
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.about-finale-copy {
  position: absolute;
  top: 50%;
  left: clamp(20px, 4vw, 50px);
  width: min(37%, 400px);
  margin: 0;
  padding: 20px 22px 22px;
  border-top: 5px solid var(--green);
  border-left: 0;
  background: rgba(251, 250, 248, 0.97);
  transform: translateY(-50%);
}

.about-finale-copy .about-emphasis {
  font-size: clamp(21px, 2.4vw, 30px);
}

blockquote {
  align-self: start;
  margin: 0;
  padding: 0 0 0 28px;
  border-left: 5px solid var(--green);
  color: var(--blue);
  font-size: clamp(23px, 2.25vw, 31px);
  font-weight: 480;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

blockquote p {
  margin: 0;
}

.about-transition {
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.55;
}

.about-emphasis {
  margin-top: 20px;
}

.partners {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: #eef3f7;
}

.partners-inner {
  display: grid;
  width: var(--page);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(55px, 9vw, 140px);
  align-items: start;
  margin: 0 auto;
  padding: 100px 0;
}

.partners-copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 470;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.partners-copy p {
  max-width: 540px;
  margin: 30px 0 0;
}

.partner-list {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--rule);
  list-style: none;
}

.partner-list li {
  border-top: 1px solid var(--rule);
}

.partner-list a {
  display: flex;
  gap: 30px;
  align-items: baseline;
  justify-content: space-between;
  padding: 21px 0;
  color: var(--blue);
  font-size: clamp(18px, 1.75vw, 24px);
  font-weight: 560;
  line-height: 1.3;
  text-decoration: none;
}

.partner-list a span:last-child {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 1.05em;
}

.partner-list a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.contact {
  background: var(--paper);
}

.contact-inner {
  width: var(--page);
  margin: 0 auto;
  padding: 150px 0 135px;
}

.contact h2 {
  max-width: 900px;
  color: var(--blue);
  font-size: clamp(54px, 7vw, 102px);
}

.contact-lead {
  margin: 52px 0 8px;
  font-size: clamp(23px, 2.5vw, 33px);
}

.contact-note {
  max-width: 620px;
  margin: 0;
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 66px;
}

.contact-links a {
  color: var(--blue);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 620;
}

footer {
  display: grid;
  width: var(--page);
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  margin: 0 auto;
  padding: 52px 0 70px;
  color: var(--blue);
  font-size: 14px;
  line-height: 1.55;
}

footer div {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: block;
  width: fit-content;
  line-height: 0;
}

.footer-brand img {
  width: clamp(125px, 13vw, 175px);
  height: auto;
}

footer .legal-links {
  gap: 3px;
}

footer .legal-links a {
  width: max-content;
}

/* Ruhige, dokumentartige Gestaltung für Impressum und Datenschutz. */
.legal-page {
  min-height: 100vh;
  background: var(--white);
}

.legal-page .site-header {
  position: relative;
  left: auto;
  transform: none;
}

.legal-page .site-header nav a:not(.nav-contact) {
  display: inline;
}

.legal-main {
  width: var(--page);
  margin: 0 auto;
  padding: 105px 0 130px;
}

.legal-kicker {
  margin: 0 0 22px;
  color: var(--blue-bright);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-main h1 {
  max-width: 900px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 450;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(55px, 9vw, 140px);
  margin-top: 92px;
  padding-top: 42px;
  border-top: 1px solid var(--rule);
}

.legal-aside {
  color: var(--blue);
  font-size: 15px;
  line-height: 1.55;
}

.legal-aside p {
  margin: 0 0 1.5em;
}

.legal-content {
  max-width: 760px;
}

.legal-content section + section {
  margin-top: 58px;
  padding-top: 42px;
  border-top: 1px solid var(--rule);
}

.legal-content h2 {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.legal-content h3 {
  margin: 30px 0 8px;
  color: var(--blue);
  font-size: 18px;
}

.legal-content p,
.legal-content ul,
.legal-content dl {
  margin: 0 0 1.25em;
}

.legal-content ul {
  padding-left: 1.2em;
}

.legal-content li + li {
  margin-top: 0.45em;
}

.legal-data {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 12px 28px;
}

.legal-data dt {
  color: var(--blue);
  font-weight: 650;
}

.legal-data dd {
  margin: 0;
}

.legal-page footer {
  border-top: 1px solid var(--rule);
}

.footer-top-link {
  align-self: start;
  font-weight: 620;
}

@media (max-width: 850px) {
  :root {
    --page: min(100% - 44px, 680px);
  }

  .site-header {
    padding: 25px 0;
  }

  nav > a:not(.nav-contact) {
    display: none;
  }

  .hero-copy {
    padding-top: 150px;
  }

  .content-section,
  .contrast-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 105px 0;
  }

  .section-number {
    margin: 0;
  }

  .partners-inner {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 85px 0;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top-link {
    grid-column: 1 / -1;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 65px;
  }
}

@media (max-width: 700px) {
  .about-finale {
    display: flex;
    height: auto;
    flex-direction: column;
    margin-top: 44px;
    overflow: visible;
  }

  .about-photo {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .about-photo > img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
  }

  .about-finale-copy {
    position: static;
    width: 100%;
    padding: 24px 0 0;
    background: transparent;
    transform: none;
  }
}

@media (max-width: 540px) {
  :root {
    --page: calc(100% - 32px);
  }

  body {
    font-size: 17px;
  }

  .brand img {
    width: 150px;
  }

  .nav-contact {
    padding: 6px 13px;
  }

  nav {
    gap: 14px;
  }

  .language-switch {
    gap: 5px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-copy {
    padding: 135px 0 90px;
  }

  .eyebrow {
    max-width: 260px;
    margin-bottom: 30px;
    line-height: 1.55;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 68px);
  }

  .hero h1 span {
    margin-top: 0.3em;
    font-size: 0.55em;
  }

  .sound-rings {
    right: -55vw;
    bottom: -10vw;
    width: 135vw;
  }

  .content-section,
  .contrast-inner,
  .contact-inner {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .body-copy {
    margin-top: 38px;
  }

  .topic-list {
    margin-top: 45px;
  }

  .topic-list li {
    padding: 16px 36px 16px 0;
  }

  .contact-links {
    flex-direction: column;
    margin-top: 50px;
  }

  .partners-inner {
    padding: 72px 0;
  }

  .partner-list a {
    gap: 18px;
    padding: 18px 0;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 42px 0 55px;
  }

  .footer-top-link {
    grid-column: auto;
  }

  .legal-main {
    padding: 68px 0 90px;
  }

  .legal-layout {
    margin-top: 48px;
    padding-top: 30px;
  }

  .legal-data {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .legal-data dd + dt {
    margin-top: 14px;
  }
}

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