/* =========================================================
   WORK SECTION — "WHAT WE'RE BREWING"
   ========================================================= */

.work-section {
    min-height: 100vh;
    background: var(--cream);
    padding: 80px 42px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.work-character {
    position: absolute;
    top: 50px;
    right: 80px;
    width: 400px;
    z-index: 5;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.work-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0.04;
    transform: translate(30%, 30%);
}

.work-content {
    max-width: 90vw;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.work-header {
    margin-bottom: 40px;
}

.work-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    color: var(--dark);
    margin-bottom: 0;
}

.work-highlight {
    color: var(--orange);
}


/* =========================================================
   CATEGORY CARDS
   ========================================================= */

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.work-category-card {
    background: var(--dark);
    border-radius: 14px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 220px;
}

.work-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.work-card-number {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: rgba(245, 240, 235, 0.06);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.work-card-category {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: var(--cream);
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 0;
}

.work-card-tagline {
    font-size: 15px;
    color: rgba(245, 240, 235, 0.5);
    line-height: 1.5;
    margin: 0;
}

.work-card-status {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--orange);
    text-transform: uppercase;
    margin-top: auto;
    padding-top: 20px;
    font-weight: 600;
}


/* =========================================================
   CTA BUTTON
   ========================================================= */

.work-footer {
    text-align: center;
}

.work-cta {
    display: inline-block;
    background: var(--dark);
    color: var(--cream);
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.work-cta:hover {
    background: var(--orange);
}


/* =========================================================
   WORK RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
    .work-character {
        width: 300px;
        right: 40px;
    }
}

@media (max-width: 800px) {
    .work-section {
        min-height: auto;
        padding: 80px 20px 60px;
        align-items: flex-start;
    }

    .work-title {
        font-size: 10vw;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .work-character {
        display: none;
    }
}

@media (max-width: 500px) {
    .work-category-card {
        padding: 28px 24px;
        min-height: 180px;
    }

    .work-card-number {
        font-size: 48px;
    }

    .work-card-category {
        font-size: 22px;
    }

    .work-card-tagline {
        font-size: 13px;
    }

    .work-card-status {
        font-size: 10px;
    }
}
