#top,
#warum,
#produkte {
  scroll-margin-top: 75px;
}
      :root,
      [data-theme="light"] {
        --bg: #f5f0e8;
        --surface: #fffaf3;
        --text: #171311;
        --muted: #655d57;
        --line: rgba(23, 19, 17, 0.12);
        --accent: #ba1f33;
        --accent2: #111;
        --accentSoft: #f6d7dd;
      }
      [data-theme="dark"] {
        --bg: #0e0d0d;
        --surface: #171515;
        --text: #f7f0e7;
        --muted: #bcafa4;
        --line: rgba(247, 240, 231, 0.12);
        --accent: #ff5870;
        --accent2: #f7f0e7;
        --accentSoft: rgba(255, 88, 112, 0.12);
      }
      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        font-family: Inter, sans-serif;
        background: var(--bg);
        color: var(--text);
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      .wrap {
        width: min(1160px, calc(100% - 32px));
        margin: auto;
      }
      .top {
        position: sticky;
        top: 0;
        z-index: 30;
        background: color-mix(in srgb, var(--bg) 84%, transparent);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--line);
      }
      .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 14px 0;
      }
      .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
      }
      .brand span:first-child {
        width: 16px;
        height: 16px;
        border-radius: 999px;
        background: var(--accent);
        display: block;
      }
      .actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }
      .btn {
        display: inline-flex;
        min-height: 46px;
        align-items: center;
        justify-content: center;
        padding: 0 18px;
        border-radius: 999px;
        border: 1px solid var(--line);
        font-weight: 800;
      }
      .primary {
        background: var(--accent);
        border-color: transparent;
        color: #fff;
      }
      .toggle {
        width: 46px;
        height: 46px;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: var(--surface);
      }
      .hero {
        padding: 40px 0 20px;
      }
      .grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 18px;
      }
      .card {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 28px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
      }
      .main {
        padding: 34px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 74vh;
        background: linear-gradient(
          180deg,
          var(--surface),
          color-mix(in srgb, var(--accentSoft) 55%, var(--surface))
        );
      }
      .tag {
        display: inline-flex;
        width: max-content;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--accentSoft);
        color: var(--accent);
        font-size: 0.85rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }
      h1 {
        font-family: Oswald, sans-serif;
        font-size: clamp(3.2rem, 10vw, 7rem);
        line-height: 0.9;
        text-transform: uppercase;
        letter-spacing: -0.02em;
        margin: 16px 0;
        max-width: 8ch;
      }
      .lead {
        font-size: 1.1rem;
        color: var(--muted);
        max-width: 60ch;
      }
      .statement {
        display: inline-block;
        background: #111;
        color: #fff;
        padding: 10px 14px;
        font-weight: 800;
        text-transform: uppercase;
        transform: rotate(-2deg);
        margin-top: 12px;
      }
      .side {
        display: grid;
        gap: 18px;
      }
      .mini {
        padding: 24px;
      }
      .mini strong {
        display: block;
        font-family: Oswald, sans-serif;
        font-size: 2rem;
        margin-bottom: 8px;
      }
      .mini p,
      .mini li {
        color: var(--muted);
      }
      .products {
        padding: 0 0 52px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }
      .product {
        overflow: hidden;
      }
      .img {
        aspect-ratio: 4/3;
        background: linear-gradient(135deg, var(--accent), #7c0f20 60%, #111);
        display: grid;
        place-items: center;
        color: #fff;
        font-family: Oswald, sans-serif;
        font-size: 2.1rem;
        text-transform: uppercase;
        text-align: center;
        padding: 14px;
      }

      .img img {
        width: 75%;
        height: 75%;
        object-fit: contain;
        display: block;
      }
      
      .body {
        padding: 20px;
      }
      .body p {
        color: var(--muted);
      }
      .sectiontitle {
        font-family: Oswald, sans-serif;
        font-size: 2rem;
        text-transform: uppercase;
        margin: 0 0 16px;
      }
      .footer {
        padding: 28px 0 46px;
        border-top: 1px solid var(--line);
        color: var(--muted);
      }
      @media (max-width: 920px) {
        .grid,
        .products {
          grid-template-columns: 1fr;
        }
        .main {
          min-height: auto;
        }
      }