    :root {
      --ink:        #23262b;
      --ink-soft:   #2f333a;
      --green:      #b22a33;
      --green-dark: #931f27;
      --green-pale: #f7ecec;
      --paper:      #f4f2ed;
      --surface:    #ffffff;
      --line:       #ddd8cf;
      --line-soft:  #e7e3da;
      --text:       #33373d;
      --text-soft:  #5d626a;
      --text-mut:   #8b8f96;
      --container:  1160px;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 120px; }
    body {
      font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--paper);
      line-height: 1.7; -webkit-font-smoothing: antialiased; font-size: 17px;
    }
    h1,h2,h3 { font-family: 'Fraunces', Georgia, serif; color: var(--ink); font-weight: 500; line-height: 1.18; letter-spacing: -.3px; }
    h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
    h3 { font-size: 1.3rem; }
    p { color: var(--text-soft); }
    a { color: inherit; text-decoration: none; }

    .container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
    .section { padding: 100px 0; }
    .divider { height: 1px; background: var(--line); }

    .kicker {
      font-family: 'Inter', sans-serif; font-size: .76rem; font-weight: 600; letter-spacing: 2.2px;
      text-transform: uppercase; color: var(--green-dark); display: inline-flex; align-items: center; gap: 10px;
    }
    .kicker::before { content: ""; width: 26px; height: 1.5px; background: var(--green); display: inline-block; }
    .lead { font-size: 1.15rem; color: var(--text-soft); max-width: 720px; }

    .btn {
      display: inline-flex; align-items: center; gap: 9px; font-family: 'Inter', sans-serif;
      font-weight: 600; font-size: .96rem; padding: 14px 28px; border-radius: 2px;
      cursor: pointer; border: 1.5px solid transparent; transition: .2s;
    }
    .btn-primary { background: var(--green); color: #fff; }
    .btn-primary:hover { background: var(--green-dark); }
    .btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
    .btn-outline:hover { background: var(--ink); color: #fff; }

    /* ===== Header ===== */
    .topbar { background: var(--ink); color: #cfd2d6; font-size: .82rem; }
    .topbar .container { display: flex; justify-content: space-between; align-items: center; height: 40px; }
    .topbar .ti { display: flex; gap: 24px; }
    .topbar .ti span { display: inline-flex; align-items: center; gap: 7px; }
    .topbar .ti svg { color: var(--green); opacity: .9; }
    .lang { display: flex; align-items: center; gap: 8px; }
    .lang-btn { background: none; border: none; color: #9aa0a8; cursor: pointer; font: inherit; font-size: .82rem; padding: 2px 1px; transition: .15s; }
    .lang-btn:hover { color: #fff; }
    .lang-btn.active { color: #fff; font-weight: 600; border-bottom: 1.5px solid var(--green); }
    .lang .sep { color: #565a60; }

    header { position: sticky; top: 0; z-index: 100; background: rgba(244,242,237,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
    .nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
    .logo { display: flex; flex-direction: column; line-height: 1; flex: 0 0 auto; }
    .logo b { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.4rem; color: var(--ink); letter-spacing: .2px; }
    .logo span { font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-mut); margin-top: 5px; font-weight: 600; }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a { font-size: .92rem; font-weight: 500; color: var(--text-soft); padding: 8px 13px; white-space: nowrap; transition: .15s; position: relative; }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 1.5px; background: var(--green); transform: scaleX(0); transition: transform .2s; }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-links a.nav-cta { color: #fff; margin-left: 12px; }
    .nav-links a.nav-cta::after { display: none; }
    .menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
    .menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

    /* ===== Hero ===== */
    .hero { padding: 84px 0 92px; position: relative; }
    .hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 64px; align-items: center; }
    .hero h1 { font-size: clamp(2.4rem, 4.8vw, 3.7rem); font-weight: 500; margin: 26px 0 26px; }
    .hero h1 em { font-style: italic; color: var(--green-dark); }
    .hero p { font-size: 1.16rem; max-width: 540px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

    .vcard { background: var(--surface); border: 1px solid var(--line); }
    .portrait { height: 340px; background: linear-gradient(150deg, var(--ink), #3a4a46 70%, var(--green-dark)); position: relative; overflow: hidden; display: grid; place-items: center; }
    .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
    .portrait .ini { font-family: 'Fraunces', serif; font-size: 3.6rem; color: #fff; opacity: .92; letter-spacing: 2px; }
    .vcard-body { padding: 26px; }
    .vcard-body .nm { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--ink); }
    .vcard-body .rl { font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-dark); font-weight: 600; margin-top: 3px; }
    .vc-row { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line-soft); font-size: .9rem; margin-top: 4px; }
    .vc-row:first-of-type { margin-top: 18px; }
    .vc-row svg { color: var(--green); flex: 0 0 auto; margin-top: 3px; }
    .vc-row .k { display: block; font-size: .68rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mut); }
    .vc-row .v { color: var(--text); font-weight: 500; }

    .trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
    .trust .container { display: grid; grid-template-columns: repeat(3, 1fr); }
    .trust .ti { padding: 30px 24px; display: flex; gap: 16px; align-items: center; border-right: 1px solid var(--line-soft); }
    .trust .ti:last-child { border-right: none; }
    .trust .ti .n { font-family: 'Fraunces', serif; font-size: 1.7rem; color: var(--green-dark); flex: 0 0 auto; }
    .trust .ti b { color: var(--ink); display: block; font-size: .98rem; }
    .trust .ti span { font-size: .86rem; color: var(--text-mut); }

    .shead { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: end; margin-bottom: 56px; }
    .shead h2 { margin-top: 16px; }
    .shead .intro { font-size: 1.06rem; color: var(--text-soft); }

    .areas { border-top: 1px solid var(--line); }
    .area { display: grid; grid-template-columns: 70px 1fr; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--line); transition: .2s; }
    .area:hover { background: var(--surface); padding-left: 16px; padding-right: 16px; }
    .area .num { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--green); }
    .area-body { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: start; }
    .area-body h3 { color: var(--ink); }
    .area-body p { font-size: .98rem; margin: 0; }
    @media (max-width: 760px) { .area-body { grid-template-columns: 1fr; gap: 8px; } }

    .about { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    .about .body p { margin-bottom: 18px; }
    .values { display: grid; gap: 0; border-top: 1px solid var(--line); }
    .val { padding: 22px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 150px 1fr; gap: 20px; }
    .val h3 { font-size: 1.1rem; color: var(--ink); }
    .val p { font-size: .94rem; margin: 0; }
    @media (max-width: 760px) { .val { grid-template-columns: 1fr; gap: 6px; } }

    .serv { columns: 2; column-gap: 56px; }
    .serv li { list-style: none; break-inside: avoid; display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: .98rem; align-items: baseline; }
    .serv li::before { content: "—"; color: var(--green); flex: 0 0 auto; font-weight: 600; }
    @media (max-width: 720px) { .serv { columns: 1; } }

    .band { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
    .band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 360px at 85% -10%, rgba(178,42,51,.4), transparent 60%); }
    .band .container { position: relative; max-width: 900px; text-align: center; padding: 96px 28px; }
    .band .q { font-family: 'Fraunces', serif; font-size: clamp(1.5rem, 3vw, 2.15rem); font-weight: 400; color: #fff; line-height: 1.4; }
    .band .q em { font-style: italic; color: #e3a7ab; }
    .band cite { display: block; margin-top: 28px; font-family: 'Inter', sans-serif; font-style: normal; font-size: .86rem; letter-spacing: 1.5px; text-transform: uppercase; color: #9aa0a8; }

    .faq { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: 'Fraunces', serif; font-size: 1.18rem; color: var(--ink); padding: 26px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center; }
    .faq-q .ic { flex: 0 0 auto; width: 28px; height: 28px; border: 1.5px solid var(--green); border-radius: 50%; display: grid; place-items: center; color: var(--green-dark); transition: .25s; }
    .faq-item.open .faq-q .ic { background: var(--green); color: #fff; transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
    .faq-a p { padding: 0 0 26px; font-size: .99rem; max-width: 90%; }

    .contact { display: grid; grid-template-columns: 1fr 1fr; }
    .contact .info { background: var(--ink); color: #fff; padding: 64px; }
    .contact .info h2 { color: #fff; }
    .contact .info > p { color: #c2c6cc; margin: 14px 0 30px; }
    .ci { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.12); }
    .ci:first-of-type { border-top: none; }
    .ci svg { color: #e3a7ab; flex: 0 0 auto; margin-top: 3px; }
    .ci .k { font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; color: #9aa0a8; display: block; }
    .ci .v { color: #fff; font-weight: 500; }
    .contact .form { background: var(--surface); padding: 64px; }
    .field { margin-bottom: 18px; }
    .field label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .5px; color: var(--ink); margin-bottom: 7px; }
    .field input, .field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 2px; font-family: inherit; font-size: .97rem; background: var(--paper); transition: .15s; }
    .field input:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; }
    .field textarea { min-height: 120px; resize: vertical; }
    .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .check { display: flex; gap: 11px; font-size: .86rem; color: var(--text-soft); margin-bottom: 18px; align-items: flex-start; }
    .check input { margin-top: 4px; accent-color: var(--green); }
    .fnote { font-size: .82rem; color: var(--text-mut); margin-top: 16px; }

    footer { background: var(--ink); color: #9aa0a8; padding: 70px 0 30px; }
    .fgrid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-bottom: 40px; }
    .fgrid .logo b { color: #fff; }
    .fgrid .logo span { color: #80868e; }
    .fgrid p { color: #80868e; font-size: .9rem; margin-top: 16px; max-width: 320px; }
    footer h4 { font-family: 'Inter', sans-serif; color: #fff; font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
    footer a { display: block; color: #9aa0a8; font-size: .92rem; padding: 5px 0; }
    footer a:hover { color: #e3a7ab; }
    .fbot { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; color: #6f757d; }

    /* Nox-Aurea-Signatur */
    .nox-credit { text-align: center; padding: 22px 0 0; margin-top: 18px; font-size: .7rem; letter-spacing: .18em; color: rgba(255,255,255,.32); text-transform: uppercase; }
    .nox-credit a { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.18rem; line-height: 1; letter-spacing: .28em; margin-left: .55rem; text-transform: uppercase; text-decoration: none; transition: opacity .35s; }
    .nox-credit a .nx { color: rgba(255,255,255,.82); }
    .nox-credit a .au { color: #d9b673; font-style: italic; }
    .nox-credit a:hover { opacity: .88; }
    .nox-credit a:hover .au { text-shadow: 0 0 18px rgba(217,182,115,.5); }

    @media (max-width: 980px) {
      .hero-grid, .about, .contact, .shead { grid-template-columns: 1fr; gap: 40px; }
      .contact .info, .contact .form { padding: 44px; }
      .band .container { padding: 70px 28px; }
    }
    @media (max-width: 880px) { .nav-links { display: none; } .menu-toggle { display: block; } .topbar .ti { gap: 16px; } }
    @media (max-width: 620px) {
      .trust .container { grid-template-columns: 1fr; }
      .trust .ti { border-right: none; border-bottom: 1px solid var(--line-soft); }
      .serv { columns: 1; }
      .topbar .ti span:nth-child(2) { display: none; }
      .section { padding: 70px 0; }
    }

.logo-img{height:60px;width:auto;display:block}
@media(max-width:480px){.logo-img{height:48px}}

.trust .ti .dgs-logo{height:42px;width:auto;margin-left:auto;flex:0 0 auto}
@media(max-width:620px){.trust .ti .dgs-logo{height:36px}}
