/* ------------------------------------------------------------------
   Footer – kompakt, vier Spalten, klare Trennung zur Kontakt-Sektion
   ------------------------------------------------------------------ */
.gg-footer {
    position: relative;
    background: #2E241C;
    color: #F5F0E6;
    border-top: 1px solid rgba(245, 240, 230, 0.12);
    font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
}
.gg-footer__inner {
    position: relative;
    z-index: 2;
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 1.25rem 2.5rem;
    display: grid;
    gap: 2.25rem 2rem;
}
@media (min-width: 640px) {
    .gg-footer__inner {
        grid-template-columns: 1fr 1fr;
        padding: 3.5rem 2.5rem 3rem;
    }
    .gg-footer__brand {
        grid-column: 1 / -1;
    }
}
@media (min-width: 1024px) {
    .gg-footer__inner {
        grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
        gap: 2rem 3rem;
        padding: 4rem 2.5rem 3.5rem;
    }
    .gg-footer__brand {
        grid-column: auto;
        padding-right: 2rem;
    }
}

/* Marke */
.gg-footer__logo {
    height: 5rem;
    width: auto;
}
@media (min-width: 768px) {
    .gg-footer__logo { height: 5.5rem; }
}
.gg-footer__claim {
    margin: 1.25rem 0 0;
    font-family: Caveat, cursive;
    font-size: 1.5rem;
    line-height: 1.25;
    color: #A4B07A;
}
.gg-footer__text {
    margin: 1rem 0 0;
    max-width: 22rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(245, 240, 230, 0.7);
}

/* Spalten */
.gg-footer__title {
    margin: 0 0 1rem;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #CDBFAE;
}
.gg-footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.9rem;
    line-height: 1.6;
}
.gg-footer__list li {
    margin: 0 0 0.45rem;
}
.gg-footer__list a,
.gg-footer__address {
    color: rgba(245, 240, 230, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}
.gg-footer__list a:hover {
    color: #F2C946;
}
.gg-footer__address {
    margin: 0;
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.75;
}

/* Social */
.gg-footer__social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
}
.gg-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 9999px;
    border: 1px solid rgba(245, 240, 230, 0.25);
    color: #F5F0E6;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.gg-footer__social a:hover {
    background: #F2C946;
    border-color: #F2C946;
    color: #2E241C;
}
.gg-footer__social svg {
    width: 1rem;
    height: 1rem;
}

/* Button */
.gg-footer__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    border-radius: 9999px;
    background: #F2C946;
    padding: 0.85rem 1.5rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #2E241C;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}
.gg-footer__btn:hover {
    background: #F5F0E6;
}
.gg-footer__btn svg {
    width: 0.9rem;
    height: 0.9rem;
    transition: transform 0.3s;
}
.gg-footer__btn:hover svg {
    transform: translateX(4px);
}

/* Untere Leiste */
.gg-footer__bar {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(245, 240, 230, 0.1);
}
.gg-footer__bar-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: rgba(245, 240, 230, 0.55);
}
.gg-footer__bar-inner p {
    margin: 0;
}
@media (min-width: 768px) {
    .gg-footer__bar-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem 2.5rem;
    }
}
.gg-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.gg-footer__legal a,
.gg-footer__legal button {
    border: 0;
    background: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
}
.gg-footer__legal a:hover,
.gg-footer__legal button:hover {
    color: #F5F0E6;
}
