/* COLLECTION PAGE BRUTAL STYLES */

/* COLLECTION HERO */
.brutal-collection-hero {
    background: var(--brutal-dark);
    color: var(--brutal-white);
    padding: 100px 0;
}

.collection-header {
    text-align: center;
    margin-bottom: 80px;
}

.collection-header .brutal-heading {
    color: var(--brutal-white);
    margin-bottom: 30px;
}

.collection-subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brutal-gray);
}

.collection-manifesto {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-block {
    border: 5px solid var(--brutal-white);
    padding: 60px;
    background: var(--brutal-black);
}

.manifesto-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 36px;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--brutal-red);
}

.manifesto-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* COLLECTION GRID */
.brutal-collection-grid {
    padding: 100px 0;
}

.collection-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 400px);
    gap: 20px;
}

.collection-item {
    position: relative;
    overflow: hidden;
    border: var(--brutal-border);
    background: var(--brutal-black);
    color: var(--brutal-white);
}

.collection-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.collection-item.wide {
    grid-column: span 2;
}

.item-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.item-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.item-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.collection-item.large .item-title {
    font-size: 36px;
}

.item-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.item-content .brutal-btn {
    align-self: flex-start;
    padding: 15px 25px;
    font-size: 14px;
}

/* PHILOSOPHY SECTION */
.brutal-philosophy {
    background: var(--brutal-light);
    padding: 100px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-content {
    margin-top: 40px;
}

.philosophy-content .brutal-text {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.philosophy-stats {
    display: grid;
    gap: 40px;
}

.stat-block {
    border: var(--brutal-border);
    padding: 40px;
    background: var(--brutal-white);
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Archivo Black', sans-serif;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--brutal-red);
}

.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brutal-black);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .collection-items {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 300px);
    }

    .collection-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .collection-item.wide {
        grid-column: span 2;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .collection-items {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 300px);
    }

    .collection-item.large,
    .collection-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .item-content {
        padding: 30px;
    }

    .item-title {
        font-size: 20px;
    }

    .collection-item.large .item-title {
        font-size: 24px;
    }
}