:root{
    --paper: #fffefb;
    --tint: #f6f4ee;
    --ink: #2b2a27;
    --ink-soft: #5c5a53;
    --line: #d8d5cb;
    --dark: #26251f;
    --dark-ink: #f1efe8;
  }

  * { box-sizing: border-box; }

  body{
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
  }

  .wrap{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
  }

  a { color: inherit; }

  /* ---------- Header ---------- */
  header{
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  header .wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 20px;
  }

  .logo-mark{ display: flex; cursor: pointer; background:none; border:none; padding:0; text-decoration:none; }
  .logo-mark img{ display: block; height: clamp(30px, 5vw, 42px); width: auto; }

  nav{ display: flex; align-items: center; gap: clamp(16px, 3vw, 34px); }
  nav a{
    font-size: 0.86rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--ink-soft);
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    padding: 0;
  }
  nav a:hover{ color: var(--ink); }
  .nav-social{ display: flex; align-items: center; }
  .nav-social svg{ width: 20px; height: 20px; display: block; }
  @media (max-width: 920px){
    header .wrap{ flex-wrap: wrap; row-gap: 10px; }
    nav{ width: 100%; flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
  }
  @media (max-width: 480px){
    nav a{ font-size: 0.76rem; }
    nav{ gap: 6px 12px; }
  }

  /* ---------- Impressum ---------- */
  .legal-section{
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 56px) clamp(64px, 10vw, 96px);
  }
  .legal-section h1{
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin: 0 0 28px;
  }
  .legal-section h2{
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1.8em 0 0.6em;
    color: var(--ink);
  }
  .legal-section p{
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0 0 1em;
  }
  .legal-section a{ text-decoration: underline; }
  .legal-note{ font-size: 0.82rem; font-style: italic; margin-top: 2em; }
  .legal-back{
    display: inline-block;
    margin-top: 2.5em;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
  }
  .legal-back:hover{ color: var(--ink); }

  footer{
    background: var(--dark);
    color: var(--dark-ink);
  }
  footer .wrap{
    padding: clamp(28px, 5vw, 44px) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  footer a{ text-decoration: none; font-size: 0.95rem; }
  footer a:hover{ text-decoration: underline; }
  .fineprint{ font-size: 0.78rem; opacity: 0.7; }
  .fineprint a{ text-decoration: underline; }
