	/* ===== IMP & DATA ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg-deep:    #0a0a0a;
      --bg-dark:    #111111;
      --bg-card:    #1a1812;
      --gold:       #c9a84c;
      --gold-light: #e8c97a;
      --gold-dim:   #8b6f30;
      --cream:      #f5f0e8;
      --cream-dim:  #b5a990;
      --bronze:     #8b7355;
      --nav-h:      72px;
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg-deep);
      color: var(--cream);
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg-deep); }
    ::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; }
    h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--gold); letter-spacing: 0.02em; margin-bottom: 1.2rem; }
    h3 { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--gold-light); margin: 2rem 0 0.6rem; }
    p { color: var(--cream-dim); line-height: 1.85; margin-bottom: 0.9rem; }
    a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
    a:hover { color: var(--gold-light); }
    ul { color: var(--cream-dim); padding-left: 1.4rem; margin-bottom: 0.9rem; }
    ul li { margin-bottom: 0.3rem; line-height: 1.75; }

    /* ===== NAVIGATION ===== */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000; height: var(--nav-h);
      background: rgba(10,10,10,0.97);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .nav-container {
      max-width: 1200px; margin: 0 auto;
      padding: 0 2rem; height: 100%;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-brand { display: flex; align-items: center; text-decoration: none; }
    .nav-brand img { height: 44px; width: auto; filter: invert(1) brightness(0.95); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--cream-dim); font-weight: 400;
      padding: 0.3rem 0; border-bottom: 2px solid transparent;
      transition: color 0.3s, border-color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 6px; background: none; border: none;
    }
    .hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu {
      display: none; position: fixed;
      top: var(--nav-h); left: 0; right: 0;
      background: rgba(10,10,10,0.98);
      border-bottom: 1px solid rgba(201,168,76,0.15);
      padding: 1.5rem 2rem 2rem; z-index: 999;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu ul { list-style: none; padding: 0; }
    .mobile-menu ul li a {
      display: block; padding: 0.9rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--cream-dim);
    }
    .mobile-menu ul li a:hover { color: var(--gold); }

    /* ===== MEANDER DIVIDER ===== */
    .meander-divider {
      width: 100%; height: 50px;
      background-image: url('meander4.svg');
      background-repeat: repeat-x;
      background-size: auto 100%;
      background-position: left center;
      opacity: 0.80;
    }
    @media (max-width: 600px) { .meander-divider { height: 30px; } }

    /* ===== PAGE HEADER ===== */
    .page-header {
      padding-top: var(--nav-h);
      background: linear-gradient(to bottom, #0a0a0a 0%, #141008 100%);
      text-align: center;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(201,168,76,0.1);
    }
    .page-header-inner { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem 0; }
    .page-header .subtitle {
      font-size: 0.78rem; letter-spacing: 0.35em; text-transform: uppercase;
      color: var(--gold-dim); margin-bottom: 0.8rem; display: block;
    }
    .page-header h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: var(--gold); letter-spacing: 0.02em;
    }
    .gold-line {
      width: 60px; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 1.2rem auto 0;
    }
    .back-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      margin-top: 1.8rem;
      font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--cream-dim); border-bottom: 1px solid rgba(201,168,76,0.2);
      padding-bottom: 2px; transition: color 0.3s, border-color 0.3s;
    }
    .back-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

    /* ===== CONTENT AREA ===== */
    .content-wrap { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem 6rem; }

    /* Impressum two-column grid */
    .imprint-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-bottom: 4rem;
    }
    .imprint-block {
      background: var(--bg-card);
      border: 1px solid rgba(201,168,76,0.12);
      padding: 2rem;
    }
    .imprint-block h3 {
      font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--gold); margin: 0 0 1rem;
      padding-bottom: 0.7rem;
      border-bottom: 1px solid rgba(201,168,76,0.2);
    }
    .imprint-block p, .imprint-block address {
      color: var(--cream-dim); font-style: normal; line-height: 1.85; margin-bottom: 0;
    }

    /* Datenschutz prose */
    .datenschutz-section { margin-top: 1rem; }
    .datenschutz-section h2 { margin-bottom: 1.5rem; }
    .datenschutz-section h3 {
      margin: 2.5rem 0 0.7rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(201,168,76,0.1);
    }
    .datenschutz-section h3:first-of-type { border-top: none; padding-top: 0; margin-top: 1rem; }

    /* ===== FOOTER ===== */
    footer {
      background: #070707;
      border-top: 1px solid rgba(201,168,76,0.12);
    }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem; }
    .footer-top {
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
    }
	.footer-brand {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
	font-size: 0.70rem;
	letter-spacing: 0.12em;
	color: var(--cream-dim);
	
	/*align-items: center; /* Vertikale Zentrierung */
    /*gap: 10px; /* Optional: Abstand zwischen Bild und Text */
	}
    .footer-brand img { height: 34px; width: auto; filter: invert(1) brightness(0.85); opacity: 0.75; }
    .footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
    .footer-nav a { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim); }
    .footer-nav a:hover { color: var(--gold); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
    }
    @media (max-width: 700px) {
      .imprint-grid { grid-template-columns: 1fr; gap: 1.5rem; }
      .footer-top { flex-direction: column; text-align: center; }
      .footer-nav { justify-content: center; }
    }
 