:root {
      --cream: #FAF8F4;
      --warm-white: #F1EEE8;
      --sand: #E4E0D8;
      --taupe: #878075;
      --mocha: #46413A;
      --espresso: #191714;
      --charcoal: #191714;
      --accent: #2B2823;
      --accent-light: #CFC9BF;
      --text: #191714;
      --text-light: #46413A;
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-sans: 'Jost', sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-sans);
      background: var(--warm-white);
      color: var(--text);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* GRAIN OVERLAY – matches index.html */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* NAV – identisch zu index.html / landing.css */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 48px;
      background: rgba(250, 248, 244, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--sand);
    }
    .nav-logo {
      display: block;
      text-decoration: none;
    }
    .nav-logo img {
      height: 48px;
      width: auto;
      display: block;
    }
    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-sans);
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--text-light);
      transition: color 0.3s;
    }
    .nav-links a:hover,
    .nav-links a.active { color: var(--accent); }

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 30px;
      height: 24px;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      z-index: 210;
    }
    .nav-toggle span {
      display: block;
      height: 2px;
      width: 100%;
      background: var(--espresso);
      transition: transform 0.25s ease, opacity 0.25s ease;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(30, 27, 24, 0.4);
      z-index: 190;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .nav-overlay.open { display: block; opacity: 1; }
    body.nav-open { overflow: hidden; }

    /* CONTENT */
    .page-header {
      background: var(--cream);
      margin-top: 80px;
      padding: 72px 48px 56px;
      border-bottom: 1px solid var(--sand);
    }
    .page-header p {
      font-family: var(--font-sans);
      font-size: 0.7rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .page-header h1 {
      font-family: var(--font-serif);
      font-size: clamp(2.4rem, 4vw, 3.5rem);
      font-weight: 300;
      color: var(--espresso);
    }

    .content {
      max-width: 760px;
      margin: 0 auto;
      padding: 72px 48px 120px;
    }
    .content section {
      margin-bottom: 52px;
      padding-bottom: 52px;
      border-bottom: 1px solid var(--sand);
    }
    .content section:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }
    h2 {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--espresso);
      margin-bottom: 20px;
    }
    p {
      font-size: 0.95rem;
      color: var(--text-light);
      margin-bottom: 12px;
    }
    p:last-child { margin-bottom: 0; }
    a {
      color: var(--accent);
      text-decoration: none;
    }
    a:hover { text-decoration: underline; }
    .address-block {
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.9;
    }
    .label {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--taupe);
      display: block;
      margin-bottom: 4px;
      margin-top: 20px;
    }
    .label:first-child { margin-top: 0; }

    /* FOOTER */
    footer {
      background: var(--charcoal);
      padding: 28px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-logo { font-family: var(--font-serif); font-size: 1.1rem; color: var(--taupe); }
    .footer-links { display: flex; gap: 28px; list-style: none; }
    .footer-links a {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--taupe);
      text-decoration: none;
      transition: color 0.25s;
    }
    .footer-links a:hover { color: var(--accent-light); }
    .footer-copy { font-size: 0.72rem; color: rgba(184,170,151,0.5); }

    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .nav-toggle { display: flex; margin-left: auto; }
      .nav-links {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(78vw, 320px);
        background: var(--cream);
        padding: 96px 32px 32px;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        z-index: 200;
      }
      .nav-links.open { transform: translateX(0); }
      .nav-links a { color: var(--espresso) !important; font-size: 0.95rem; }
      .page-header { margin-top: 72px; padding: 48px 24px 40px; }
      .content { padding: 48px 24px 80px; }
      footer { flex-direction: column; text-align: center; padding: 24px; }
    }
