.media-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 180px 20px 150px;
}

.gold-animated-text {
    background: linear-gradient(110deg, #997B2F 0%, #e7d4aa 40%, #FFFFFF 50%, #e7d4aa 60%, #997B2F 100%);
    background-size: 200% 100%;
    background-position: var(--light-pos) 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.page-header {
    text-align: center;
    margin-bottom: 80px;
}

.header-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-transform: uppercase;
}

.header-sub {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 40px;
}

.intro-text {
    font-size: 1.15rem;
    color: #ccc;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    font-weight: 300;
}

.hero-img-container {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    margin-bottom: 100px;
    border: 1px solid #1a1a1a;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: 1.5s var(--ease-luxury);
}

.hero-img-container:hover .hero-img {
    transform: scale(1.03);
    filter: grayscale(0);
}

.section-label-large {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
    display: block;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
    margin-bottom: 120px;
}

.data-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #111;
    padding-bottom: 20px;
}

.data-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    background: linear-gradient(110deg, #997B2F 0%, #e7d4aa 40%, #FFFFFF 50%, #e7d4aa 60%, #997B2F 100%);
    background-size: 200% 100%;
    background-position: var(--light-pos) 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: fit-content;
}

.data-value {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

    .data-value a {
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid #333;
        transition: 0.3s;
    }

        .data-value a:hover {
            border-color: var(--gold);
        }

.press-release-container {
    max-width: 800px;
    margin: 0 auto 120px;
    background: #0a0a0a;
    padding: 60px;
    border: 1px solid #1a1a1a;
}

.pr-title {
    font-size: 2.2rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.pr-lead {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.6;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
}

.pr-meta {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    display: block;
}

.pr-body p {
    color: #999;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

    .pr-body p b {
        color: #ccc;
        font-weight: 700;
    }

.pr-header {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.pr-quote {
    font-size: 1.2rem;
    text-align: center;
    margin: 40px 0;
    line-height: 1.6;
    background: linear-gradient(110deg, #997B2F 0%, #e7d4aa 40%, #FFFFFF 50%, #e7d4aa 60%, #997B2F 100%);
    background-size: 200% 100%;
    background-position: var(--light-pos) 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gallery-section {
    margin-bottom: 100px;
}

.gallery-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666;
    margin-bottom: 20px;
    display: block;
}

.img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.img-item {
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
    border: 1px solid #222;
    cursor: pointer;
    position: relative;
}

    .img-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s var(--ease-luxury);
        filter: brightness(0.8);
    }

    .img-item:hover img {
        transform: scale(1.1);
        filter: brightness(1);
    }

    .img-item::after {
        content: '+';
        font-weight: 900;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.5);
        color: #fff;
        opacity: 0;
        font-size: 2rem;
        transition: 0.4s;
        pointer-events: none;
        text-shadow: 0 5px 15px rgba(0,0,0,0.8);
    }

    .img-item:hover::after {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.logo-card {
    background: #111;
    border: 1px solid #222;
    padding: 40px;
    text-align: center;
    transition: 0.4s;
}

    .logo-card:hover {
        border-color: var(--gold);
    }

.logo-preview {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-preview img {
        width: 100%;
    }

.logo-icon-gold {
    font-size: 2.5rem;
    background: linear-gradient(110deg, #997B2F 0%, #e7d4aa 40%, #FFFFFF 50%, #e7d4aa 60%, #997B2F 100%);
    background-size: 200% 100%;
    background-position: var(--light-pos) 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}

    .download-links a:hover {
        color: #fff;
    }

.fun-fact {
    text-align: center;
    border: 1px solid rgba(212,175,55,0.3);
    padding: 30px;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 100px;
    background: rgba(212,175,55,0.02);
}

    .fun-fact i {
        margin-bottom: 15px;
        font-size: 1.2rem;
        background: linear-gradient(110deg, #997B2F 0%, #e7d4aa 40%, #FFFFFF 50%, #e7d4aa 60%, #997B2F 100%);
        background-size: 200% 100%;
        background-position: var(--light-pos) 0;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.media-contact {
    text-align: center;
    padding: 80px;
    background: #0a0a0a;
    border: 1px solid #222;
    margin-top: 120px;
}

.mc-link {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
}

    .mc-link:hover {
        transform: translateY(-3px);
    }

.lightbox {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

    .lightbox.active {
        display: flex;
        opacity: 1;
    }

.lb-img-container {
    position: relative;
    width: 90%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    border: 1px solid #222;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    user-select: none;
    object-fit: contain;
    transition: opacity 0.6s ease;
}

#lbImgBack {
    z-index: 1;
    opacity: 0;
}

#lbImgFront {
    z-index: 2;
    opacity: 0;
}

.lb-nav {
    position: absolute;
    color: #666;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
    padding: 20px;
    z-index: 10000;
}

    .lb-nav:hover {
        color: var(--gold);
        transform: scale(1.1);
    }

.lb-prev {
    left: 20px;
}

.lb-next {
    right: 20px;
}

.lb-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
}

@media (max-width: 900px) {
    .media-wrapper {
        padding-top: 140px;
    }

    .data-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 80px;
    }

    .press-release-container {
        padding: 30px 20px;
        border: none;
        background: transparent;
        margin-bottom: 40px;
    }

    .pr-title {
        font-size: 1.6rem;
    }

    .gallery-header-mobile {
        margin-top: 0 !important;
        padding-top: 20px;
    }

    .img-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .logo-grid {
        grid-template-columns: 1fr;
    }

    .media-contact {
        padding: 40px 20px;
    }

    .mc-link {
        font-size: 1.35rem;
    }

    .lb-prev {
        left: 5px;
    }

    .lb-next {
        right: 5px;
    }
}
