  :root {
    /* ── Midori MD-Papier · warmes Cremegelb ── */
    --bg: #f3ecd8;
    --bg-soft: #ece4cb;
    --surface: #f8f2dd;
    --surface-hover: #fbf6e6;
    --line: #d9cfae;
    --text: #2a2418;             /* dunkle Tinte */
    --text-muted: #6f6750;
    --accent: #8b6f3a;           /* gebranntes Sienna */
    --accent-soft: #a3854d;
    --accent-glow: rgba(139, 111, 58, 0.12);
    --green-mark: #6b8f63;        /* dezenter Wald-Akzent für „privat" */
    --radius: 14px;
    --radius-lg: 22px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
      radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 111, 58, 0.08), transparent 60%),
      radial-gradient(ellipse 60% 40% at 80% 110%, rgba(107, 143, 99, 0.07), transparent 60%);
  }

  /* feine Papier-Körnung im Hintergrund */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.07;
    z-index: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    position: relative;
    z-index: 1;
  }

  /* ─── Navigation ─────────────────────────────── */
  header.top {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
  }

  .top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 4px;
    object-fit: contain;
    display: block;
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .brand-name {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .brand-sub {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .top-meta {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .top-meta .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green-mark);
    box-shadow: 0 0 0 4px rgba(127, 163, 122, 0.15);
    animation: pulse 2.4s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
  }

  /* ─── Hero ───────────────────────────────────── */
  .hero {
    padding: clamp(60px, 12vw, 130px) 0 clamp(40px, 8vw, 80px);
    text-align: left;
    position: relative;
  }

  .hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    margin-bottom: 28px;
  }

  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(40px, 7vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    max-width: 14ch;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
  }

  .hero p.lead {
    font-size: clamp(16px, 1.7vw, 19px);
    color: var(--text-muted);
    max-width: 58ch;
    margin-bottom: 12px;
  }

  /* ─── Services ───────────────────────────────── */
  .services-section {
    padding: clamp(40px, 8vw, 80px) 0 clamp(60px, 10vw, 110px);
  }

  .section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .section-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -0.02em;
  }

  .section-head .num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--accent);
    letter-spacing: 0.05em;
  }

  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
  }

  .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, var(--accent-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .card:hover {
    border-color: var(--accent);
    background: var(--surface-hover);
    transform: translateY(-4px);
  }

  .card:hover::before {
    opacity: 1;
  }

  .card-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
  }

  .card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .card-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  .card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }

  .card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.55;
    flex-grow: 1;
  }

  .card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 14px;
  }

  .card-domain {
    color: var(--accent);
    font-family: 'Manrope', monospace;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .card-arrow {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    transition: all 0.3s ease;
  }

  .card:hover .card-arrow {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(-45deg);
  }

  .card:hover .card-arrow svg path {
    stroke: var(--bg);
  }

  .card-arrow svg path {
    stroke: var(--accent);
    transition: stroke 0.3s ease;
  }

  /* ─── Footer ─────────────────────────────────── */
  footer.bottom {
    border-top: 1px solid var(--line);
    padding: 56px 0 40px;
    background: var(--bg-soft);
  }

  .footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 8px;
    object-fit: contain;
  }

  .footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
  }

  .footer-brand-text strong {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--text);
  }

  .footer-brand-text span {
    font-size: 13px;
    color: var(--text-muted);
  }

  .footer-meta {
    font-size: 13px;
    color: var(--text-muted);
    text-align: right;
  }

  .footer-meta a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }

  .footer-meta a:hover {
    border-bottom-color: var(--accent);
  }

  /* ─── Reveal-Animation ──────────────────────── */
  .reveal { opacity: 0; transform: translateY(20px); animation: rev 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
  .reveal:nth-child(1) { animation-delay: 0.05s; }
  .reveal:nth-child(2) { animation-delay: 0.15s; }
  .reveal:nth-child(3) { animation-delay: 0.25s; }
  .reveal:nth-child(4) { animation-delay: 0.35s; }

  @keyframes rev {
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── Responsive ─────────────────────────────── */
  @media (max-width: 600px) {
    .top-meta { display: none; }
    .footer-grid { flex-direction: column; align-items: flex-start; }
    .footer-meta { text-align: left; }
  }
