:root {
  color-scheme: light;
  --ink: #171514;
  --muted: #6c6460;
  --line: #e5ded8;
  --paper: #fbfaf8;
  --white: #ffffff;
  --taupe: #8f8278;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a:hover,
a:focus-visible {
  color: var(--taupe);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgb(251 250 248 / 94%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 18px;
  font-weight: 850;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.hero {
  display: grid;
  min-height: calc(100svh - 78px);
  place-items: center;
  padding: clamp(28px, 6vw, 72px) clamp(18px, 5vw, 64px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero img {
  display: block;
  width: auto;
  max-width: min(860px, 100%);
  max-height: calc(100svh - 190px);
  height: auto;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-alt {
  background: var(--white);
}

.section-inner {
  max-width: 820px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--taupe);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 34px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.impressum p,
.impressum address,
.legal p,
.legal address {
  font-size: 17px;
}

.impressum address,
.legal address {
  margin-bottom: 24px;
  color: var(--muted);
  font-style: normal;
}

.impressum strong,
.legal strong {
  color: var(--ink);
}

.impressum a,
.legal a {
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal h2 {
  margin-bottom: 30px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  font-size: 14px;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 700px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    min-height: 72svh;
  }
}

@media (max-width: 430px) {
  nav {
    flex-direction: column;
  }
}
