* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Mono', monospace;
    background-color: #F4F4F4;
    color: #111111;
    line-height: 1.6;
    font-size: 14px;
}

.brutalist-header {
    border-bottom: 1px solid #111111;
    padding: 20px 40px;
    background-color: #F4F4F4;
}

.site-name {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111111;
}

.brutalist-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-wrapper {
    border: 1px solid #111111;
    padding: 30px;
    margin-bottom: 40px;
    background-color: #F4F4F4;
}

.utility-menu {
    margin-bottom: 30px;
    border-bottom: 1px solid #111111;
    padding-bottom: 20px;
}

.utility-menu summary {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    cursor: pointer;
    color: #111111;
    padding: 10px 0;
}

.utility-menu ul {
    list-style: none;
    margin-top: 15px;
    padding-left: 0;
}

.utility-menu li {
    padding: 8px 0;
    border-bottom: 1px solid #111111;
    font-family: 'IBM Plex Mono', monospace;
}

.utility-menu li:last-child {
    border-bottom: none;
}

.main-content {
    font-family: 'IBM Plex Mono', monospace;
    line-height: 1.8;
}

.data-block {
    border: 1px solid #111111;
    padding: 30px;
    margin-bottom: 40px;
    background-color: #F4F4F4;
}

.data-heading {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background-color: #00FF6A;
    color: #111111;
    padding: 15px 20px;
    margin-bottom: 25px;
    border: 1px solid #111111;
    display: inline-block;
    width: 100%;
}

.data-list {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
}

.data-item {
    padding: 12px 0;
    border-bottom: 1px solid #111111;
    display: flex;
    justify-content: space-between;
}

.data-item:last-child {
    border-bottom: none;
}

.data-key {
    font-weight: 700;
    color: #111111;
}

.data-value {
    color: #111111;
}

.gallery-block {
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid #111111;
    gap: 0;
}

.gallery-item {
    border-right: 1px solid #111111;
    overflow: hidden;
}

.gallery-item:last-child {
    border-right: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

.cultivation-params {
    margin-bottom: 40px;
}

.param-list {
    list-style: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.param-list li {
    padding: 15px 0;
    border-bottom: 1px solid #111111;
}

.param-list li:last-child {
    border-bottom: none;
}

.brutalist-footer {
    border-top: 1px solid #111111;
    padding: 30px 40px;
    background-color: #F4F4F4;
    margin-top: 60px;
}

.footer-content {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-content a {
    color: #00FF6A;
    text-decoration: none;
    border-bottom: 1px solid #00FF6A;
}

.footer-content a:hover {
    background-color: #00FF6A;
    color: #111111;
}

.footer-copyright {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    color: #00FF6A;
    text-decoration: none;
    border-bottom: 1px solid #00FF6A;
}

a:hover {
    background-color: #00FF6A;
    color: #111111;
}

@media (max-width: 768px) {
    .site-name {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(2n) {
        border-right: none;
    }

    .gallery-item:nth-child(5) {
        grid-column: 1 / -1;
        border-right: 1px solid #111111;
    }

    .brutalist-main {
        padding: 20px 10px;
    }

    .content-wrapper,
    .data-block {
        padding: 20px;
    }
}

