/* ============================================================
   INCHCRAFT - PROJECTS / PORTFOLIO PAGE STYLES
   Parent Scoped: .projects-page-scope
   ============================================================ */

.projects-page-scope .portfolio-hero-editorial {
    position: relative;
    background-color: #f7f6f2;
    color: #0f172a;
    padding-top: 140px;
    padding-bottom: 55px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.projects-page-scope .portfolio-grid-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.7;
}

.projects-page-scope .eyebrow-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #9a733e;
    background: rgba(154, 115, 62, 0.08);
    border: 1px solid rgba(154, 115, 62, 0.25);
    padding: 6px 16px;
    border-radius: 50rem;
    display: inline-flex;
    align-items: center;
}

.projects-page-scope .editorial-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
}

.projects-page-scope .editorial-title span {
    font-style: italic;
    color: #c83b3b;
}

.projects-page-scope .hero-photo-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 3px solid #ffffff;
    transition: all 0.35s ease;
}

.projects-page-scope .hero-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.projects-page-scope .hero-photo-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.projects-page-scope .hero-photo-card:hover img {
    transform: scale(1.04);
}

.projects-page-scope .hero-photo-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.projects-page-scope .hero-index-bar {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 12px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.projects-page-scope .hero-filter-chip {
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 50rem;
    transition: all 0.25s ease;
}

.projects-page-scope .hero-filter-chip:hover,
.projects-page-scope .hero-filter-chip.active {
    background: #0f172a;
    color: #ffffff;
}

.projects-page-scope .hero-filter-chip .count-badge {
    background: rgba(0, 0, 0, 0.08);
    color: inherit;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: 6px;
}

.projects-page-scope .hero-filter-chip.active .count-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .projects-page-scope .portfolio-hero-editorial {
        padding-top: 110px;
        padding-bottom: 40px;
    }
}

.projects-page-scope .text-gold {
    color: #9a733e !important;
}

.projects-page-scope .text-accent {
    color: #c83b3b !important;
}

.projects-page-scope .tracking-widest {
    letter-spacing: 0.1em;
}

