/* ── Section 04 ── */

.section-04 .title1,
.section-04 .block1,
.section-04 p {
    opacity: 0;
}

.section-04 .title1 {
    position: absolute;
    top: 98px;
    left: 108px;
    z-index: 2;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-2xl);
    line-height: var(--lh-tight);
    color: var(--color-gold);
    max-width: 550px;
}

.section-04 .block1 {
    position: absolute;
    top: 109px;
    left: 753px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 1058px;
}

.section-04 .block1 img {
    width: 100%;
    height: auto;
}

.section-04 p {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: var(--fs-md);
    line-height: var(--lh-normal);
    color: var(--color-white);
    top: 449px;
    left: 108px;
    position: absolute;
    width: 580px;
}

.section-04 p span {
    font-weight: 700;
    color: var(--color-gold);
}

.section-04.visible .block1 {
    animation: slideInBg 1.8s var(--ease-reveal) forwards;
}

.section-04.visible .title1 {
    animation: revealBlock 1.2s var(--ease-reveal) 0.6s forwards;
}

.section-04.visible p {
    animation: revealBlock 1.4s var(--ease-reveal) 0.9s forwards;
}
