/* Project Page */
.project-page {
    padding-top: 73px;
}

.project-hero {
    padding: 60px 0 40px;
}

.project-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.project-location {
    font-size: 16px;
    color: var(--color-text-muted);
}

/* Salon-Style Gallery */
.salon-gallery {
    padding: 0 24px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.salon-grid {
    columns: 2;
    column-gap: 24px;
}

.salon-item {
    margin: 0 0 24px;
    break-inside: avoid;
    display: block;
}

.salon-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .salon-grid {
        columns: 1;
    }

    .salon-gallery {
        padding: 0 16px 80px;
    }
}
