.photos-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px;
    text-align: center;
}

.photos-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: 1.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #4a3f35;
    margin: 0 0 40px;
}

.photos-section-line {
    flex: 1 1 auto;
    max-width: 220px;
    height: 1px;
    background-color: #6f9a94;
}

.photos-section-line--cadre {
    background-color: #d6579e;
}

.photos-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}

.photos-card {
    flex: 0 1 320px;
    text-align: left;
}

.photos-card-label {
    display: block;
    font-family: 'Quicksand', Verdana, Geneva, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b6259;
    margin-bottom: 16px;
}

.photos-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.photos-card--contact {
    display: flex;
    flex-direction: column;
}

.photos-contact-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    aspect-ratio: 1 / 1;
    border: 1px solid #e2884f;
    padding: 24px;
    text-align: center;
}

.photos-contact-text {
    font-family: 'Quicksand', Verdana, Geneva, sans-serif;
    font-size: 1rem;
    
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b6259;
    margin: 0;
    line-height: 1.6;
}

.photos-contact-button {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid #e2884f;
    border-radius: 999px;
    font-family: 'Quicksand', Verdana, Geneva, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4a3f35;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.photos-contact-button:hover {
    background-color: #e2884f;
    color: #ffffff;
}

@media (max-width: 860px) {
    .photos-grid {
        gap: 24px;
    }

    .photos-card {
        flex: 0 1 100%;
        max-width: 380px;
    }

    .photos-section-line {
        max-width: 60px;
    }
}
