
    :root {
      --bg: #f7f5f0;
      --surface: #ffffff;
      --text: #1e1e1e;
      --muted: #707070;
      --accent: #e85d3f;
      --border: #e6e2db;
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

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

    img {
      display: block;
      width: 100%;
      object-fit: cover;
    }

    .container {
      width: min(100% - 40px, var(--max-width));
      margin: auto;
    }

    /* Navigation */
    header {
      border-bottom: 1px solid var(--border);
      background: rgba(247, 245, 240, 0.95);
      position: sticky;
      top: 0;
      z-index: 10;
    }

    nav {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-size: 1.3rem;
      font-weight: 800;
    }

    .logo span {
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
      font-size: 0.95rem;
    }

    .nav-links a:hover {
      color: var(--accent);
    }

    /* Hero */
    .hero {
      padding: 100px 0 80px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 70px;
      align-items: center;
    }

    .eyebrow {
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 18px;
    }

    h1 {
      font-size: clamp(3rem, 7vw, 6rem);
      line-height: 0.95;
     /*  letter-spacing: -4px; */
      letter-spacing: 0px;
      margin-bottom: 28px;
    }

    .hero-text {
      max-width: 560px;
      color: var(--muted);
      font-size: 1.15rem;
      margin-bottom: 32px;
    }

    .button {
      display: inline-block;
      background: var(--text);
      color: white;
      padding: 13px 22px;
      border-radius: 4px;
      font-weight: 700;
    }

    .button:hover {
      background: var(--accent);
    }

    .hero-image {
      height: 500px;
      border-radius: 6px;
      background: #ddd;
    }

    /* Blog */
    section {
      padding: 90px 0;
    }

    .section-heading {
      display: flex;
      justify-content: space-between;
      align-items: end;
      margin-bottom: 35px;
    }

    h2 {
      font-size: 2.4rem;
      letter-spacing: -1px;
    }

    .section-heading p {
      color: var(--muted);
    }

    .posts {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .post {
      background: var(--surface);
      border: 1px solid var(--border);
      transition: transform 0.2s ease;
    }

    .post:hover {
      transform: translateY(-5px);
    }

    .post-image {
      height: 220px;
      background: #ddd;
    }

    .post-content {
      padding: 24px;
    }

    .category {
      color: var(--accent);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .post h3 {
      font-size: 1.4rem;
      line-height: 1.2;
      margin: 10px 0;
    }

    .post p {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .read-more {
      display: inline-block;
      margin-top: 18px;
      font-weight: 700;
      font-size: 0.9rem;
    }

    /* About */
    .about {
      background: var(--text);
      color: white;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about h2 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .about p {
      color: #bbb;
      font-size: 1.05rem;
    }

    /* Newsletter */
    .newsletter {
      text-align: center;
      max-width: 650px;
      margin: auto;
    }

    .newsletter p {
      color: var(--muted);
      margin: 15px 0 28px;
    }

    .newsletter-form {
      display: flex;
      gap: 10px;
    }

    .newsletter-form input {
      flex: 1;
      border: 1px solid var(--border);
      padding: 14px;
      font-size: 1rem;
      background: white;
    }

    .newsletter-form button {
      border: none;
      background: var(--accent);
      color: white;
      padding: 0 24px;
      font-weight: 700;
      cursor: pointer;
    }

    /* Footer */
    footer {
      border-top: 1px solid var(--border);
      padding: 30px 0;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
    }

    /* Responsive */
    @media (max-width: 800px) {
      .nav-links {
        display: flex /*none*/;
      }

      .hero {
        padding: 70px 0;
      }

      .hero-grid,
      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero-image {
        height: 350px;
      }

      .posts {
        grid-template-columns: 1fr;
      }

      .section-heading {
        display: block;
      }

      .section-heading p {
        margin-top: 8px;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .newsletter-form button {
        padding: 14px;
      }

      .footer-inner {
        flex-direction: row;
        gap: 10px;
      }
    }

/* Tom */
.bold {
      color: var(--accent);
      font-weight: 700;
}

.haken {
      color: green;
      font-weight: 700;
      font-size: 1.4rem;
}

.kreuz {
      color: red;
      font-weight: 700;
      font-size: 1.4rem;
}

    /* Impressum */
    .impressum {
      text-align: center;
      max-width: 650px;
      margin: auto;
    }

    .impressum h3 {
      font-size: 1.2rem;
      /*color: green;*/
      }


/*    .newsletter p {
      color: var(--muted);
      margin: 15px 0 28px;
    }

    .newsletter-form {
      display: flex;
      gap: 10px;
    }

    .newsletter-form input {
      flex: 1;
      border: 1px solid var(--border);
      padding: 14px;
      font-size: 1rem;
      background: white;
    }

    .newsletter-form button {
      border: none;
      background: var(--accent);
      color: white;
      padding: 0 24px;
      font-weight: 700;
      cursor: pointer;
    }
*/



