/* =========================================================
   FG Header
   Hintergrund angepasst auf #E6D8CB
========================================================= */

.fg-header{
    width:100%;
    background:#E6D8CB;
    border-bottom:1px solid rgba(61,26,74,.08);
    position:relative;
    z-index:100;
}

.fg-header-inner{
    max-width:1500px;
    margin:0 auto;
    padding:22px 48px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.fg-header-logo{
    height:72px;
    width:auto;
}

.fg-header-nav{
    display:flex;
    align-items:center;
    gap:34px;
}

.fg-header-nav a{
    font-family:"Inter",sans-serif;
    font-size:15px;
    font-weight:600;
    color:#3D1A4A;
    text-decoration:none;
    transition:.2s;
}

.fg-header-nav a:hover{
    color:#C8327D;
}

.fg-header-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 26px;

    background:#C8327D;
    color:#fff;

    text-decoration:none;
    font-family:"Inter",sans-serif;
    font-weight:600;

    border-radius:2px;
    transition:.2s;
}

.fg-header-cta:hover{
    background:#3D1A4A;
}

oder noch eleganter mit einer Variable:

:root{
    --fg-background:#E6D8CB;
    --fg-pink:#C8327D;
    --fg-violet:#3D1A4A;
}

.fg-header{
    background:var(--fg-background);
}