.contact {
    background: var(--white);
    color: var(--black);
    padding: 100px var(--side-pad);

    position: relative;
    z-index: 1;          
    overflow: visible;   
    display: flex;
    align-items: flex-end;
}

.contact__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact__title {
    font-family: "Anton", sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
 
.contact__body p,
.contact__body a {
    font-family: "Oswald", sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 350;
    line-height: 1.8;
    color: var(--black);
    line-height: 2;
    text-decoration: none;
}

.contact__image {
    position: absolute;
    right: 0;
    bottom: 0;           
}
 
.contact__image img {
    height: 500px;       
    width: auto;
    object-fit: contain;
    object-position: bottom;
    display: block;
}