/* ===== ЭФФЕКТЫ ДЛЯ ФОТО АННЫ ===== */
:root {
    --gold: #c9a96e;
}

/* Виньетка */
.about-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    box-shadow: inset 0 0 80px rgba(0,0,0,0.5);
    z-index: 2;
    pointer-events: none;
    transition: all 0.8s ease;
}
.about-image:hover::before {
    box-shadow: inset 0 0 40px rgba(0,0,0,0.3), inset 0 0 100px rgba(201,169,110,0.15);
}

/* Сепия при наведении */
.about-image img {
    transition: all 0.8s ease;
    filter: brightness(1.05) contrast(1.02);
}
.about-image:hover img {
    filter: sepia(0.3) brightness(1.1) contrast(1.05);
}

/* Золотая плашка */
.about-image-label {
    position: absolute;
    bottom: 20px; right: 20px;
    background: rgba(13,13,13,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,169,110,0.3);
    padding: 0.5rem 1.2rem;
    z-index: 5;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #c9a96e;
    pointer-events: none;
}
.about-image-wrapper:hover .about-image-label {
    opacity: 1;
    transform: translateY(0);
}
