.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}
.section { padding: 38px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(10, 3, 11, 0.55);
  border-bottom: 1px solid rgba(255, 180, 110, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  font-weight: 800;
  font-size: 1.1rem;
  white-space: nowrap;
}
.brand span {
  background: linear-gradient(90deg, #fff4ea 0%, #ffcfab 38%, #ffb347 58%, #cf9cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.menu {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
}

.menu-toggle {
  display: none;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 20px;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.site-footer {
  padding: 28px 0 40px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

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

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 190, 120, 0.18);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-weight: 700;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
  }

  .menu.open {
    display: flex;
  }

  .nav {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .grid-3,
  .two-col {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-logo strong {
  background: linear-gradient(90deg, #fff4ea 0%, #ffcfab 38%, #ffb347 58%, #cf9cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Header-Zurück-Button */
.header-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 190, 120, 0.22);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.header-back:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 179, 71, 0.75);
  background: rgba(255, 122, 24, 0.14);
}

@media (max-width: 860px) {
  .header-back {
    order: 2;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .menu-toggle {
    order: 3;
  }

  .menu {
    order: 4;
  }

  .brand-logo {
    order: 1;
    flex: 1 1 auto;
  }
}

@media (max-width: 390px) {
  .brand {
    font-size: 0.98rem;
  }

  .brand-logo img {
    width: 34px;
    height: 34px;
  }

  .header-back,
  .menu-toggle {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.82rem;
  }
}
