/* Services Page - Porter (Cinematic) Style */

/* Hero */
.services-hero {
    padding: 180px 0 100px;
    background: var(--bg-primary);
}

.hero-title {
    font-size: clamp(60px, 8vw, 100px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.hero-lead {
    font-size: 24px;
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 650px;
    font-weight: 400;
}

/* Poster Grid */
.poster-section {
    padding: 0 0 120px;
    background: var(--bg-primary);
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.poster-card {
    position: relative;
    display: block;
    aspect-ratio: 3/4;
    /* Classic Poster Ratio */
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    background: #000;
    /* Fallback */
    transform: translateZ(0);
    /* Hardware accel */
}

/* Background Image */
.poster-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.poster-card:hover .poster-bg {
    transform: scale(1.1);
    /* Slow zoom */
}

/* Dark Overlay */
.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

/* Content */
.poster-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.poster-icon {
    font-size: 32px;
    margin-bottom: auto;
    /* Pushes icon to top */
    color: rgba(255, 255, 255, 0.9);
    padding-top: 10px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease 0.1s;
}

.poster-card:hover .poster-icon {
    opacity: 1;
    transform: translateY(0);
}

.poster-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.1;
    color: #fff;
}

.poster-text p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 24px;
}

.poster-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 4px;
    transition: all 0.2s;
}

.poster-card:hover .poster-link {
    border-bottom-color: #fff;
}


/* Responsive */
@media (max-width: 1024px) {
    .poster-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .poster-grid {
        grid-template-columns: 1fr;
    }
}