.article-section {
    color: #fff;
    padding: 0 40px;
    padding-bottom: 25vh; /* Ensure the fixed footer is visible at the end of scroll */
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 200;
    overflow-x: hidden; /* Contain the cinematic lines */
}

.beat {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.article-section .intro-col {
    padding-left: 8.33%; /* Grid equivalent */
    max-width: 600px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

.article-section .tagline-wrapper {
    padding-left: 15%;
}

.article-section .large-tagline {
    font-size: clamp(32px, 8vw, 110px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.article-section .tagline-offset {
    margin-left: 10%;
    display: block;
}

.article-section .article-body {
    padding-left: 15%;
    max-width: 800px;
    font-size: 18px;
    line-height: 1.6;
}

.article-section .article-body p {
    margin-bottom: 32px;
}

.article-section .services-grid {
    padding-left: 8.33%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    position: relative;
    padding-top: 150px;
}

.article-section .services-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px; 
    width: 200vw; 
    height: 2px; /* Increased to 2px for consistency */
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(-22deg) scaleX(0);
    transform-origin: left center;
    opacity: 1;
    z-index: 10;
    transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}

.article-section .services-grid.is-visible::before {
    transform: rotate(-22deg) scaleX(1);
}

.article-section .service-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.article-section .service-item h3 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.article-section .service-item ul {
    list-style: none;
    padding: 0;
}

.article-section .service-item li {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.article-section .service-item li:hover {
    color: #FF0000;
    transform: skewX(-15deg) translateX(5px);
}

.motif-line {
    width: 150px;
    height: 1px;
    background: #FF0000;
    margin-bottom: 40px;
    transform: rotate(-22deg);
    transform-origin: left center;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
}

@media (max-width: 1024px) {
    .article-section {
        padding: 0 32px;
        padding-bottom: 20vh;
    }
    
    .article-section .intro-col {
        padding-left: 10%; /* Restored off-center alignment */
        max-width: 100%;
    }

    .article-section .tagline-wrapper {
        padding-left: 0;
    }

    .article-section .article-body {
        padding-left: 0;
        font-size: 16px;
    }

    .article-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 0;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .beat {
        padding: 80px 0;
    }

    .article-section .intro-col {
        padding-left: 8%; /* Subtle off-center for small screens */
    }

    .article-section .large-tagline {
        font-size: 42px;
    }

    .article-section .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-section .service-item h3 {
        margin-bottom: 12px;
    }

    .article-section .service-item li {
        font-size: 16px;
    }
}
