/* --- Footer Styles --- */
footer {
    width: 100%;
    padding: 60px 0 40px 0; /* Generous spacing at the end of the page */
    background-color: transparent;
    margin-top: auto; /* Pushes footer to bottom if content is short */
}

.copyright {
    text-align: center;
    margin: 0 auto;
    color: #8c7e6d; /* Muted taupe/grey */
    font-family: "EB Garamond", serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.copyright p {
    margin: 0;
}

.copyright a {
    color: #4a4540; /* Slightly darker brown for links */
    text-decoration: none;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid rgba(140, 126, 109, 0.2);
}

.copyright a:hover {
    opacity: 0.7;
}

/* --- Mobile Refinement --- */
@media all and (max-width: 420px) {
    footer {
        padding: 40px 20px;
    }

    .copyright {
        font-size: 0.85rem;
        text-align: center; /* Kept centered for elegance on mobile */
        margin: 0;
    }

    /* Removing the yellow break from the old code and
       ensuring a clean stack if needed */
    .copyright p a {
        display: inline-block;
        margin: 5px 0;
    }
}
