.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

.stagger>*:nth-child(1) {
    transition-delay: .04s
}

.stagger>*:nth-child(2) {
    transition-delay: .12s
}

.stagger>*:nth-child(3) {
    transition-delay: .20s
}

.stagger>*:nth-child(4) {
    transition-delay: .28s
}

.stagger>*:nth-child(5) {
    transition-delay: .36s
}

.stagger>*:nth-child(6) {
    transition-delay: .44s
}

.lift {
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s ease;
}

.lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(28, 20, 16, .1);
}

.grain::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.dot-rule {
    background-image: radial-gradient(circle, rgba(139, 94, 60, .3) 1px, transparent 1px);
    background-size: 14px 1px;
}

.dont-card {
    border-left: 3px solid rgba(184, 103, 75, .45);
    transition: border-color .25s ease;
}

.dont-card:hover {
    border-left-color: #B8674B;
}