@font-face {
  font-family: 'Bitter';
  src: url('assets/fonts/Bitter/static/Bitter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bitter';
  src: url('assets/fonts/Bitter/static/Bitter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SUSE';
  src: url('assets/fonts/SUSE/static/SUSE-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #0303df;
  --color-primary-soft: rgba(3, 3, 223, 0.06);
  --color-text: #000012;
  --color-text-muted: rgba(0, 0, 18, 0.3);
  --color-grey: #f7f7f7;
  --color-on-primary: #e8e8ed;
  --font-display: 'Bitter', Georgia, 'Times New Roman', serif;
  --font-body: 'SUSE', 'Helvetica Neue', Arial, sans-serif;
  --container-max: 95vw;
  --gutter: clamp(20px, 4vw, 44px);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 23px;
  border-radius: 66px;
  font-family: var(--font-body);
  font-size: 16px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-on-primary);
}

.btn-primary:hover {
  background: #0202b8;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 33px var(--gutter) 0;
  max-width: var(--container-max);
  margin: 0 auto;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  max-width: 1146px;
  padding: 12px 20px;
  border-radius: 100px;
  background: rgba(217, 217, 217, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  flex: none;
}

.logo-shape {
  display: block;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  border-radius: 0 0 0 400px;
  transform: rotate(-90deg);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav > a:not(.btn) {
  font-size: 16px;
}

/* Hero */
.hero {
  max-width: var(--container-max);
  margin: 0 auto;
  margin-top: -110px;
}

.hero-image {
  width: 100%;
  height: clamp(400px, 70vw, 800px);
  object-fit: cover;
  border-radius: 0px 0px 140px 25px;
}

/* Quote */
.quote {
  max-width: 900px;
  margin: 0 auto;
  padding: 85px var(--gutter) 0;
  text-align: center;
}

.quote-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 40px);
  margin: 0 0 24px;
  line-height: 1.25;
}

.quote-attribution {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.quote-sub {
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 640px) {
  .quote-sub-break {
    display: none;
  }
}

/* Notice */
.notice {
  max-width: calc(var(--container-max) - 88px);
  margin: 105px auto 0;
  padding: 58px var(--gutter) 62px;
  background: var(--color-grey);
  border-radius: 30px;
  text-align: center;
}

.notice h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  margin: 0 0 16px;
}

.notice p {
  font-size: clamp(16px, 1.6vw, 22px);
  margin: 0 0 32px;
}

/* Footer */
.footer {
  max-width: calc(var(--container-max) - 88px);
  margin: 105px auto 60px;
  padding: 53px var(--gutter) 60px;
  background: var(--color-primary-soft);
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.logo-shape--footer {
  margin-top: 6px;
}

.footer-company {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 4px;
}

.footer-tagline {
  font-size: 16px;
  margin: 0 0 28px;
}

.footer-partners {
  font-size: 16px;
  margin: 0;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 40px;
}

.footer-col p {
  margin: 0 0 4px;
  font-size: 16px;
}

.footer-address {
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.footer-col a:hover,
.footer-address:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .notice,
  .footer {
    max-width: var(--container-max);
  }
  .footer {
    margin-bottom: 24px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "kontakt rechtliches";
  }
  .footer-brand { grid-area: brand; }
}

@media (max-width: 640px) {
  .header {
    padding-top: 16px;
  }
  .header-bar {
    padding: 10px 14px;
  }
  .header-nav {
    gap: 14px;
  }
  .hero {
    margin-top: -90px;
  }
  .hero-image {
    border-radius: 0px 0px 100px 20px;
  }
  .quote {
    padding-top: 56px;
  }
  .quote-attribution {
    display: block;
    margin-top: 8px;
  }
  .notice {
    margin-top: 64px;
    padding: 40px 24px 44px;
  }
  .footer {
    margin-top: 64px;
    padding: 36px 24px 40px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "kontakt"
      "rechtliches";
  }
  .footer-brand {
    gap: 20px;
  }
}
