/* ===== 404 NOT FOUND ===== */
.not-found {
    padding: clamp(6rem, 14vh, 10rem) 0;
    background: var(--off-white);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.not-found__inner {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.not-found__code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 300;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.not-found__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.not-found__desc {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.not-found__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.not-found__btn {
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
    cursor: pointer;
}

.not-found__btn-outline {
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.not-found__btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.not-found__btn-outline:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
}
