/* ==========================================
   GRAPHIC WORLD — Editorial + 3D sphere
   ========================================== */
.graphic-world {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: var(--section-padding);
    background: var(--bg-color);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.graphic-world__inner {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.graphic-world__content {
    position: relative;
    z-index: 2;
    will-change: transform;
    width: 60%;
    max-width: 750px;
    padding-right: 6vw;
}

.graphic-world__title-wrap {
    margin-bottom: 2rem;
}

.graphic-world__title {
    margin: 0;
    font-family: var(--font-family-base);
    text-transform: uppercase;
    font-weight: var(--font-weight-black);
    font-size: var(--font-size-h2);
    line-height: var(--line-height-heading);
    color: var(--color-white);
    max-width: 680px;
}

.graphic-world__title-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
}

.graphic-world__title-word {
    display: inline-block;
    will-change: transform, opacity;
}

.graphic-world__title em {
    font-style: normal;
}

.graphic-world__gold {
    color: var(--gold);
}

.graphic-world__text {
    margin: 0 0 2.5rem;
    font-family: var(--font-family-base);
    font-size: var(--font-size-body);
    line-height: var(--line-height-copy);
    color: var(--color-white);
    max-width: 520px;
    text-wrap: pretty;
}

.graphic-world__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    will-change: transform, opacity;
}

.graphic-world__cta-btn {
    position: relative;
    display: inline-block;
    padding: var(--button-padding);
    font-size: var(--font-size-button);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-button);
    border-radius: var(--button-radius);
    overflow: hidden;
    transition: var(--transition-standard);
    background: var(--gold);
    color: var(--dark-blue);
    border: 1px solid var(--gold);
    text-decoration: none;
    cursor: pointer;
}

.graphic-world__cta-btn--secondary {
    background: transparent;
    color: var(--gold);
}

.graphic-world__cta-btn:hover {
    background: transparent;
    color: var(--gold);
}

.graphic-world__cta-btn--secondary:hover {
    background: var(--gold);
    color: var(--dark-blue);
}

.graphic-world__cta-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(var(--color-gold-rgb), 0.15);
    border-radius: var(--round-radius);
    transform: translate(-50%, -50%);
    transition: var(--transition-dimensions);
    z-index: -1;
}

.graphic-world__cta-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* --- 3D media area --- */
.graphic-world__media {
    position: absolute;
    left: -25vw;
    top: 50%;
    transform: translateY(-50%);
    width: 120vh;
    height: 120vh;
    will-change: transform;
    z-index: 1;
}

.graphic-world__canvas {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1023px) {
    .graphic-world {
        padding: var(--section-padding-mobile-extended);
        min-height: auto;
        overflow: visible;
    }

    .graphic-world__inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: var(--space-xl);
        min-height: auto;
    }

    .graphic-world__title {
        font-size: var(--font-size-h2-mobile);
    }

    .graphic-world__text {
        font-size: var(--font-size-body-mobile);
        line-height: var(--line-height-copy-loose);
        max-width: none;
    }

    .graphic-world__media {
        position: relative;
        order: 1;
        left: auto;
        top: auto;
        transform: none;
        display: block !important;
        width: min(100%, 420px);
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto var(--space-lg);
        z-index: 1;
        touch-action: none;
    }

    .graphic-world__canvas {
        pointer-events: auto;
        cursor: grab;
    }

    .graphic-world__media.is-dragging .graphic-world__canvas {
        cursor: grabbing;
    }

    .graphic-world__content {
        order: 2;
        width: 100%;
        max-width: none;
        padding-right: 0;
    }
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    .graphic-world__title-word,
    .graphic-world__text,
    .graphic-world__cta,
    .graphic-world__media {
        opacity: 1 !important;
        transform: none !important;
    }
}
