/* ── css/footer.css ─────────────────────────────── */
/* footer.css */

footer {
    background: var(--c-black);
    border-top: 1px solid var(--c-border-dark);
    padding: 56px var(--section-h) 36px;
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

/* Background photo */
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/footer-bg.webp');
    background-size: cover;
    background-position: center 40%;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

/* Gradient vignette over photo */
footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(6,6,6,0.55) 0%, rgba(6,6,6,0.18) 40%, rgba(6,6,6,0.72) 100%),
        radial-gradient(ellipse 80% 60% at 50% 50%, transparent 40%, rgba(6,6,6,0.55) 100%);
    z-index: 0;
    pointer-events: none;
}

.footer-inner,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 80px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--c-border-dark);
    margin-bottom: 32px;
}

.footer-brand { display: flex; flex-direction: column; gap: 8px; }

.footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
    opacity: 0.80;
    display: block;
    margin-right: auto;
}

/* Montserrat for logo name in footer too */
.footer-name {
    font-family: var(--font-body);
    font-size: 14px; font-weight: 800;
    letter-spacing: 6px; text-transform: uppercase;
    color: var(--c-white);
}
.footer-name span { color: rgba(246,243,238,0.50); }

.footer-tagline {
    font-family: var(--font-body);
    font-size: 9px; letter-spacing: 2.5px;
    color: var(--c-gray); text-transform: uppercase;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav-title {
    font-family: var(--font-body);
    font-size: 9px; letter-spacing: 3px;
    color: var(--c-gray); text-transform: uppercase; font-weight: 600;
    margin-bottom: 6px;
}

.footer-nav a {
    font-family: var(--font-body);
    font-size: 13px; color: rgba(246,243,238,0.5);
    text-decoration: none;
    transition: color var(--dur-s) var(--ease-std);
    display: block;
}
.footer-nav a:hover { color: var(--c-white); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-title {
    font-family: var(--font-body);
    font-size: 9px; letter-spacing: 3px;
    color: var(--c-gray); text-transform: uppercase; font-weight: 600;
    margin-bottom: 6px;
}

.footer-contact a,
.footer-contact span {
    font-family: var(--font-body);
    font-size: 12.5px; color: rgba(246,243,238,0.5);
    text-decoration: none; display: block;
    line-height: 1.6;
    transition: color var(--dur-s) var(--ease-std);
}
.footer-contact a:hover { color: var(--c-white); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 10.5px; color: rgba(246,243,238,0.25);
    letter-spacing: 0.3px;
}
