/* Brutalist Aesthetic Styles */

/* Raw, Hard-Edged Elements */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl) var(--space-md);
    background-color: var(--color-white);
    position: relative;
}

/* Geometric Brutalist Accents */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: var(--color-black);
    z-index: -1;
}

/* Bold Black Blocks */
.work__item {
    position: relative;
    overflow: hidden;
}

.work__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--color-black);
    transition: width 0.3s ease;
}

.work__item:hover::after {
    width: 100%;
}

/* Brutalist Typography Treatment */
.section__title {
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -0.2em;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: var(--color-black);
}

/* Raw Grid Lines */
.work__grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--color-black);
    opacity: 0.2;
}

/* Stark Contrast Zones */
.philosophy {
    background-color: var(--color-black);
    color: var(--color-white);
}

.philosophy .section__title::after {
    background-color: var(--color-white);
}

.philosophy__text {
    color: var(--color-off-white);
}

/* Japanese Kanji Treatment */
.hero__title-line--kanji {
    font-weight: 300;
    letter-spacing: -0.02em;
}

/* Brutalist Button/Link Treatment */
.contact__link {
    display: inline;
    position: relative;
}

/* Hard Shadows (Brutalist Depth) */
.work__item:hover {
    box-shadow: 8px 8px 0 var(--color-black);
}

/* Monospace Accent (Optional) */
.footer__text {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Brutalist Cursor */
body {
    cursor: crosshair;
}

a, button {
    cursor: pointer;
}

/* Viewport-Based Brutalist Shapes */
@media (min-width: 1024px) {
    .hero::after {
        content: '';
        position: absolute;
        bottom: 10%;
        left: 5%;
        width: 200px;
        height: 200px;
        border: 4px solid var(--color-black);
        z-index: -1;
    }
}

/* Mobile Brutalist Simplification */
@media (max-width: 768px) {
    .hero::before {
        width: 100%;
        height: 30%;
        top: auto;
        bottom: 0;
    }

    .work__grid::before {
        display: none;
    }
}
