﻿.profile-hero {
    position: relative;
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 100px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-watermark {
    position: absolute;
    top: 5%;
    left: -50px;
    font-family: 'Playfair Display', serif;
    font-size: 18vw;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.profile-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.profile-content {
    padding-top: 20px;
}

.breadcrumb {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .breadcrumb::after {
        content: '';
        width: 40px;
        height: 1px;
        background: #333;
    }

.doc-headline {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 30px;
}

    .doc-headline span {
        display: block;
        font-style: italic;
        font-weight: 400;
        color: var(--color-platinum);
    }

.doc-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    font-style: italic;
    border-left: 1px solid var(--color-platinum);
    padding-left: 30px;
    margin-bottom: 40px;
}

.stats-strip {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding: 30px 0;
}

.stat-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666;
}

.location-block {
    margin-bottom: 50px;
}

.location-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    margin-bottom: 15px;
    display: block;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.02);
    padding: 25px;
    border: 1px solid #1a1a1a;
    transition: 0.3s;
}

    .location-card:hover {
        border-color: #333;
        background: rgba(255,255,255,0.04);
    }

.loc-icon {
    font-size: 1.5rem;
    color: var(--color-platinum);
}

.loc-details h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--white);
}

.loc-details p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    line-height: 1.5;
}

.loc-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.profile-visual {
    position: relative;
}

.image-frame {
    width: 100%;
    aspect-ratio: 3/4;
    position: relative;
    z-index: 2;
}

    .image-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%) contrast(1.1) brightness(0.9);
        transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
    }

@media (min-width: 1025px) {
    .profile-visual:hover img {
        filter: grayscale(0%) contrast(1.05);
        transform: scale(1.02);
    }
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 20px;
    left: 20px;
    border: 1px solid var(--color-platinum);
    opacity: 0.3;
    z-index: -1;
    transition: 0.5s;
}

.profile-visual:hover .image-frame::before {
    top: 20px;
    right: 20px;
    bottom: -20px;
    left: -20px;
    opacity: 0.6;
}

.status-pill {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--white);
    color: var(--black);
    padding: 15px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.action-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-gold {
    background: var(--color-platinum);
    color: var(--black);
    padding: 22px 45px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid var(--color-platinum);
    transition: 0.3s;
    display: inline-block;
}

    .btn-gold:hover {
        background: transparent;
        color: var(--white);
        box-shadow: 0 0 30px rgba(229, 228, 226, 0.15);
    }

@media (max-width: 1024px) {
    .profile-hero {
        padding-top: calc(var(--nav-height) + 40px);
        padding-bottom: 40px;
    }

    .registry-section {
        padding-top: 40px;
    }

    .profile-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-watermark {
        font-size: 25vw;
        top: 10%;
    }

    .profile-visual {
        order: -1;
        width: 100%;
        margin: 0;
    }

    .image-frame img {
        filter: grayscale(0%) contrast(1.05);
    }

    .status-pill {
        left: 0;
        bottom: -15px;
    }

    .doc-headline {
        font-size: 3rem;
    }

    .stats-strip {
        gap: 30px;
        justify-content: space-between;
    }

    .image-frame::before {
        display: none;
    }

    .action-row {
        flex-direction: column;
        width: 100%;
    }

    .btn-gold {
        width: 100%;
        text-align: center;
    }
}
