/* FOOTER WITH PHOTO */

.site-footer {
    margin-top: auto;
    background: radial-gradient(circle at top left, #122111 0, #122111 55%, #122111 100%);
    color: #122111;
    padding-top: 28px;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding-bottom: 18px;
}

@media (max-width: 860px) {
    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

.footer-text h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.footer-text p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #f4dba5;
}

.footer-meta {
    font-size: 12px;
    color: #f4dba5;
    margin-top: 10px;
}

.footer-photo-wrap {
    position: relative;
    justify-self: flex-end;
}

@media (max-width: 860px) {
    .footer-photo-wrap {
        justify-self: center;
    }
}

.footer-aura {
    position: absolute;
    inset: -26px;
    background:
      radial-gradient(circle at 20% 0, rgba(229, 126, 173, 0.45) 0, transparent 50%),
      radial-gradient(circle at 85% 80%, rgba(206, 227, 143, 0.65) 0, transparent 55%);
    filter: blur(6px);
    opacity: 0.9;
}

.footer-photo {
    position: relative;
    width: 210px;
    height: 210px;
    border-radius: 48% 52% 45% 55%;
    overflow: hidden;
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.55),
      0 0 0 2px rgba(255, 255, 255, 0.36);
    isolation: isolate;
}

.footer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(4px) scale(1.2);
}

.footer-small {
    border-top: 1px solid #f4dba5;
    padding: 10px 16px 14px;
    font-size: 11px;
    color: #f4dba5;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-links a {
    margin-right: 14px;
    font-size: 12px;
    color: #f4dba5;
}

.footer-links a:hover {
    text-decoration: underline;
}
