.home main{
    position:relative;
    z-index:2;
    padding:60px 48px 0;
    min-height:78vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.home .line-one{
    display:flex;
    flex-wrap:wrap;
    width: 40%;
    margin-left: 535px;
    margin-top: 220px;
    gap: 20px;
}

.home h1{
    font-size:clamp(52px, 8vw, 98px);
    font-weight:700;
    line-height:0.95;
    letter-spacing:-2px;
}

.home .accent{
    font-family:Georgia, 'Times New Roman', serif;
    font-style:italic;
    font-weight:400;
    color:var(--accent-amber);
    font-size:clamp(38px, 5.5vw, 64px);
}

.home .line-two{
    font-size:clamp(52px, 8vw, 98px);
    font-weight:700;
    line-height:0.95;
    letter-spacing:-2px;
    margin-left: 660px;
}

@keyframes textReveal{
    from{
        opacity:0;
        transform:translateY(28px) scale(0.96);
        filter:blur(6px);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
        filter:blur(0);
    }
}

.home h1,
.home .accent,
.home .line-two{
    opacity:0;
    animation:textReveal 1s cubic-bezier(.16,1,.3,1) forwards;
}

.home h1{ animation-delay:0.15s; }
.home .accent{ animation-delay:0.4s; }
.home .line-two{ animation-delay:0.6s; }

@media (prefers-reduced-motion:reduce){
    .home h1, .home .accent, .home .line-two{
        animation:none;
        opacity:1;
        filter:none;
    }
}