@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --background: #ffffff;
  --text: #1d252c;
  --muted: #5a6772;

  /* Pantone 3125C approx */
  --accent: #00aec7;
  --accent-dark: #008ea5;

  --border: #dce8ed;
  --max-width: 1120px;

  /* Max. 3 font sizes */
  --fs-base: 1rem;     /* 16px */
  --fs-h2: 1.5rem;     /* 24px */
  --fs-h1: 2.25rem;    /* 36px */

  /* Anchor offset for fixed/sticky header */
  --header-offset: 8rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 300;
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
}

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

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

.page-shell {
  min-height: 100vh;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 232, 237, 0.95);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 1.5rem), var(--max-width));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.85rem 0 0.75rem;
}

.header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.brand-left {
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo-link {
  display: inline-flex;
  align-items: flex-start;
  width: 170px;
  max-width: 46vw;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.brand-right {
  text-align: right;
  min-width: 0;
}

.brand-title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.brand-subtitle {
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.25;
}

/* Navigation: linear list under logo/name */
.nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  width: 100%;
  max-width: 100%;
  gap: 0.15rem;
  margin-top: 0.35rem;
}

.nav a {
  display: block;
  text-align: center;
  font-size: var(--fs-base);
  color: var(--muted);
  padding: 0.35rem 0.4rem;
  border-radius: 0.5rem;
  line-height: 1.2;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Main / sections */
.section {
  padding: 2.6rem 0;
  scroll-margin-top: var(--header-offset);
}

.section + .section .section-inner {
  border-top: 1px solid var(--border);
  padding-top: 2.6rem;
}

.section-head {
  margin-bottom: 1.3rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent-dark);
  font-size: var(--fs-base);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.section-kicker::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
}

.section h2 {
  margin: 0;
  font-size: var(--fs-h2);
  line-height: 1.2;
  font-weight: 700;
}

.section p {
  margin: 0 0 1rem;
}

.grid-two {
  display: grid;
  gap: 1.2rem;
}

.info-box {
  padding: 0.9rem 0 1rem;
  border-top: 1px solid var(--border);
}

.info-box:first-child {
  padding-top: 0;
  border-top: 0;
}

.info-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: var(--fs-base);
}

.info-value {
  display: block;
  font-weight: 700;
}

/* Hero */
.hero {
  padding: 4.2rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.hero h1 {
  margin: 0;
  font-size: var(--fs-h1);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 1.1rem 0 0;
  max-width: 56rem;
  color: var(--muted);
  font-size: var(--fs-base);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: var(--fs-base);
}

.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
}

/* Lists */
.services-list {
  display: grid;
  /* No separator lines between items */
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 0;
}

.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0;
  border-bottom: 0;
}

.services-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 10px;
}

/* Compact blocks */
.contact-compact,
.legal-compact {
  max-width: 56rem;
}

.compact-entity {
  margin-bottom: 0.25rem;
}

.compact-lines {
  margin: 0;
}

.compact-lines + .compact-lines {
  margin-top: 0.75rem;
}

.text-link,
.legal-subsection a {
  color: var(--accent-dark);
}

.text-link:hover,
.legal-subsection a:hover,
.text-link:focus-visible,
.legal-subsection a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Legal subsections */
.legal-subsection {
  max-width: 56rem;
  margin-top: 1.6rem;
}

.legal-subsection:first-of-type {
  margin-top: 0;
}

.legal-subsection h3 {
  margin: 0 0 0.5rem;
  font-size: var(--fs-base);
  line-height: 1.35;
  font-weight: 700;
}

.legal-list {
  margin: 0.35rem 0 0 1.2rem;
  padding: 0;
}

.legal-list li + li {
  margin-top: 0.45rem;
}

.legal-note {
  color: var(--muted);
  max-width: 56rem;
  margin-top: 1.4rem;
  font-size: var(--fs-base);
}

/* Footer */
.site-footer {
  padding: 2rem 0 3rem;
}

.footer-inner {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  color: var(--muted);
  font-size: var(--fs-base);
}

/* Responsive */
@media (min-width: 760px) {
  :root {
    --header-offset: 7.5rem;
  }

  .hero {
    padding: 5rem 0 3.2rem;
  }

  .grid-two {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .brand-logo-link {
    width: 321px; /* ~30% größer als 247px */
  }
}

@media (max-width: 759px) {
  :root {
    --header-offset: 9rem;
  }

  .header-inner {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .brand-logo-link {
    width: 221px; /* ~30% größer als 170px */
    max-width: 58vw;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
