/* --- Portfolio Page --- */

/* Hero */
.pf-hero {
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 3rem 80px;
    position: relative;
    overflow: hidden;
}


.pf-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pf-hero-photo {
    flex: 0 0 400px;
    height: 520px;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.pf-hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 1.25rem;
    pointer-events: none;
}

.pf-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.pf-hero-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pf-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: rgb(128, 21, 222);
    text-transform: uppercase;
}

.pf-name {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    color: #0a0a0a;
    letter-spacing: -0.03em;
}

.pf-role {
    font-size: 1.1rem;
    font-weight: 700;
    color: #bcff00;
    margin: 0;
}

.pf-divider {
    width: 60px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
}

.pf-bio {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.75;
    margin: 0;
}

.pf-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 0.5rem;
}

.pf-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pf-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0a0a0a;
}

.pf-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pf-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.pf-social-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgb(128, 21, 222);
    color: #fff;
    border: 2px solid rgb(128, 21, 222);
}

.pf-social-btn:hover {
    background: #bcff00;
    border-color: #bcff00;
    color: #000;
}

.pf-social-btn--outline {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.15);
    color: #0a0a0a;
}

.pf-social-btn--outline:hover {
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: #fff;
}

/* Sections */
.pf-section {
    padding: 80px 3rem;
}

.pf-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.pf-section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

/* Works */
.pf-works-section {
    background: #0a0a0a;
    color: #fff;
}

.pf-works-section .pf-section-title {
    color: #bcff00;
}

.pf-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pf-work-card {
    border-radius: 1rem;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

a.pf-work-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pf-work-video--link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
}

.pf-work-link-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #bcff00;
}

.pf-work-card--link:hover .pf-work-link-label {
    color: #d4ff4d;
}

.pf-work-video--thumb {
    position: relative;
    padding: 0;
    background: #111;
}

.pf-work-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.82);
    transition: filter 0.4s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.pf-work-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
    pointer-events: none;
}

.pf-work-link-label--on-thumb {
    position: absolute;
    bottom: 1rem;
    right: 1.25rem;
    z-index: 1;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}

.pf-work-card--thumb:hover .pf-work-thumb-img {
    filter: brightness(1);
    transform: scale(1.04);
}

.pf-work-card--static {
    cursor: default;
}

.pf-work-video {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.pf-work-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.4s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.pf-work-card:hover .pf-work-video video {
    filter: brightness(1);
    transform: scale(1.04);
}

.pf-work-info {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pf-work-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgb(128, 21, 222);
}

.pf-work-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .pf-hero { min-height: auto; padding: 120px 2rem 60px; }
    .pf-hero-inner { flex-direction: column; gap: 2.5rem; }
    .pf-hero-photo { flex: unset; width: 100%; height: 440px; }
    .pf-stats { gap: 1.5rem; }
    .pf-works-grid { grid-template-columns: 1fr; }
    .pf-work-video { height: 240px; }
}
